Class: AWSCDK::Interfaces::AWSGlue::IdentityCenterConfigurationReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSGlue::IdentityCenterConfigurationReference
- Defined in:
- interfaces/aws_glue/identity_center_configuration_reference.rb
Overview
A reference to a IdentityCenterConfiguration resource.
Instance Attribute Summary collapse
-
#account_id ⇒ String
readonly
The AccountId of the IdentityCenterConfiguration resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(account_id:) ⇒ IdentityCenterConfigurationReference
constructor
A new instance of IdentityCenterConfigurationReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(account_id:) ⇒ IdentityCenterConfigurationReference
Returns a new instance of IdentityCenterConfigurationReference.
8 9 10 11 |
# File 'interfaces/aws_glue/identity_center_configuration_reference.rb', line 8 def initialize(account_id:) @account_id = account_id Jsii::Type.check_type(@account_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "accountId") end |
Instance Attribute Details
#account_id ⇒ String (readonly)
The AccountId of the IdentityCenterConfiguration resource.
16 17 18 |
# File 'interfaces/aws_glue/identity_center_configuration_reference.rb', line 16 def account_id @account_id end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_glue/identity_center_configuration_reference.rb', line 18 def self.jsii_properties { :account_id => "accountId", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_glue/identity_center_configuration_reference.rb', line 24 def to_jsii result = {} result.merge!({ "accountId" => @account_id, }) result.compact end |