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
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 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.Builder
avoiding the need to create one manually viaConfigurationOptionSetting.builder()
.When the
Consumer
completes,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.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in 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.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-