Interface ConfigurableEnvironmentAction.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ConfigurableEnvironmentAction.Builder,ConfigurableEnvironmentAction>,SdkBuilder<ConfigurableEnvironmentAction.Builder,ConfigurableEnvironmentAction>,SdkPojo
- Enclosing class:
- ConfigurableEnvironmentAction
public static interface ConfigurableEnvironmentAction.Builder extends SdkPojo, CopyableBuilder<ConfigurableEnvironmentAction.Builder,ConfigurableEnvironmentAction>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfigurableEnvironmentAction.Builderauth(String auth)The authentication type of a configurable action of a Amazon DataZone environment.ConfigurableEnvironmentAction.Builderauth(ConfigurableActionTypeAuthorization auth)The authentication type of a configurable action of a Amazon DataZone environment.ConfigurableEnvironmentAction.Builderparameters(Collection<ConfigurableActionParameter> parameters)The parameters of a configurable action in a Amazon DataZone environment.ConfigurableEnvironmentAction.Builderparameters(Consumer<ConfigurableActionParameter.Builder>... parameters)The parameters of a configurable action in a Amazon DataZone environment.ConfigurableEnvironmentAction.Builderparameters(ConfigurableActionParameter... parameters)The parameters of a configurable action in a Amazon DataZone environment.ConfigurableEnvironmentAction.Buildertype(String type)The type of a configurable action in a Amazon DataZone environment.-
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
-
auth
ConfigurableEnvironmentAction.Builder auth(String auth)
The authentication type of a configurable action of a Amazon DataZone environment.
- Parameters:
auth- The authentication type of a configurable action of a Amazon DataZone environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurableActionTypeAuthorization,ConfigurableActionTypeAuthorization
-
auth
ConfigurableEnvironmentAction.Builder auth(ConfigurableActionTypeAuthorization auth)
The authentication type of a configurable action of a Amazon DataZone environment.
- Parameters:
auth- The authentication type of a configurable action of a Amazon DataZone environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurableActionTypeAuthorization,ConfigurableActionTypeAuthorization
-
parameters
ConfigurableEnvironmentAction.Builder parameters(Collection<ConfigurableActionParameter> parameters)
The parameters of a configurable action in a Amazon DataZone environment.
- Parameters:
parameters- The parameters of a configurable action in a Amazon DataZone environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
ConfigurableEnvironmentAction.Builder parameters(ConfigurableActionParameter... parameters)
The parameters of a configurable action in a Amazon DataZone environment.
- Parameters:
parameters- The parameters of a configurable action in a Amazon DataZone environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameters
ConfigurableEnvironmentAction.Builder parameters(Consumer<ConfigurableActionParameter.Builder>... parameters)
The parameters of a configurable action in a Amazon DataZone environment.
This is a convenience method that creates an instance of theConfigurableActionParameter.Builderavoiding the need to create one manually viaConfigurableActionParameter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#parameters(List.) - Parameters:
parameters- a consumer that will call methods onConfigurableActionParameter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#parameters(java.util.Collection)
-
type
ConfigurableEnvironmentAction.Builder type(String type)
The type of a configurable action in a Amazon DataZone environment.
- Parameters:
type- The type of a configurable action in a Amazon DataZone environment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-