Class: AWSCDK::AppFlow::CfnFlow::DatadogSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::DatadogSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Datadog is being used as a source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Datadog flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ DatadogSourcePropertiesProperty
constructor
A new instance of DatadogSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ DatadogSourcePropertiesProperty
Returns a new instance of DatadogSourcePropertiesProperty.
1111 1112 1113 1114 |
# File 'app_flow/cfn_flow.rb', line 1111 def initialize(object:) @object = object Jsii::Type.check_type(@object, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "object") end |
Instance Attribute Details
#object ⇒ String (readonly)
The object specified in the Datadog flow source.
1120 1121 1122 |
# File 'app_flow/cfn_flow.rb', line 1120 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
1122 1123 1124 1125 1126 |
# File 'app_flow/cfn_flow.rb', line 1122 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
1128 1129 1130 1131 1132 1133 1134 |
# File 'app_flow/cfn_flow.rb', line 1128 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |