Struct aws_sdk_ssm::operation::get_parameters::GetParametersOutput
source · #[non_exhaustive]pub struct GetParametersOutput {
pub parameters: Option<Vec<Parameter>>,
pub invalid_parameters: Option<Vec<String>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.parameters: Option<Vec<Parameter>>
A list of details for a parameter.
invalid_parameters: Option<Vec<String>>
A list of parameters that aren't formatted correctly or don't run during an execution.
Implementations§
source§impl GetParametersOutput
impl GetParametersOutput
sourcepub fn parameters(&self) -> Option<&[Parameter]>
pub fn parameters(&self) -> Option<&[Parameter]>
A list of details for a parameter.
sourcepub fn invalid_parameters(&self) -> Option<&[String]>
pub fn invalid_parameters(&self) -> Option<&[String]>
A list of parameters that aren't formatted correctly or don't run during an execution.
source§impl GetParametersOutput
impl GetParametersOutput
sourcepub fn builder() -> GetParametersOutputBuilder
pub fn builder() -> GetParametersOutputBuilder
Creates a new builder-style object to manufacture GetParametersOutput
.
Trait Implementations§
source§impl Clone for GetParametersOutput
impl Clone for GetParametersOutput
source§fn clone(&self) -> GetParametersOutput
fn clone(&self) -> GetParametersOutput
Returns a copy 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 Debug for GetParametersOutput
impl Debug for GetParametersOutput
source§impl PartialEq for GetParametersOutput
impl PartialEq for GetParametersOutput
source§fn eq(&self, other: &GetParametersOutput) -> bool
fn eq(&self, other: &GetParametersOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetParametersOutput
impl RequestId for GetParametersOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetParametersOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetParametersOutput
impl Send for GetParametersOutput
impl Sync for GetParametersOutput
impl Unpin for GetParametersOutput
impl UnwindSafe for GetParametersOutput
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