Class: AWSCDK::AppFlow::CfnFlow::LookoutMetricsDestinationPropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object: nil) ⇒ LookoutMetricsDestinationPropertiesProperty

Returns a new instance of LookoutMetricsDestinationPropertiesProperty.

Parameters:

  • object (String, nil) (defaults to: nil)

    The object specified in the Amazon Lookout for Metrics flow destination.



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

#objectString? (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_propertiesObject



1636
1637
1638
1639
1640
# File 'app_flow/cfn_flow.rb', line 1636

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

Instance Method Details

#to_jsiiObject



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