Class: AWSCDK::Sagemaker::CfnMonitoringSchedule::MonitoringOutputProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
sagemaker/cfn_monitoring_schedule.rb

Overview

The output object for a monitoring job.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(s3_output:) ⇒ MonitoringOutputProperty

Returns a new instance of MonitoringOutputProperty.

Parameters:



1424
1425
1426
1427
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1424

def initialize(s3_output:)
  @s3_output = s3_output.is_a?(Hash) ? ::AWSCDK::Sagemaker::CfnMonitoringSchedule::S3OutputProperty.new(**s3_output.transform_keys(&:to_sym)) : s3_output
  Jsii::Type.check_type(@s3_output, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19zYWdlbWFrZXIuQ2ZuTW9uaXRvcmluZ1NjaGVkdWxlLlMzT3V0cHV0UHJvcGVydHkifV19fQ==")), "s3Output")
end

Instance Attribute Details

#s3_outputAWSCDK::IResolvable, AWSCDK::Sagemaker::CfnMonitoringSchedule::S3OutputProperty (readonly)

The Amazon S3 storage location where the results of a monitoring job are saved.



1433
1434
1435
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1433

def s3_output
  @s3_output
end

Class Method Details

.jsii_propertiesObject



1435
1436
1437
1438
1439
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1435

def self.jsii_properties
  {
    :s3_output => "s3Output",
  }
end

Instance Method Details

#to_jsiiObject



1441
1442
1443
1444
1445
1446
1447
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1441

def to_jsii
  result = {}
  result.merge!({
    "s3Output" => @s3_output,
  })
  result.compact
end