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.
548 549 550 551 552 553 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 548 class AuthorizedTokenIssuer < Struct.new( :trusted_token_issuer_arn, :authorized_audiences) SENSITIVE = [] include Aws::Structure end |
#trusted_token_issuer_arn ⇒ String
The ARN of the trusted token issuer.
548 549 550 551 552 553 |
# File 'lib/aws-sdk-ssoadmin/types.rb', line 548 class AuthorizedTokenIssuer < Struct.new( :trusted_token_issuer_arn, :authorized_audiences) SENSITIVE = [] include Aws::Structure end |