Class: AWSCDK::DataZone::CfnConnection::LineageSyncScheduleProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataZone::CfnConnection::LineageSyncScheduleProperty
- Defined in:
- data_zone/cfn_connection.rb
Overview
The lineage sync schedule.
Instance Attribute Summary collapse
-
#schedule ⇒ String?
readonly
The lineage sync schedule.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(schedule: nil) ⇒ LineageSyncScheduleProperty
constructor
A new instance of LineageSyncScheduleProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(schedule: nil) ⇒ LineageSyncScheduleProperty
Returns a new instance of LineageSyncScheduleProperty.
1517 1518 1519 1520 |
# File 'data_zone/cfn_connection.rb', line 1517 def initialize(schedule: nil) @schedule = schedule Jsii::Type.check_type(@schedule, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "schedule") unless @schedule.nil? end |
Instance Attribute Details
#schedule ⇒ String? (readonly)
The lineage sync schedule.
1526 1527 1528 |
# File 'data_zone/cfn_connection.rb', line 1526 def schedule @schedule end |
Class Method Details
.jsii_properties ⇒ Object
1528 1529 1530 1531 1532 |
# File 'data_zone/cfn_connection.rb', line 1528 def self.jsii_properties { :schedule => "schedule", } end |
Instance Method Details
#to_jsii ⇒ Object
1534 1535 1536 1537 1538 1539 1540 |
# File 'data_zone/cfn_connection.rb', line 1534 def to_jsii result = {} result.merge!({ "schedule" => @schedule, }) result.compact end |