Struct aws_sdk_fis::types::TargetResourceTypeParameter
source · #[non_exhaustive]pub struct TargetResourceTypeParameter {
pub description: Option<String>,
pub required: Option<bool>,
}
Expand description
Describes the parameters for a resource type. Use parameters to determine which tasks are identified during target resolution.
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.description: Option<String>
A description of the parameter.
required: Option<bool>
Indicates whether the parameter is required.
Implementations§
source§impl TargetResourceTypeParameter
impl TargetResourceTypeParameter
sourcepub fn builder() -> TargetResourceTypeParameterBuilder
pub fn builder() -> TargetResourceTypeParameterBuilder
Creates a new builder-style object to manufacture TargetResourceTypeParameter
.
Trait Implementations§
source§impl Clone for TargetResourceTypeParameter
impl Clone for TargetResourceTypeParameter
source§fn clone(&self) -> TargetResourceTypeParameter
fn clone(&self) -> TargetResourceTypeParameter
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 TargetResourceTypeParameter
impl Debug for TargetResourceTypeParameter
source§impl PartialEq<TargetResourceTypeParameter> for TargetResourceTypeParameter
impl PartialEq<TargetResourceTypeParameter> for TargetResourceTypeParameter
source§fn eq(&self, other: &TargetResourceTypeParameter) -> bool
fn eq(&self, other: &TargetResourceTypeParameter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TargetResourceTypeParameter
Auto Trait Implementations§
impl RefUnwindSafe for TargetResourceTypeParameter
impl Send for TargetResourceTypeParameter
impl Sync for TargetResourceTypeParameter
impl Unpin for TargetResourceTypeParameter
impl UnwindSafe for TargetResourceTypeParameter
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