Class: Aws::IdentityStore::Types::ExternalId

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#idString

The identifier issued to this resource by an external identity provider.

Returns:

  • (String)


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

#issuerString

The issuer for an external identifier.

Returns:

  • (String)


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