Struct aws_sdk_fis::types::ResolvedTarget
source · #[non_exhaustive]pub struct ResolvedTarget {
pub resource_type: Option<String>,
pub target_name: Option<String>,
pub target_information: Option<HashMap<String, String>>,
}Expand description
Describes a resolved target.
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.resource_type: Option<String>The resource type of the target.
target_name: Option<String>The name of the target.
target_information: Option<HashMap<String, String>>Information about the target.
Implementations§
source§impl ResolvedTarget
impl ResolvedTarget
sourcepub fn resource_type(&self) -> Option<&str>
pub fn resource_type(&self) -> Option<&str>
The resource type of the target.
sourcepub fn target_name(&self) -> Option<&str>
pub fn target_name(&self) -> Option<&str>
The name of the target.
source§impl ResolvedTarget
impl ResolvedTarget
sourcepub fn builder() -> ResolvedTargetBuilder
pub fn builder() -> ResolvedTargetBuilder
Creates a new builder-style object to manufacture ResolvedTarget.
Trait Implementations§
source§impl Clone for ResolvedTarget
impl Clone for ResolvedTarget
source§fn clone(&self) -> ResolvedTarget
fn clone(&self) -> ResolvedTarget
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 ResolvedTarget
impl Debug for ResolvedTarget
source§impl PartialEq for ResolvedTarget
impl PartialEq for ResolvedTarget
source§fn eq(&self, other: &ResolvedTarget) -> bool
fn eq(&self, other: &ResolvedTarget) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ResolvedTarget
Auto Trait Implementations§
impl RefUnwindSafe for ResolvedTarget
impl Send for ResolvedTarget
impl Sync for ResolvedTarget
impl Unpin for ResolvedTarget
impl UnwindSafe for ResolvedTarget
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.