Tag
public struct Tag : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The initial part of a key-value pair that forms a tag associated with a given resource. For instance, if you want to show which resources are used by which departments, you might use “Department” as the key portion of the pair, with multiple possible values such as “sales,” “legal,” and “administration.”
Declaration
Swift
public let key: String
-
The second part of a key-value pair that forms a tag associated with a given resource. For instance, if you want to show which resources are used by which departments, you might use “Department” as the initial (key) portion of the pair, with a value of “sales” to indicate the sales department.
Declaration
Swift
public let value: String?
-
Undocumented
Declaration
Swift
public init(key: String, value: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws