Class: Aws::SSOAdmin::Types::AuthorizedTokenIssuer
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::AuthorizedTokenIssuer
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#authorized_audiences ⇒ Array<String>
An array list of authorized audiences, or applications, that can consume the tokens generated by the associated trusted token issuer.
-
#trusted_token_issuer_arn ⇒ String
The ARN of the trusted token issuer.
Instance Attribute Details
#authorized_audiences ⇒ Array<String>
An array list of authorized audiences, or applications, that can consume the tokens generated by the associated trusted token issuer.
543 544 545 546 547 548 |
# File '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_arn ⇒ String
The ARN of the trusted token issuer.
543 544 545 546 547 548 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 543 class AuthorizedTokenIssuer < Struct.new( :authorized_audiences, :trusted_token_issuer_arn) SENSITIVE = [] include Aws::Structure end |