Interface WorkSpaceApplicationDeployment.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkSpaceApplicationDeployment.Builder,WorkSpaceApplicationDeployment>,SdkBuilder<WorkSpaceApplicationDeployment.Builder,WorkSpaceApplicationDeployment>,SdkPojo
- Enclosing class:
- WorkSpaceApplicationDeployment
public static interface WorkSpaceApplicationDeployment.Builder extends SdkPojo, CopyableBuilder<WorkSpaceApplicationDeployment.Builder,WorkSpaceApplicationDeployment>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkSpaceApplicationDeployment.Builderassociations(Collection<WorkspaceResourceAssociation> associations)The associations between the applications and the associated resources.WorkSpaceApplicationDeployment.Builderassociations(Consumer<WorkspaceResourceAssociation.Builder>... associations)The associations between the applications and the associated resources.WorkSpaceApplicationDeployment.Builderassociations(WorkspaceResourceAssociation... associations)The associations between the applications and the associated 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, sdkFields
-
-
-
-
Method Detail
-
associations
WorkSpaceApplicationDeployment.Builder associations(Collection<WorkspaceResourceAssociation> associations)
The associations between the applications and the associated resources.
- Parameters:
associations- The associations between the applications and the associated resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
WorkSpaceApplicationDeployment.Builder associations(WorkspaceResourceAssociation... associations)
The associations between the applications and the associated resources.
- Parameters:
associations- The associations between the applications and the associated resources.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
associations
WorkSpaceApplicationDeployment.Builder associations(Consumer<WorkspaceResourceAssociation.Builder>... associations)
The associations between the applications and the associated resources.
This is a convenience method that creates an instance of theWorkspaceResourceAssociation.Builderavoiding the need to create one manually viaWorkspaceResourceAssociation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#associations(List.) - Parameters:
associations- a consumer that will call methods onWorkspaceResourceAssociation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#associations(java.util.Collection)
-
-