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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessEntry.AccessScopeProperty
static final class
An implementation forCfnAccessEntry.AccessScopeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The scope type of an access policy.- See Also:
-
getNamespaces
A Kubernetesnamespace
that an access policy is scoped to.A value is required if you specified
namespace
forType
.- See Also:
-
builder
-