#[non_exhaustive]pub struct DescribeConfigurationSettingsInput {
pub application_name: Option<String>,
pub template_name: Option<String>,
pub environment_name: Option<String>,
}
Expand description
Result message containing all of the configuration settings for a specified solution stack or configuration template.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.application_name: Option<String>
The application for the environment or configuration template.
template_name: Option<String>
The name of the configuration template to describe.
Conditional: You must specify either this parameter or an EnvironmentName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination
error. If you do not specify either, AWS Elastic Beanstalk returns a MissingRequiredParameter
error.
environment_name: Option<String>
The name of the environment to describe.
Condition: You must specify either this or a TemplateName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination
error. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
error.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeConfigurationSettings, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeConfigurationSettings, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeConfigurationSettings
>
Creates a new builder-style object to manufacture DescribeConfigurationSettingsInput
The application for the environment or configuration template.
The name of the configuration template to describe.
Conditional: You must specify either this parameter or an EnvironmentName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination
error. If you do not specify either, AWS Elastic Beanstalk returns a MissingRequiredParameter
error.
The name of the environment to describe.
Condition: You must specify either this or a TemplateName, but not both. If you specify both, AWS Elastic Beanstalk returns an InvalidParameterCombination
error. If you do not specify either, AWS Elastic Beanstalk returns MissingRequiredParameter
error.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DescribeConfigurationSettingsInput
impl Sync for DescribeConfigurationSettingsInput
impl Unpin for DescribeConfigurationSettingsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more