Class: Aws::EKS::Types::AssociateIdentityProviderConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::AssociateIdentityProviderConfigRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
When making an API call, you may pass AssociateIdentityProviderConfigRequest data as a hash:
{
cluster_name: "String", # required
oidc: { # required
identity_provider_config_name: "String", # required
issuer_url: "String", # required
client_id: "String", # required
username_claim: "String",
username_prefix: "String",
groups_claim: "String",
groups_prefix: "String",
required_claims: {
"requiredClaimsKey" => "requiredClaimsValue",
},
},
tags: {
"TagKey" => "TagValue",
},
client_request_token: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#cluster_name ⇒ String
The name of the cluster to associate the configuration to.
-
#oidc ⇒ Types::OidcIdentityProviderConfigRequest
An object that represents an OpenID Connect (OIDC) identity provider configuration.
-
#tags ⇒ Hash<String,String>
The metadata to apply to the configuration to assist with categorization and organization.
Instance Attribute Details
#client_request_token ⇒ String
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-eks/types.rb', line 267 class AssociateIdentityProviderConfigRequest < Struct.new( :cluster_name, :oidc, :tags, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#cluster_name ⇒ String
The name of the cluster to associate the configuration to.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-eks/types.rb', line 267 class AssociateIdentityProviderConfigRequest < Struct.new( :cluster_name, :oidc, :tags, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#oidc ⇒ Types::OidcIdentityProviderConfigRequest
An object that represents an OpenID Connect (OIDC) identity provider configuration.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-eks/types.rb', line 267 class AssociateIdentityProviderConfigRequest < Struct.new( :cluster_name, :oidc, :tags, :client_request_token) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The metadata to apply to the configuration to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define.
267 268 269 270 271 272 273 274 |
# File 'lib/aws-sdk-eks/types.rb', line 267 class AssociateIdentityProviderConfigRequest < Struct.new( :cluster_name, :oidc, :tags, :client_request_token) SENSITIVE = [] include Aws::Structure end |