Interface AccessScope.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccessScope.Builder,AccessScope>,SdkBuilder<AccessScope.Builder,AccessScope>,SdkPojo
- Enclosing class:
- AccessScope
public static interface AccessScope.Builder extends SdkPojo, CopyableBuilder<AccessScope.Builder,AccessScope>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessScope.Buildernamespaces(String... namespaces)A Kubernetesnamespacethat an access policy is scoped to.AccessScope.Buildernamespaces(Collection<String> namespaces)A Kubernetesnamespacethat an access policy is scoped to.AccessScope.Buildertype(String type)The scope type of an access policy.AccessScope.Buildertype(AccessScopeType type)The scope type of an access policy.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
type
AccessScope.Builder type(String type)
The scope type of an access policy.
- Parameters:
type- The scope type of an access policy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccessScopeType,AccessScopeType
-
type
AccessScope.Builder type(AccessScopeType type)
The scope type of an access policy.
- Parameters:
type- The scope type of an access policy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccessScopeType,AccessScopeType
-
namespaces
AccessScope.Builder namespaces(Collection<String> namespaces)
A Kubernetes
namespacethat an access policy is scoped to. A value is required if you specifiednamespaceforType.- Parameters:
namespaces- A Kubernetesnamespacethat an access policy is scoped to. A value is required if you specifiednamespaceforType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
namespaces
AccessScope.Builder namespaces(String... namespaces)
A Kubernetes
namespacethat an access policy is scoped to. A value is required if you specifiednamespaceforType.- Parameters:
namespaces- A Kubernetesnamespacethat an access policy is scoped to. A value is required if you specifiednamespaceforType.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-