Interface AccessPolicyProps

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-15T21:09:18.903Z") @Stability(Stable) public interface AccessPolicyProps extends software.amazon.jsii.JsiiSerializable
Properties for configuring an Amazon EKS Access Policy.

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.*;
 AccessPolicyArn accessPolicyArn;
 AccessPolicyProps accessPolicyProps = AccessPolicyProps.builder()
         .accessScope(AccessScope.builder()
                 .type(AccessScopeType.NAMESPACE)
                 // the properties below are optional
                 .namespaces(List.of("namespaces"))
                 .build())
         .policy(accessPolicyArn)
         .build();