#[non_exhaustive]pub struct CreateConfigurationTemplateOutput {
pub solution_stack_name: Option<String>,
pub platform_arn: Option<String>,
pub application_name: Option<String>,
pub template_name: Option<String>,
pub description: Option<String>,
pub environment_name: Option<String>,
pub deployment_status: Option<ConfigurationDeploymentStatus>,
pub date_created: Option<DateTime>,
pub date_updated: Option<DateTime>,
pub option_settings: Option<Vec<ConfigurationOptionSetting>>,
}
Expand description
Describes the settings for a configuration set.
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.solution_stack_name: Option<String>
The name of the solution stack this configuration set uses.
platform_arn: Option<String>
The ARN of the platform version.
application_name: Option<String>
The name of the application associated with this configuration set.
template_name: Option<String>
If not null
, the name of the configuration template for this configuration set.
description: Option<String>
Describes this configuration set.
environment_name: Option<String>
If not null
, the name of the environment for this configuration set.
deployment_status: Option<ConfigurationDeploymentStatus>
If this configuration set is associated with an environment, the DeploymentStatus
parameter indicates the deployment status of this configuration set:
-
null
: This configuration is not associated with a running environment. -
pending
: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying. -
deployed
: This is the configuration that is currently deployed to the associated running environment. -
failed
: This is a draft configuration that failed to successfully deploy.
date_created: Option<DateTime>
The date (in UTC time) when this configuration set was created.
date_updated: Option<DateTime>
The date (in UTC time) when this configuration set was last modified.
option_settings: Option<Vec<ConfigurationOptionSetting>>
A list of the configuration options and their values in this configuration set.
Implementations
sourceimpl CreateConfigurationTemplateOutput
impl CreateConfigurationTemplateOutput
sourcepub fn solution_stack_name(&self) -> Option<&str>
pub fn solution_stack_name(&self) -> Option<&str>
The name of the solution stack this configuration set uses.
sourcepub fn platform_arn(&self) -> Option<&str>
pub fn platform_arn(&self) -> Option<&str>
The ARN of the platform version.
sourcepub fn application_name(&self) -> Option<&str>
pub fn application_name(&self) -> Option<&str>
The name of the application associated with this configuration set.
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
If not null
, the name of the configuration template for this configuration set.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Describes this configuration set.
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
If not null
, the name of the environment for this configuration set.
sourcepub fn deployment_status(&self) -> Option<&ConfigurationDeploymentStatus>
pub fn deployment_status(&self) -> Option<&ConfigurationDeploymentStatus>
If this configuration set is associated with an environment, the DeploymentStatus
parameter indicates the deployment status of this configuration set:
-
null
: This configuration is not associated with a running environment. -
pending
: This is a draft configuration that is not deployed to the associated environment but is in the process of deploying. -
deployed
: This is the configuration that is currently deployed to the associated running environment. -
failed
: This is a draft configuration that failed to successfully deploy.
sourcepub fn date_created(&self) -> Option<&DateTime>
pub fn date_created(&self) -> Option<&DateTime>
The date (in UTC time) when this configuration set was created.
sourcepub fn date_updated(&self) -> Option<&DateTime>
pub fn date_updated(&self) -> Option<&DateTime>
The date (in UTC time) when this configuration set was last modified.
sourcepub fn option_settings(&self) -> Option<&[ConfigurationOptionSetting]>
pub fn option_settings(&self) -> Option<&[ConfigurationOptionSetting]>
A list of the configuration options and their values in this configuration set.
sourceimpl CreateConfigurationTemplateOutput
impl CreateConfigurationTemplateOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateConfigurationTemplateOutput
Trait Implementations
sourceimpl Clone for CreateConfigurationTemplateOutput
impl Clone for CreateConfigurationTemplateOutput
sourcefn clone(&self) -> CreateConfigurationTemplateOutput
fn clone(&self) -> CreateConfigurationTemplateOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<CreateConfigurationTemplateOutput> for CreateConfigurationTemplateOutput
impl PartialEq<CreateConfigurationTemplateOutput> for CreateConfigurationTemplateOutput
sourcefn eq(&self, other: &CreateConfigurationTemplateOutput) -> bool
fn eq(&self, other: &CreateConfigurationTemplateOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateConfigurationTemplateOutput) -> bool
fn ne(&self, other: &CreateConfigurationTemplateOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateConfigurationTemplateOutput
Auto Trait Implementations
impl RefUnwindSafe for CreateConfigurationTemplateOutput
impl Send for CreateConfigurationTemplateOutput
impl Sync for CreateConfigurationTemplateOutput
impl Unpin for CreateConfigurationTemplateOutput
impl UnwindSafe for CreateConfigurationTemplateOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more