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