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: object

Properties 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 is oidc .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-identityproviderconfig.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-identityproviderconfig.html#cfn-eks-identityproviderconfig-clustername

identity_provider_config_name

The name of the configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-identityproviderconfig.html#cfn-eks-identityproviderconfig-identityproviderconfigname

oidc

An object representing an OpenID Connect (OIDC) identity provider configuration.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-identityproviderconfig.html#cfn-eks-identityproviderconfig-oidc

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-identityproviderconfig.html#cfn-eks-identityproviderconfig-tags

type

The type of the identity provider configuration.

The only type available is oidc .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-identityproviderconfig.html#cfn-eks-identityproviderconfig-type