Interface AccessScopePathRequest.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<AccessScopePathRequest.Builder,AccessScopePathRequest>
,SdkBuilder<AccessScopePathRequest.Builder,AccessScopePathRequest>
,SdkPojo
- Enclosing class:
- AccessScopePathRequest
public static interface AccessScopePathRequest.Builder extends SdkPojo, CopyableBuilder<AccessScopePathRequest.Builder,AccessScopePathRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AccessScopePathRequest.Builder
destination(Consumer<PathStatementRequest.Builder> destination)
The destination.AccessScopePathRequest.Builder
destination(PathStatementRequest destination)
The destination.default AccessScopePathRequest.Builder
source(Consumer<PathStatementRequest.Builder> source)
The source.AccessScopePathRequest.Builder
source(PathStatementRequest source)
The source.AccessScopePathRequest.Builder
throughResources(Collection<ThroughResourcesStatementRequest> throughResources)
The through resources.AccessScopePathRequest.Builder
throughResources(Consumer<ThroughResourcesStatementRequest.Builder>... throughResources)
The through resources.AccessScopePathRequest.Builder
throughResources(ThroughResourcesStatementRequest... throughResources)
The through resources.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
source
AccessScopePathRequest.Builder source(PathStatementRequest source)
The source.
- Parameters:
source
- The source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
default AccessScopePathRequest.Builder source(Consumer<PathStatementRequest.Builder> source)
The source.
This is a convenience method that creates an instance of thePathStatementRequest.Builder
avoiding the need to create one manually viaPathStatementRequest.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosource(PathStatementRequest)
.- Parameters:
source
- a consumer that will call methods onPathStatementRequest.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
source(PathStatementRequest)
-
destination
AccessScopePathRequest.Builder destination(PathStatementRequest destination)
The destination.
- Parameters:
destination
- The destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default AccessScopePathRequest.Builder destination(Consumer<PathStatementRequest.Builder> destination)
The destination.
This is a convenience method that creates an instance of thePathStatementRequest.Builder
avoiding the need to create one manually viaPathStatementRequest.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todestination(PathStatementRequest)
.- Parameters:
destination
- a consumer that will call methods onPathStatementRequest.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(PathStatementRequest)
-
throughResources
AccessScopePathRequest.Builder throughResources(Collection<ThroughResourcesStatementRequest> throughResources)
The through resources.
- Parameters:
throughResources
- The through resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
throughResources
AccessScopePathRequest.Builder throughResources(ThroughResourcesStatementRequest... throughResources)
The through resources.
- Parameters:
throughResources
- The through resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
throughResources
AccessScopePathRequest.Builder throughResources(Consumer<ThroughResourcesStatementRequest.Builder>... throughResources)
The through resources.
This is a convenience method that creates an instance of theThroughResourcesStatementRequest.Builder
avoiding the need to create one manually viaThroughResourcesStatementRequest.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#throughResources(List
.) - Parameters:
throughResources
- a consumer that will call methods onThroughResourcesStatementRequest.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#throughResources(java.util.Collection
)
-
-