Interface ValidateConfigurationSettingsRequest.Builder
- All Superinterfaces:
 AwsRequest.Builder,Buildable,CopyableBuilder<ValidateConfigurationSettingsRequest.Builder,,ValidateConfigurationSettingsRequest> ElasticBeanstalkRequest.Builder,SdkBuilder<ValidateConfigurationSettingsRequest.Builder,,ValidateConfigurationSettingsRequest> SdkPojo,SdkRequest.Builder
- Enclosing class:
 ValidateConfigurationSettingsRequest
- 
Method Summary
Modifier and TypeMethodDescriptionapplicationName(String applicationName) The name of the application that the configuration template or environment belongs to.environmentName(String environmentName) The name of the environment to validate the settings against.optionSettings(Collection<ConfigurationOptionSetting> optionSettings) A list of the options and desired values to evaluate.optionSettings(Consumer<ConfigurationOptionSetting.Builder>... optionSettings) A list of the options and desired values to evaluate.optionSettings(ConfigurationOptionSetting... optionSettings) A list of the options and desired values to evaluate.overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.templateName(String templateName) The name of the configuration template to validate the settings against.Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfigurationMethods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.services.elasticbeanstalk.model.ElasticBeanstalkRequest.Builder
buildMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields 
- 
Method Details
- 
applicationName
The name of the application that the configuration template or environment belongs to.
- Parameters:
 applicationName- The name of the application that the configuration template or environment belongs to.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
templateName
The name of the configuration template to validate the settings against.
Condition: You cannot specify both this and an environment name.
- Parameters:
 templateName- The name of the configuration template to validate the settings against.Condition: You cannot specify both this and an environment name.
- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
environmentName
The name of the environment to validate the settings against.
Condition: You cannot specify both this and a configuration template name.
- Parameters:
 environmentName- The name of the environment to validate the settings against.Condition: You cannot specify both this and a configuration template name.
- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
optionSettings
ValidateConfigurationSettingsRequest.Builder optionSettings(Collection<ConfigurationOptionSetting> optionSettings) A list of the options and desired values to evaluate.
- Parameters:
 optionSettings- A list of the options and desired values to evaluate.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
optionSettings
ValidateConfigurationSettingsRequest.Builder optionSettings(ConfigurationOptionSetting... optionSettings) A list of the options and desired values to evaluate.
- Parameters:
 optionSettings- A list of the options and desired values to evaluate.- Returns:
 - Returns a reference to this object so that method calls can be chained together.
 
 - 
optionSettings
ValidateConfigurationSettingsRequest.Builder optionSettings(Consumer<ConfigurationOptionSetting.Builder>... optionSettings) A list of the options and desired values to evaluate.
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 tooptionSettings(List<ConfigurationOptionSetting>).- 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:
 
 - 
overrideConfiguration
ValidateConfigurationSettingsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
 overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
 overrideConfiguration- The override configuration.- Returns:
 - This object for method chaining.
 
 - 
overrideConfiguration
ValidateConfigurationSettingsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.BuilderAdd an optional request override configuration.- Specified by:
 overrideConfigurationin interfaceAwsRequest.Builder- Parameters:
 builderConsumer- AConsumerto which an emptyAwsRequestOverrideConfiguration.Builderwill be given.- Returns:
 - This object for method chaining.
 
 
 -