Class: AWSCDK::AppFlow::CfnFlow::DynatraceSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::DynatraceSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Dynatrace is being used as a source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Dynatrace flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ DynatraceSourcePropertiesProperty
constructor
A new instance of DynatraceSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ DynatraceSourcePropertiesProperty
Returns a new instance of DynatraceSourcePropertiesProperty.
1342 1343 1344 1345 |
# File 'app_flow/cfn_flow.rb', line 1342 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 Dynatrace flow source.
1351 1352 1353 |
# File 'app_flow/cfn_flow.rb', line 1351 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
1353 1354 1355 1356 1357 |
# File 'app_flow/cfn_flow.rb', line 1353 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
1359 1360 1361 1362 1363 1364 1365 |
# File 'app_flow/cfn_flow.rb', line 1359 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |