Interface UpdateConfigurationTemplateRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateConfigurationTemplateRequest.Builder,UpdateConfigurationTemplateRequest>,ElasticBeanstalkRequest.Builder,SdkBuilder<UpdateConfigurationTemplateRequest.Builder,UpdateConfigurationTemplateRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateConfigurationTemplateRequest
public static interface UpdateConfigurationTemplateRequest.Builder extends ElasticBeanstalkRequest.Builder, SdkPojo, CopyableBuilder<UpdateConfigurationTemplateRequest.Builder,UpdateConfigurationTemplateRequest>
-
-
Method Summary
-
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.elasticbeanstalk.model.ElasticBeanstalkRequest.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
-
applicationName
UpdateConfigurationTemplateRequest.Builder applicationName(String applicationName)
The name of the application associated with the configuration template to update.
If no application is found with this name,
UpdateConfigurationTemplatereturns anInvalidParameterValueerror.- Parameters:
applicationName- The name of the application associated with the configuration template to update.If no application is found with this name,
UpdateConfigurationTemplatereturns anInvalidParameterValueerror.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
templateName
UpdateConfigurationTemplateRequest.Builder templateName(String templateName)
The name of the configuration template to update.
If no configuration template is found with this name,
UpdateConfigurationTemplatereturns anInvalidParameterValueerror.- Parameters:
templateName- The name of the configuration template to update.If no configuration template is found with this name,
UpdateConfigurationTemplatereturns anInvalidParameterValueerror.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateConfigurationTemplateRequest.Builder description(String description)
A new description for the configuration.
- Parameters:
description- A new description for the configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optionSettings
UpdateConfigurationTemplateRequest.Builder optionSettings(Collection<ConfigurationOptionSetting> optionSettings)
A list of configuration option settings to update with the new specified option value.
- Parameters:
optionSettings- A list of configuration option settings to update with the new specified option value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optionSettings
UpdateConfigurationTemplateRequest.Builder optionSettings(ConfigurationOptionSetting... optionSettings)
A list of configuration option settings to update with the new specified option value.
- Parameters:
optionSettings- A list of configuration option settings to update with the new specified option value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optionSettings
UpdateConfigurationTemplateRequest.Builder optionSettings(Consumer<ConfigurationOptionSetting.Builder>... optionSettings)
A list of configuration option settings to update with the new specified option value.
This is a convenience method that creates an instance of theConfigurationOptionSetting.Builderavoiding the need to create one manually viaConfigurationOptionSetting.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#optionSettings(List.) - Parameters:
optionSettings- a consumer that will call methods onConfigurationOptionSetting.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#optionSettings(java.util.Collection)
-
optionsToRemove
UpdateConfigurationTemplateRequest.Builder optionsToRemove(Collection<OptionSpecification> optionsToRemove)
A list of configuration options to remove from the configuration set.
Constraint: You can remove only
UserDefinedconfiguration options.- Parameters:
optionsToRemove- A list of configuration options to remove from the configuration set.Constraint: You can remove only
UserDefinedconfiguration options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optionsToRemove
UpdateConfigurationTemplateRequest.Builder optionsToRemove(OptionSpecification... optionsToRemove)
A list of configuration options to remove from the configuration set.
Constraint: You can remove only
UserDefinedconfiguration options.- Parameters:
optionsToRemove- A list of configuration options to remove from the configuration set.Constraint: You can remove only
UserDefinedconfiguration options.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optionsToRemove
UpdateConfigurationTemplateRequest.Builder optionsToRemove(Consumer<OptionSpecification.Builder>... optionsToRemove)
A list of configuration options to remove from the configuration set.
Constraint: You can remove only
This is a convenience method that creates an instance of theUserDefinedconfiguration options.OptionSpecification.Builderavoiding the need to create one manually viaOptionSpecification.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#optionsToRemove(List.) - Parameters:
optionsToRemove- a consumer that will call methods onOptionSpecification.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#optionsToRemove(java.util.Collection)
-
overrideConfiguration
UpdateConfigurationTemplateRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateConfigurationTemplateRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-