Class: Aws::IAM::Types::AddClientIDToOpenIDConnectProviderRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AddClientIDToOpenIDConnectProviderRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID (also known as audience) to add to the IAM OpenID Connect provider resource.
-
#open_id_connect_provider_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM OpenID Connect (OIDC) provider resource to add the client ID to.
Instance Attribute Details
#client_id ⇒ String
The client ID (also known as audience) to add to the IAM OpenID Connect provider resource.
266 267 268 269 270 271 |
# File 'lib/aws-sdk-iam/types.rb', line 266 class AddClientIDToOpenIDConnectProviderRequest < Struct.new( :open_id_connect_provider_arn, :client_id) SENSITIVE = [] include Aws::Structure end |
#open_id_connect_provider_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM OpenID Connect (OIDC) provider resource to add the client ID to. You can get a list of OIDC provider ARNs by using the ListOpenIDConnectProviders operation.
266 267 268 269 270 271 |
# File 'lib/aws-sdk-iam/types.rb', line 266 class AddClientIDToOpenIDConnectProviderRequest < Struct.new( :open_id_connect_provider_arn, :client_id) SENSITIVE = [] include Aws::Structure end |