public static interface ValidateConfigurationSettingsRequest.Builder extends ElasticBeanstalkRequest.Builder, CopyableBuilder<ValidateConfigurationSettingsRequest.Builder,ValidateConfigurationSettingsRequest>
Modifier and Type | Method and Description |
---|---|
ValidateConfigurationSettingsRequest.Builder |
applicationName(String applicationName)
The name of the application that the configuration template or environment belongs to.
|
ValidateConfigurationSettingsRequest.Builder |
environmentName(String environmentName)
The name of the environment to validate the settings against.
|
ValidateConfigurationSettingsRequest.Builder |
optionSettings(Collection<ConfigurationOptionSetting> optionSettings)
A list of the options and desired values to evaluate.
|
ValidateConfigurationSettingsRequest.Builder |
optionSettings(ConfigurationOptionSetting... optionSettings)
A list of the options and desired values to evaluate.
|
ValidateConfigurationSettingsRequest.Builder |
optionSettings(Consumer<ConfigurationOptionSetting.Builder>... optionSettings)
A list of the options and desired values to evaluate.
|
ValidateConfigurationSettingsRequest.Builder |
requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig)
Add an optional request override configuration.
|
ValidateConfigurationSettingsRequest.Builder |
requestOverrideConfig(Consumer<AwsRequestOverrideConfig.Builder> builderConsumer)
Add an optional request override configuration.
|
ValidateConfigurationSettingsRequest.Builder |
templateName(String templateName)
The name of the configuration template to validate the settings against.
|
build
requestOverrideConfig
copy
apply, build
ValidateConfigurationSettingsRequest.Builder applicationName(String applicationName)
The name of the application that the configuration template or environment belongs to.
applicationName
- The name of the application that the configuration template or environment belongs to.ValidateConfigurationSettingsRequest.Builder templateName(String templateName)
The name of the configuration template to validate the settings against.
Condition: You cannot specify both this and an environment name.
templateName
- The name of the configuration template to validate the settings against.
Condition: You cannot specify both this and an environment name.
ValidateConfigurationSettingsRequest.Builder environmentName(String environmentName)
The name of the environment to validate the settings against.
Condition: You cannot specify both this and a configuration template name.
environmentName
- The name of the environment to validate the settings against.
Condition: You cannot specify both this and a configuration template name.
ValidateConfigurationSettingsRequest.Builder optionSettings(Collection<ConfigurationOptionSetting> optionSettings)
A list of the options and desired values to evaluate.
optionSettings
- A list of the options and desired values to evaluate.ValidateConfigurationSettingsRequest.Builder optionSettings(ConfigurationOptionSetting... optionSettings)
A list of the options and desired values to evaluate.
optionSettings
- A list of the options and desired values to evaluate.ValidateConfigurationSettingsRequest.Builder optionSettings(Consumer<ConfigurationOptionSetting.Builder>... optionSettings)
A list of the options and desired values to evaluate.
This is a convenience that creates an instance of theList.Builder
avoiding the need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called
immediately and its result is passed to #optionSettings(List)
.optionSettings
- a consumer that will call methods on List.Builder
#optionSettings(List)
ValidateConfigurationSettingsRequest.Builder requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig)
AwsRequest.Builder
requestOverrideConfig
in interface AwsRequest.Builder
awsRequestOverrideConfig
- The override configuration.ValidateConfigurationSettingsRequest.Builder requestOverrideConfig(Consumer<AwsRequestOverrideConfig.Builder> builderConsumer)
AwsRequest.Builder
requestOverrideConfig
in interface AwsRequest.Builder
builderConsumer
- A Consumer
to which an empty AwsRequestOverrideConfig.Builder
will be given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.