Struct aws_sdk_migrationhub::types::ResourceAttribute
source · #[non_exhaustive]pub struct ResourceAttribute {
pub type: ResourceAttributeType,
pub value: String,
}Expand description
Attribute associated with a resource.
Note the corresponding format required per type listed below:
- IPV4
-
x.x.x.xwhere x is an integer in the range [0,255]
- IPV6
-
y : y : y : y : y : y : y : ywhere y is a hexadecimal between 0 and FFFF. [0, FFFF]
- MAC_ADDRESS
-
^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$ - FQDN
-
^[^<>{}\\\\/?,=\\p{Cntrl}]{1,256}$
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.type: ResourceAttributeTypeType of resource.
value: StringValue of the resource type.
Implementations§
source§impl ResourceAttribute
impl ResourceAttribute
sourcepub fn builder() -> ResourceAttributeBuilder
pub fn builder() -> ResourceAttributeBuilder
Creates a new builder-style object to manufacture ResourceAttribute.
Trait Implementations§
source§impl Clone for ResourceAttribute
impl Clone for ResourceAttribute
source§fn clone(&self) -> ResourceAttribute
fn clone(&self) -> ResourceAttribute
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 ResourceAttribute
impl Debug for ResourceAttribute
source§impl PartialEq for ResourceAttribute
impl PartialEq for ResourceAttribute
source§fn eq(&self, other: &ResourceAttribute) -> bool
fn eq(&self, other: &ResourceAttribute) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ResourceAttribute
Auto Trait Implementations§
impl Freeze for ResourceAttribute
impl RefUnwindSafe for ResourceAttribute
impl Send for ResourceAttribute
impl Sync for ResourceAttribute
impl Unpin for ResourceAttribute
impl UnwindSafe for ResourceAttribute
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.