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