Struct aws_sdk_cloudformation::model::ParameterDeclaration
source · [−]#[non_exhaustive]pub struct ParameterDeclaration {
pub parameter_key: Option<String>,
pub default_value: Option<String>,
pub parameter_type: Option<String>,
pub no_echo: Option<bool>,
pub description: Option<String>,
pub parameter_constraints: Option<ParameterConstraints>,
}
Expand description
The ParameterDeclaration data type.
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.parameter_key: Option<String>
The name that's associated with the parameter.
default_value: Option<String>
The default value of the parameter.
parameter_type: Option<String>
The type of parameter.
no_echo: Option<bool>
Flag that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.
description: Option<String>
The description that's associate with the parameter.
parameter_constraints: Option<ParameterConstraints>
The criteria that CloudFormation uses to validate parameter values.
Implementations
sourceimpl ParameterDeclaration
impl ParameterDeclaration
sourcepub fn parameter_key(&self) -> Option<&str>
pub fn parameter_key(&self) -> Option<&str>
The name that's associated with the parameter.
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
The default value of the parameter.
sourcepub fn parameter_type(&self) -> Option<&str>
pub fn parameter_type(&self) -> Option<&str>
The type of parameter.
sourcepub fn no_echo(&self) -> Option<bool>
pub fn no_echo(&self) -> Option<bool>
Flag that indicates whether the parameter value is shown as plain text in logs and in the Amazon Web Services Management Console.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description that's associate with the parameter.
sourcepub fn parameter_constraints(&self) -> Option<&ParameterConstraints>
pub fn parameter_constraints(&self) -> Option<&ParameterConstraints>
The criteria that CloudFormation uses to validate parameter values.
sourceimpl ParameterDeclaration
impl ParameterDeclaration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ParameterDeclaration
Trait Implementations
sourceimpl Clone for ParameterDeclaration
impl Clone for ParameterDeclaration
sourcefn clone(&self) -> ParameterDeclaration
fn clone(&self) -> ParameterDeclaration
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 Debug for ParameterDeclaration
impl Debug for ParameterDeclaration
sourceimpl PartialEq<ParameterDeclaration> for ParameterDeclaration
impl PartialEq<ParameterDeclaration> for ParameterDeclaration
sourcefn eq(&self, other: &ParameterDeclaration) -> bool
fn eq(&self, other: &ParameterDeclaration) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ParameterDeclaration) -> bool
fn ne(&self, other: &ParameterDeclaration) -> bool
This method tests for !=
.
impl StructuralPartialEq for ParameterDeclaration
Auto Trait Implementations
impl RefUnwindSafe for ParameterDeclaration
impl Send for ParameterDeclaration
impl Sync for ParameterDeclaration
impl Unpin for ParameterDeclaration
impl UnwindSafe for ParameterDeclaration
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