Class: AWSCDK::AppFlow::CfnFlow::GoogleAnalyticsSourcePropertiesProperty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ GoogleAnalyticsSourcePropertiesProperty

Returns a new instance of GoogleAnalyticsSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the Google Analytics flow source.



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

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



1537
1538
1539
1540
1541
# File 'app_flow/cfn_flow.rb', line 1537

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

Instance Method Details

#to_jsiiObject



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