Class: Aws::IdentityStore::Types::ExternalId
- Inherits:
-
Struct
- Object
- Struct
- Aws::IdentityStore::Types::ExternalId
- Defined in:
- gems/aws-sdk-identitystore/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.
688 689 690 691 692 693 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 688 class ExternalId < Struct.new( :issuer, :id) SENSITIVE = [:issuer, :id] include Aws::Structure end |
#issuer ⇒ String
The issuer for an external identifier.
688 689 690 691 692 693 |
# File 'gems/aws-sdk-identitystore/lib/aws-sdk-identitystore/types.rb', line 688 class ExternalId < Struct.new( :issuer, :id) SENSITIVE = [:issuer, :id] include Aws::Structure end |