Interface ScopeDetails.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ScopeDetails.Builder,ScopeDetails>
,SdkBuilder<ScopeDetails.Builder,ScopeDetails>
,SdkPojo
- Enclosing class:
- ScopeDetails
public static interface ScopeDetails.Builder extends SdkPojo, CopyableBuilder<ScopeDetails.Builder,ScopeDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScopeDetails.Builder
authorizedTargets(String... authorizedTargets)
An array list of ARNs of applications.ScopeDetails.Builder
authorizedTargets(Collection<String> authorizedTargets)
An array list of ARNs of applications.ScopeDetails.Builder
scope(String scope)
The name of the access scope.-
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
-
authorizedTargets
ScopeDetails.Builder authorizedTargets(Collection<String> authorizedTargets)
An array list of ARNs of applications.
- Parameters:
authorizedTargets
- An array list of ARNs of applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authorizedTargets
ScopeDetails.Builder authorizedTargets(String... authorizedTargets)
An array list of ARNs of applications.
- Parameters:
authorizedTargets
- An array list of ARNs of applications.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scope
ScopeDetails.Builder scope(String scope)
The name of the access scope.
- Parameters:
scope
- The name of the access scope.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-