Class: AWSCDK::AppFlow::CfnFlow::DynatraceSourcePropertiesProperty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ DynatraceSourcePropertiesProperty

Returns a new instance of DynatraceSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Dynatrace flow source.



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

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



1353
1354
1355
1356
1357
# File 'app_flow/cfn_flow.rb', line 1353

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

Instance Method Details

#to_jsiiObject



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