Class: AWSCDK::Interfaces::AWSSagemaker::MonitoringScheduleReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSSagemaker::MonitoringScheduleReference
- Defined in:
- interfaces/aws_sagemaker/monitoring_schedule_reference.rb
Overview
A reference to a MonitoringSchedule resource.
Instance Attribute Summary collapse
-
#monitoring_schedule_arn ⇒ String
readonly
The MonitoringScheduleArn of the MonitoringSchedule resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(monitoring_schedule_arn:) ⇒ MonitoringScheduleReference
constructor
A new instance of MonitoringScheduleReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(monitoring_schedule_arn:) ⇒ MonitoringScheduleReference
Returns a new instance of MonitoringScheduleReference.
8 9 10 11 |
# File 'interfaces/aws_sagemaker/monitoring_schedule_reference.rb', line 8 def initialize(monitoring_schedule_arn:) @monitoring_schedule_arn = monitoring_schedule_arn Jsii::Type.check_type(@monitoring_schedule_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "monitoringScheduleArn") end |
Instance Attribute Details
#monitoring_schedule_arn ⇒ String (readonly)
The MonitoringScheduleArn of the MonitoringSchedule resource.
16 17 18 |
# File 'interfaces/aws_sagemaker/monitoring_schedule_reference.rb', line 16 def monitoring_schedule_arn @monitoring_schedule_arn end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_sagemaker/monitoring_schedule_reference.rb', line 18 def self.jsii_properties { :monitoring_schedule_arn => "monitoringScheduleArn", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_sagemaker/monitoring_schedule_reference.rb', line 24 def to_jsii result = {} result.merge!({ "monitoringScheduleArn" => @monitoring_schedule_arn, }) result.compact end |