Interface EnvironmentActionSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EnvironmentActionSummary.Builder,EnvironmentActionSummary>,SdkBuilder<EnvironmentActionSummary.Builder,EnvironmentActionSummary>,SdkPojo
- Enclosing class:
- EnvironmentActionSummary
public static interface EnvironmentActionSummary.Builder extends SdkPojo, CopyableBuilder<EnvironmentActionSummary.Builder,EnvironmentActionSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description EnvironmentActionSummary.Builderdescription(String description)The environment action description.EnvironmentActionSummary.BuilderdomainId(String domainId)The Amazon DataZone domain ID of the environment action.EnvironmentActionSummary.BuilderenvironmentId(String environmentId)The environment ID of the environment action.EnvironmentActionSummary.Builderid(String id)The ID of the environment action.EnvironmentActionSummary.Buildername(String name)The name of the environment action.default EnvironmentActionSummary.Builderparameters(Consumer<ActionParameters.Builder> parameters)The parameters of the environment action.EnvironmentActionSummary.Builderparameters(ActionParameters parameters)The parameters of the environment action.-
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
-
description
EnvironmentActionSummary.Builder description(String description)
The environment action description.
- Parameters:
description- The environment action description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domainId
EnvironmentActionSummary.Builder domainId(String domainId)
The Amazon DataZone domain ID of the environment action.
- Parameters:
domainId- The Amazon DataZone domain ID of the environment action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentId
EnvironmentActionSummary.Builder environmentId(String environmentId)
The environment ID of the environment action.
- Parameters:
environmentId- The environment ID of the environment action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
EnvironmentActionSummary.Builder id(String id)
The ID of the environment action.
- Parameters:
id- The ID of the environment action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
EnvironmentActionSummary.Builder name(String name)
The name of the environment action.
- Parameters:
name- The name of the environment action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
EnvironmentActionSummary.Builder parameters(ActionParameters parameters)
The parameters of the environment action.
- Parameters:
parameters- The parameters of the environment action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
default EnvironmentActionSummary.Builder parameters(Consumer<ActionParameters.Builder> parameters)
The parameters of the environment action.
This is a convenience method that creates an instance of theActionParameters.Builderavoiding the need to create one manually viaActionParameters.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toparameters(ActionParameters).- Parameters:
parameters- a consumer that will call methods onActionParameters.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
parameters(ActionParameters)
-
-