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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessEntry.AccessScopePropertystatic final classAn 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 Kubernetesnamespacethat an access policy is scoped to.A value is required if you specified
namespaceforType.- See Also:
-
builder
-