Interface CfnIdentityProviderConfigProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentityProviderConfigProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:46.738Z") @Stability(Stable) public interface CfnIdentityProviderConfigProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnIdentityProviderConfig.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.eks.legacy.*;
 CfnIdentityProviderConfigProps cfnIdentityProviderConfigProps = CfnIdentityProviderConfigProps.builder()
         .clusterName("clusterName")
         .type("type")
         // the properties below are optional
         .identityProviderConfigName("identityProviderConfigName")
         .oidc(OidcIdentityProviderConfigProperty.builder()
                 .clientId("clientId")
                 .issuerUrl("issuerUrl")
                 // the properties below are optional
                 .groupsClaim("groupsClaim")
                 .groupsPrefix("groupsPrefix")
                 .requiredClaims(List.of(RequiredClaimProperty.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .usernameClaim("usernameClaim")
                 .usernamePrefix("usernamePrefix")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getClusterName

      @Stability(Stable) @NotNull String getClusterName()
      The cluster that the configuration is associated to.
    • getType

      @Stability(Stable) @NotNull String getType()
      The type of the identity provider configuration.

      The only type available is oidc .

    • getIdentityProviderConfigName

      @Stability(Stable) @Nullable default String getIdentityProviderConfigName()
      The name of the configuration.
    • getOidc

      @Stability(Stable) @Nullable default Object getOidc()
      An object representing an OpenID Connect (OIDC) identity provider configuration.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      The metadata to apply to the provider configuration to assist with categorization and organization.

      Each tag consists of a key and an optional value. You define both.

    • builder

      @Stability(Stable) static CfnIdentityProviderConfigProps.Builder builder()
      Returns:
      a CfnIdentityProviderConfigProps.Builder of CfnIdentityProviderConfigProps