Interface DeploymentParameterInput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DeploymentParameterInput.Builder,DeploymentParameterInput>,SdkBuilder<DeploymentParameterInput.Builder,DeploymentParameterInput>,SdkPojo
- Enclosing class:
- DeploymentParameterInput
public static interface DeploymentParameterInput.Builder extends SdkPojo, CopyableBuilder<DeploymentParameterInput.Builder,DeploymentParameterInput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeploymentParameterInput.Buildername(String name)The desired name of the deployment parameter.DeploymentParameterInput.BuildersecretString(String secretString)The text to encrypt and store in the secret.-
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
-
name
DeploymentParameterInput.Builder name(String name)
The desired name of the deployment parameter. This is the identifier on which deployment parameters are keyed for a given buyer and product. If this name matches an existing deployment parameter, this request will update the existing resource.
- Parameters:
name- The desired name of the deployment parameter. This is the identifier on which deployment parameters are keyed for a given buyer and product. If this name matches an existing deployment parameter, this request will update the existing resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
secretString
DeploymentParameterInput.Builder secretString(String secretString)
The text to encrypt and store in the secret.
- Parameters:
secretString- The text to encrypt and store in the secret.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-