Class: AWSCDK::AppFlow::CfnFlow::TrendmicroSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_flow/cfn_flow.rb

Overview

The properties that are applied when using Trend Micro as a flow source.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ TrendmicroSourcePropertiesProperty

Returns a new instance of TrendmicroSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Trend Micro flow source.



3219
3220
3221
3222
# File 'app_flow/cfn_flow.rb', line 3219

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 Trend Micro flow source.



3228
3229
3230
# File 'app_flow/cfn_flow.rb', line 3228

def object
  @object
end

Class Method Details

.jsii_propertiesObject



3230
3231
3232
3233
3234
# File 'app_flow/cfn_flow.rb', line 3230

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

Instance Method Details

#to_jsiiObject



3236
3237
3238
3239
3240
3241
3242
# File 'app_flow/cfn_flow.rb', line 3236

def to_jsii
  result = {}
  result.merge!({
    "object" => @object,
  })
  result.compact
end