/** *
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.
*/ export interface _Attribute { /** *The name of the attribute. Up to 128 letters (uppercase and lowercase), numbers, hyphens, underscores, and periods are allowed.
*/ name: string; /** *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.
*/ value?: string; /** *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.
*/ targetType?: "container-instance" | string; /** *The ID of the target. You can specify the short form ID for a resource or the full Amazon Resource Name (ARN).
*/ targetId?: string; } export declare type _UnmarshalledAttribute = _Attribute;