CfnIdentityProviderConfigMixinProps
- class aws_cdk.mixins_preview.aws_eks.mixins.CfnIdentityProviderConfigMixinProps(*, cluster_name=None, identity_provider_config_name=None, oidc=None, tags=None, type=None)
Bases:
objectProperties for CfnIdentityProviderConfigPropsMixin.
- Parameters:
cluster_name (
Optional[str]) – The name of your cluster.identity_provider_config_name (
Optional[str]) – The name of the configuration.oidc (
Union[IResolvable,OidcIdentityProviderConfigProperty,Dict[str,Any],None]) – An object representing an OpenID Connect (OIDC) identity provider configuration.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata that assists with categorization and organization. Each tag consists of a key and an optional value. You define both. Tags don’t propagate to any other cluster or AWS resources.type (
Optional[str]) – The type of the identity provider configuration. The only type available isoidc.
- See:
- 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.mixins_preview.aws_eks import mixins as eks_mixins cfn_identity_provider_config_mixin_props = eks_mixins.CfnIdentityProviderConfigMixinProps( cluster_name="clusterName", identity_provider_config_name="identityProviderConfigName", oidc=eks_mixins.CfnIdentityProviderConfigPropsMixin.OidcIdentityProviderConfigProperty( client_id="clientId", groups_claim="groupsClaim", groups_prefix="groupsPrefix", issuer_url="issuerUrl", required_claims=[eks_mixins.CfnIdentityProviderConfigPropsMixin.RequiredClaimProperty( key="key", value="value" )], username_claim="usernameClaim", username_prefix="usernamePrefix" ), tags=[CfnTag( key="key", value="value" )], type="type" )
Attributes
- cluster_name
The name of your cluster.
- identity_provider_config_name
The name of the configuration.
- oidc
An object representing an OpenID Connect (OIDC) identity provider configuration.
- tags
Metadata that assists with categorization and organization.
Each tag consists of a key and an optional value. You define both. Tags don’t propagate to any other cluster or AWS resources.
- type
The type of the identity provider configuration.
The only type available is
oidc.