Interface CfnAccessEntryProps

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

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:16.429Z") @Stability(Stable) public interface CfnAccessEntryProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnAccessEntry.

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.*;
 CfnAccessEntryProps cfnAccessEntryProps = CfnAccessEntryProps.builder()
         .clusterName("clusterName")
         .principalArn("principalArn")
         // the properties below are optional
         .accessPolicies(List.of(AccessPolicyProperty.builder()
                 .accessScope(AccessScopeProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .namespaces(List.of("namespaces"))
                         .build())
                 .policyArn("policyArn")
                 .build()))
         .kubernetesGroups(List.of("kubernetesGroups"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .type("type")
         .username("username")
         .build();
 

See Also: