Struct aws_sdk_ecs::model::Attribute [−][src]
#[non_exhaustive]pub struct Attribute {
pub name: Option<String>,
pub value: Option<String>,
pub target_type: Option<TargetType>,
pub target_id: Option<String>,
}
Expand description
An attribute is a name-value pair associated with an Amazon ECS object. Attributes enable you to extend the Amazon ECS data model by adding custom metadata to your resources. For more information, see Attributes in the Amazon Elastic Container Service Developer Guide.
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.name: Option<String>
The name of the attribute. The name
must contain between 1 and 128
characters and name may contain letters (uppercase and lowercase), numbers, hyphens,
underscores, forward slashes, back slashes, or periods.
value: Option<String>
The value of the attribute. The value
must contain between 1 and 128
characters and may contain letters (uppercase and lowercase), numbers, hyphens,
underscores, periods, at signs (@), forward slashes, back slashes, colons, or spaces.
The value cannot contain any leading or trailing whitespace.
target_type: Option<TargetType>
The type of the target with which to attach the attribute. This parameter is required if you use the short form ID for a resource instead of the full ARN.
target_id: Option<String>
The ID of the target. You can specify the short form ID for a resource or the full Amazon Resource Name (ARN).
Implementations
The name of the attribute. The name
must contain between 1 and 128
characters and name may contain letters (uppercase and lowercase), numbers, hyphens,
underscores, forward slashes, back slashes, or periods.
The value of the attribute. The value
must contain between 1 and 128
characters and may contain letters (uppercase and lowercase), numbers, hyphens,
underscores, periods, at signs (@), forward slashes, back slashes, colons, or spaces.
The value cannot contain any leading or trailing whitespace.
The type of the target with which to attach the attribute. This parameter is required if you use the short form ID for a resource instead of the full ARN.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Attribute
impl UnwindSafe for Attribute
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more