Interface CfnAccessEntry.AccessScopeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAccessEntry.AccessScopeProperty.Jsii$Proxy
Enclosing class:
CfnAccessEntry

@Stability(Stable) public static interface CfnAccessEntry.AccessScopeProperty extends software.amazon.jsii.JsiiSerializable
The scope of an AccessPolicy that's associated to an AccessEntry .

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.*;
 AccessScopeProperty accessScopeProperty = AccessScopeProperty.builder()
         .type("type")
         // the properties below are optional
         .namespaces(List.of("namespaces"))
         .build();
 

See Also: