Class: AWSCDK::AppFlow::CfnFlow::DatadogSourcePropertiesProperty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ DatadogSourcePropertiesProperty

Returns a new instance of DatadogSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Datadog flow source.



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

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



1122
1123
1124
1125
1126
# File 'app_flow/cfn_flow.rb', line 1122

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

Instance Method Details

#to_jsiiObject



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