pub struct DescribeConfigurationOptionsMessage {
pub application_name: Option<String>,
pub environment_name: Option<String>,
pub options: Option<Vec<OptionSpecification>>,
pub platform_arn: Option<String>,
pub solution_stack_name: Option<String>,
pub template_name: Option<String>,
}
Expand description
Result message containing a list of application version descriptions.
Fields§
§application_name: Option<String>
The name of the application associated with the configuration template or environment. Only needed if you want to describe the configuration options associated with either the configuration template or environment.
environment_name: Option<String>
The name of the environment whose configuration options you want to describe.
options: Option<Vec<OptionSpecification>>
If specified, restricts the descriptions to only the specified options.
platform_arn: Option<String>
The ARN of the custom platform.
solution_stack_name: Option<String>
The name of the solution stack whose configuration options you want to describe.
template_name: Option<String>
The name of the configuration template whose configuration options you want to describe.
Trait Implementations§
Source§impl Clone for DescribeConfigurationOptionsMessage
impl Clone for DescribeConfigurationOptionsMessage
Source§fn clone(&self) -> DescribeConfigurationOptionsMessage
fn clone(&self) -> DescribeConfigurationOptionsMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DescribeConfigurationOptionsMessage
impl Default for DescribeConfigurationOptionsMessage
Source§fn default() -> DescribeConfigurationOptionsMessage
fn default() -> DescribeConfigurationOptionsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeConfigurationOptionsMessage
impl PartialEq for DescribeConfigurationOptionsMessage
Source§fn eq(&self, other: &DescribeConfigurationOptionsMessage) -> bool
fn eq(&self, other: &DescribeConfigurationOptionsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeConfigurationOptionsMessage
Auto Trait Implementations§
impl Freeze for DescribeConfigurationOptionsMessage
impl RefUnwindSafe for DescribeConfigurationOptionsMessage
impl Send for DescribeConfigurationOptionsMessage
impl Sync for DescribeConfigurationOptionsMessage
impl Unpin for DescribeConfigurationOptionsMessage
impl UnwindSafe for DescribeConfigurationOptionsMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more