Class: AWSCDK::AppFlow::CfnFlow::TrendmicroSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::TrendmicroSourcePropertiesProperty
- 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
-
#object ⇒ String
readonly
The object specified in the Trend Micro flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ TrendmicroSourcePropertiesProperty
constructor
A new instance of TrendmicroSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ TrendmicroSourcePropertiesProperty
Returns a new instance of TrendmicroSourcePropertiesProperty.
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
#object ⇒ String (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_properties ⇒ Object
3230 3231 3232 3233 3234 |
# File 'app_flow/cfn_flow.rb', line 3230 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |