Class: AWSCDK::Interfaces::AWSCustomerprofiles::IntegrationReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSCustomerprofiles::IntegrationReference
- Defined in:
- interfaces/aws_customerprofiles/integration_reference.rb
Overview
A reference to a Integration resource.
Instance Attribute Summary collapse
-
#domain_name ⇒ String
readonly
The DomainName of the Integration resource.
-
#uri ⇒ String
readonly
The Uri of the Integration resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(domain_name:, uri:) ⇒ IntegrationReference
constructor
A new instance of IntegrationReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(domain_name:, uri:) ⇒ IntegrationReference
Returns a new instance of IntegrationReference.
9 10 11 12 13 14 |
# File 'interfaces/aws_customerprofiles/integration_reference.rb', line 9 def initialize(domain_name:, uri:) @domain_name = domain_name Jsii::Type.check_type(@domain_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "domainName") @uri = uri Jsii::Type.check_type(@uri, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "uri") end |
Instance Attribute Details
#domain_name ⇒ String (readonly)
The DomainName of the Integration resource.
19 20 21 |
# File 'interfaces/aws_customerprofiles/integration_reference.rb', line 19 def domain_name @domain_name end |
#uri ⇒ String (readonly)
The Uri of the Integration resource.
23 24 25 |
# File 'interfaces/aws_customerprofiles/integration_reference.rb', line 23 def uri @uri end |
Class Method Details
.jsii_properties ⇒ Object
25 26 27 28 29 30 |
# File 'interfaces/aws_customerprofiles/integration_reference.rb', line 25 def self.jsii_properties { :domain_name => "domainName", :uri => "uri", } end |
Instance Method Details
#to_jsii ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'interfaces/aws_customerprofiles/integration_reference.rb', line 32 def to_jsii result = {} result.merge!({ "domainName" => @domain_name, "uri" => @uri, }) result.compact end |