Class: Aws::IdentityStore::Types::ExternalId
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::ExternalId
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-identitystore/types.rb
Overview
The identifier issued to this resource by an external identity provider.
Constant Summary collapse
- SENSITIVE =
[:issuer, :id]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier issued to this resource by an external identity provider.
-
#issuer ⇒ String
The issuer for an external identifier.
Instance Attribute Details
#id ⇒ String
The identifier issued to this resource by an external identity provider.
829 830 831 832 833 834 |
# File 'lib/aws-sdk-identitystore/types.rb', line 829 class ExternalId < Struct.new( :issuer, :id) SENSITIVE = [:issuer, :id] include Aws::Structure end |
#issuer ⇒ String
The issuer for an external identifier.
829 830 831 832 833 834 |
# File 'lib/aws-sdk-identitystore/types.rb', line 829 class ExternalId < Struct.new( :issuer, :id) SENSITIVE = [:issuer, :id] include Aws::Structure end |