IdentityProviderConfigReference
- class aws_cdk.aws_eks.IdentityProviderConfigReference(*, cluster_name, identity_provider_config_arn, identity_provider_config_name, type)
Bases:
object
A reference to a IdentityProviderConfig resource.
- Parameters:
cluster_name (
str
) – The ClusterName of the IdentityProviderConfig resource.identity_provider_config_arn (
str
) – The ARN of the IdentityProviderConfig resource.identity_provider_config_name (
str
) – The IdentityProviderConfigName of the IdentityProviderConfig resource.type (
str
) – The Type of the IdentityProviderConfig resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_eks as eks identity_provider_config_reference = eks.IdentityProviderConfigReference( cluster_name="clusterName", identity_provider_config_arn="identityProviderConfigArn", identity_provider_config_name="identityProviderConfigName", type="type" )
Attributes
- cluster_name
The ClusterName of the IdentityProviderConfig resource.
- identity_provider_config_arn
The ARN of the IdentityProviderConfig resource.
- identity_provider_config_name
The IdentityProviderConfigName of the IdentityProviderConfig resource.
- type
The Type of the IdentityProviderConfig resource.