Tag

public struct Tag : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • key

    The key name that can be used to look up or retrieve the associated value. For example, Department or Cost Center are common choices.

    Declaration

    Swift

    public let key: String
  • The value associated with this tag. For example, tags with a key name of Department could have values such as Human Resources, Accounting, and Support. Tags with a key name of Cost Center might have values that consist of the number associated with the different cost centers in your company. Typically, many resources have tags with the same key name but with different values. AWS always interprets the tag Value as a single string. If you need to store an array, you can store comma-separated values in the string. However, you must interpret the value in your code.

    Declaration

    Swift

    public let value: String
  • Undocumented

    Declaration

    Swift

    public init(key: String, value: String)
  • Declaration

    Swift

    public func validate(name: String) throws