Interface SSMValidationParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SSMValidationParameters.Builder,SSMValidationParameters>,SdkBuilder<SSMValidationParameters.Builder,SSMValidationParameters>,SdkPojo
- Enclosing class:
- SSMValidationParameters
public static interface SSMValidationParameters.Builder extends SdkPojo, CopyableBuilder<SSMValidationParameters.Builder,SSMValidationParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SSMValidationParameters.Buildercommand(String command)The command to run the validation script.SSMValidationParameters.BuilderexecutionTimeoutSeconds(Integer executionTimeoutSeconds)The timeout interval, in seconds.SSMValidationParameters.BuilderinstanceId(String instanceId)The ID of the instance.SSMValidationParameters.BuilderoutputS3BucketName(String outputS3BucketName)The name of the S3 bucket for output.SSMValidationParameters.BuilderscriptType(String scriptType)The type of validation script.SSMValidationParameters.BuilderscriptType(ScriptType scriptType)The type of validation script.default SSMValidationParameters.Buildersource(Consumer<Source.Builder> source)The location of the validation script.SSMValidationParameters.Buildersource(Source source)The location of the validation script.-
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
SSMValidationParameters.Builder source(Source source)
The location of the validation script.
- Parameters:
source- The location of the validation script.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
default SSMValidationParameters.Builder source(Consumer<Source.Builder> source)
The location of the validation script.
This is a convenience method that creates an instance of theSource.Builderavoiding the need to create one manually viaSource.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosource(Source).- Parameters:
source- a consumer that will call methods onSource.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
source(Source)
-
instanceId
SSMValidationParameters.Builder instanceId(String instanceId)
The ID of the instance. The instance must have the following tag: UserForSMSApplicationValidation=true.
- Parameters:
instanceId- The ID of the instance. The instance must have the following tag: UserForSMSApplicationValidation=true.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scriptType
SSMValidationParameters.Builder scriptType(String scriptType)
The type of validation script.
- Parameters:
scriptType- The type of validation script.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScriptType,ScriptType
-
scriptType
SSMValidationParameters.Builder scriptType(ScriptType scriptType)
The type of validation script.
- Parameters:
scriptType- The type of validation script.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScriptType,ScriptType
-
command
SSMValidationParameters.Builder command(String command)
The command to run the validation script.
- Parameters:
command- The command to run the validation script.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
executionTimeoutSeconds
SSMValidationParameters.Builder executionTimeoutSeconds(Integer executionTimeoutSeconds)
The timeout interval, in seconds.
- Parameters:
executionTimeoutSeconds- The timeout interval, in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
outputS3BucketName
SSMValidationParameters.Builder outputS3BucketName(String outputS3BucketName)
The name of the S3 bucket for output.
- Parameters:
outputS3BucketName- The name of the S3 bucket for output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-