Interface UpdateVoiceTemplateRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateVoiceTemplateRequest.Builder,UpdateVoiceTemplateRequest>,PinpointRequest.Builder,SdkBuilder<UpdateVoiceTemplateRequest.Builder,UpdateVoiceTemplateRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateVoiceTemplateRequest
public static interface UpdateVoiceTemplateRequest.Builder extends PinpointRequest.Builder, SdkPojo, CopyableBuilder<UpdateVoiceTemplateRequest.Builder,UpdateVoiceTemplateRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateVoiceTemplateRequest.BuildercreateNewVersion(Boolean createNewVersion)Specifies whether to save the updates as a new version of the message template.UpdateVoiceTemplateRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateVoiceTemplateRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateVoiceTemplateRequest.BuildertemplateName(String templateName)The name of the message template.UpdateVoiceTemplateRequest.Builderversion(String version)The unique identifier for the version of the message template to update, retrieve information about, or delete.default UpdateVoiceTemplateRequest.BuildervoiceTemplateRequest(Consumer<VoiceTemplateRequest.Builder> voiceTemplateRequest)Sets the value of the VoiceTemplateRequest property for this object.UpdateVoiceTemplateRequest.BuildervoiceTemplateRequest(VoiceTemplateRequest voiceTemplateRequest)Sets the value of the VoiceTemplateRequest property for this object.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.pinpoint.model.PinpointRequest.Builder
build
-
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
-
createNewVersion
UpdateVoiceTemplateRequest.Builder createNewVersion(Boolean createNewVersion)
Specifies whether to save the updates as a new version of the message template. Valid values are: true, save the updates as a new version; and, false, save the updates to (overwrite) the latest existing version of the template.
If you don't specify a value for this parameter, Amazon Pinpoint saves the updates to (overwrites) the latest existing version of the template. If you specify a value of true for this parameter, don't specify a value for the version parameter. Otherwise, an error will occur.
- Parameters:
createNewVersion- Specifies whether to save the updates as a new version of the message template. Valid values are: true, save the updates as a new version; and, false, save the updates to (overwrite) the latest existing version of the template.If you don't specify a value for this parameter, Amazon Pinpoint saves the updates to (overwrites) the latest existing version of the template. If you specify a value of true for this parameter, don't specify a value for the version parameter. Otherwise, an error will occur.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateName
UpdateVoiceTemplateRequest.Builder templateName(String templateName)
The name of the message template. A template name must start with an alphanumeric character and can contain a maximum of 128 characters. The characters can be alphanumeric characters, underscores (_), or hyphens (-). Template names are case sensitive.
- Parameters:
templateName- The name of the message template. A template name must start with an alphanumeric character and can contain a maximum of 128 characters. The characters can be alphanumeric characters, underscores (_), or hyphens (-). Template names are case sensitive.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
UpdateVoiceTemplateRequest.Builder version(String version)
The unique identifier for the version of the message template to update, retrieve information about, or delete. To retrieve identifiers and other information for all the versions of a template, use the Template Versions resource.
If specified, this value must match the identifier for an existing template version. If specified for an update operation, this value must match the identifier for the latest existing version of the template. This restriction helps ensure that race conditions don't occur.
If you don't specify a value for this parameter, Amazon Pinpoint does the following:
-
For a get operation, retrieves information about the active version of the template.
-
For an update operation, saves the updates to (overwrites) the latest existing version of the template, if the create-new-version parameter isn't used or is set to false.
-
For a delete operation, deletes the template, including all versions of the template.
- Parameters:
version- The unique identifier for the version of the message template to update, retrieve information about, or delete. To retrieve identifiers and other information for all the versions of a template, use the Template Versions resource.If specified, this value must match the identifier for an existing template version. If specified for an update operation, this value must match the identifier for the latest existing version of the template. This restriction helps ensure that race conditions don't occur.
If you don't specify a value for this parameter, Amazon Pinpoint does the following:
-
For a get operation, retrieves information about the active version of the template.
-
For an update operation, saves the updates to (overwrites) the latest existing version of the template, if the create-new-version parameter isn't used or is set to false.
-
For a delete operation, deletes the template, including all versions of the template.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
voiceTemplateRequest
UpdateVoiceTemplateRequest.Builder voiceTemplateRequest(VoiceTemplateRequest voiceTemplateRequest)
Sets the value of the VoiceTemplateRequest property for this object.- Parameters:
voiceTemplateRequest- The new value for the VoiceTemplateRequest property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
voiceTemplateRequest
default UpdateVoiceTemplateRequest.Builder voiceTemplateRequest(Consumer<VoiceTemplateRequest.Builder> voiceTemplateRequest)
Sets the value of the VoiceTemplateRequest property for this object. This is a convenience method that creates an instance of theVoiceTemplateRequest.Builderavoiding the need to create one manually viaVoiceTemplateRequest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovoiceTemplateRequest(VoiceTemplateRequest).- Parameters:
voiceTemplateRequest- a consumer that will call methods onVoiceTemplateRequest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
voiceTemplateRequest(VoiceTemplateRequest)
-
overrideConfiguration
UpdateVoiceTemplateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateVoiceTemplateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-