Class: Aws::EKS::Types::DescribeIdentityProviderConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::DescribeIdentityProviderConfigRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Note:
When making an API call, you may pass DescribeIdentityProviderConfigRequest data as a hash:
{
cluster_name: "String", # required
identity_provider_config: { # required
type: "String", # required
name: "String", # required
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The cluster name that the identity provider configuration is associated to.
-
#identity_provider_config ⇒ Types::IdentityProviderConfig
An object that represents an identity provider configuration.
Instance Attribute Details
#cluster_name ⇒ String
The cluster name that the identity provider configuration is associated to.
1460 1461 1462 1463 1464 1465 |
# File 'lib/aws-sdk-eks/types.rb', line 1460 class DescribeIdentityProviderConfigRequest < Struct.new( :cluster_name, :identity_provider_config) SENSITIVE = [] include Aws::Structure end |
#identity_provider_config ⇒ Types::IdentityProviderConfig
An object that represents an identity provider configuration.
1460 1461 1462 1463 1464 1465 |
# File 'lib/aws-sdk-eks/types.rb', line 1460 class DescribeIdentityProviderConfigRequest < Struct.new( :cluster_name, :identity_provider_config) SENSITIVE = [] include Aws::Structure end |