Class: Aws::IAM::Types::AddClientIDToOpenIDConnectProviderRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::AddClientIDToOpenIDConnectProviderRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass AddClientIDToOpenIDConnectProviderRequest data as a hash:
{
open_id_connect_provider_arn: "arnType", # required
client_id: "clientIDType", # required
}
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.
169 170 171 172 173 |
# File 'lib/aws-sdk-iam/types.rb', line 169 class AddClientIDToOpenIDConnectProviderRequest < Struct.new( :open_id_connect_provider_arn, :client_id) 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 action.
169 170 171 172 173 |
# File 'lib/aws-sdk-iam/types.rb', line 169 class AddClientIDToOpenIDConnectProviderRequest < Struct.new( :open_id_connect_provider_arn, :client_id) include Aws::Structure end |