Class: AWSCDK::AppFlow::CfnFlow::GoogleAnalyticsSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::GoogleAnalyticsSourcePropertiesProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
The properties that are applied when Google Analytics is being used as a source.
Instance Attribute Summary collapse
-
#object ⇒ String
readonly
The object specified in the Google Analytics flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ GoogleAnalyticsSourcePropertiesProperty
constructor
A new instance of GoogleAnalyticsSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ GoogleAnalyticsSourcePropertiesProperty
Returns a new instance of GoogleAnalyticsSourcePropertiesProperty.
1526 1527 1528 1529 |
# File 'app_flow/cfn_flow.rb', line 1526 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 Google Analytics flow source.
1535 1536 1537 |
# File 'app_flow/cfn_flow.rb', line 1535 def object @object end |
Class Method Details
.jsii_properties ⇒ Object
1537 1538 1539 1540 1541 |
# File 'app_flow/cfn_flow.rb', line 1537 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
1543 1544 1545 1546 1547 1548 1549 |
# File 'app_flow/cfn_flow.rb', line 1543 def to_jsii result = {} result.merge!({ "object" => @object, }) result.compact end |