Class: Aws::SSOAdmin::Types::AuthorizedTokenIssuer

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb

Overview

A structure that describes a trusted token issuer and associates it with a set of authorized audiences.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#authorized_audiencesArray<String>

An array list of authorized audiences, or applications, that can consume the tokens generated by the associated trusted token issuer.

Returns:

  • (Array<String>)


543
544
545
546
547
548
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 543

class AuthorizedTokenIssuer < Struct.new(
  :authorized_audiences,
  :trusted_token_issuer_arn)
  SENSITIVE = []
  include Aws::Structure
end

#trusted_token_issuer_arnString

The ARN of the trusted token issuer.

Returns:

  • (String)


543
544
545
546
547
548
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 543

class AuthorizedTokenIssuer < Struct.new(
  :authorized_audiences,
  :trusted_token_issuer_arn)
  SENSITIVE = []
  include Aws::Structure
end