Class: AWSCDK::Sagemaker::CfnMonitoringSchedule::MonitoringOutputConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Sagemaker::CfnMonitoringSchedule::MonitoringOutputConfigProperty
- Defined in:
- sagemaker/cfn_monitoring_schedule.rb
Overview
The output configuration for monitoring jobs.
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String?
readonly
The AWS Key Management Service ( AWS ) key that Amazon SageMaker AI uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
-
#monitoring_outputs ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::Sagemaker::CfnMonitoringSchedule::MonitoringOutputProperty>
readonly
Monitoring outputs for monitoring jobs.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(monitoring_outputs:, kms_key_id: nil) ⇒ MonitoringOutputConfigProperty
constructor
A new instance of MonitoringOutputConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(monitoring_outputs:, kms_key_id: nil) ⇒ MonitoringOutputConfigProperty
Returns a new instance of MonitoringOutputConfigProperty.
1380 1381 1382 1383 1384 1385 |
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1380 def initialize(monitoring_outputs:, kms_key_id: nil) @monitoring_outputs = monitoring_outputs Jsii::Type.check_type(@monitoring_outputs, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3Nfc2FnZW1ha2VyLkNmbk1vbml0b3JpbmdTY2hlZHVsZS5Nb25pdG9yaW5nT3V0cHV0UHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "monitoringOutputs") @kms_key_id = kms_key_id Jsii::Type.check_type(@kms_key_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "kmsKeyId") unless @kms_key_id.nil? end |
Instance Attribute Details
#kms_key_id ⇒ String? (readonly)
The AWS Key Management Service ( AWS ) key that Amazon SageMaker AI uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
1398 1399 1400 |
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1398 def kms_key_id @kms_key_id end |
#monitoring_outputs ⇒ AWSCDK::IResolvable, Array<AWSCDK::IResolvable, AWSCDK::Sagemaker::CfnMonitoringSchedule::MonitoringOutputProperty> (readonly)
Monitoring outputs for monitoring jobs.
This is where the output of the periodic monitoring jobs is uploaded.
1393 1394 1395 |
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1393 def monitoring_outputs @monitoring_outputs end |
Class Method Details
.jsii_properties ⇒ Object
1400 1401 1402 1403 1404 1405 |
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1400 def self.jsii_properties { :monitoring_outputs => "monitoringOutputs", :kms_key_id => "kmsKeyId", } end |
Instance Method Details
#to_jsii ⇒ Object
1407 1408 1409 1410 1411 1412 1413 1414 |
# File 'sagemaker/cfn_monitoring_schedule.rb', line 1407 def to_jsii result = {} result.merge!({ "monitoringOutputs" => @monitoring_outputs, "kmsKeyId" => @kms_key_id, }) result.compact end |