Struct rusoto_ecs::Attribute [] [src]

pub struct Attribute {
    pub name: String,
    pub target_id: Option<String>,
    pub target_type: Option<String>,
    pub value: Option<String>,
}

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 EC2 Container Service Developer Guide.

Fields

The name of the attribute. Up to 128 letters (uppercase and lowercase), numbers, hyphens, underscores, and periods are allowed.

The ID of the target. You can specify the short form ID for a resource or the full Amazon Resource Name (ARN).

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 Amazon Resource Name (ARN).

The value of the attribute. Up to 128 letters (uppercase and lowercase), numbers, hyphens, underscores, periods, at signs (@), forward slashes, colons, and spaces are allowed.

Trait Implementations

impl Default for Attribute
[src]

Returns the "default value" for a type. Read more

impl Debug for Attribute
[src]

Formats the value using the given formatter.

impl Clone for Attribute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more