Class: AWSCDK::AppFlow::CfnFlow::LookoutMetricsDestinationPropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::LookoutMetricsDestinationPropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Amazon Lookout for Metrics is used as a destination.
Instance Attribute Summary collapse
-
#object ⇒ String?
readonly
The object specified in the Amazon Lookout for Metrics flow destination.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object: nil) ⇒ LookoutMetricsDestinationPropertiesProperty
constructor
A new instance of LookoutMetricsDestinationPropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object: nil) ⇒ LookoutMetricsDestinationPropertiesProperty
Returns a new instance of LookoutMetricsDestinationPropertiesProperty.
1625 1626 1627 1628 |
# File 'app_flow/cfn_flow.rb', line 1625 def initialize(object: nil) @object = object Jsii::Type.check_type(@object, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "object") unless @object.nil? end |
Instance Attribute Details
#object ⇒ String? (readonly)
The object specified in the Amazon Lookout for Metrics flow destination.
1634 1635 1636 |
# File 'app_flow/cfn_flow.rb', line 1634 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
1636 1637 1638 1639 1640 |
# File 'app_flow/cfn_flow.rb', line 1636 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
1642 1643 1644 1645 1646 1647 1648 |
# File 'app_flow/cfn_flow.rb', line 1642 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |