Tag
public struct Tag : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A key is the required name of the tag. The string value can be 1-128 Unicode characters in length and can’t be prefixed with “aws:” or “dms:”. The string can only contain only the set of Unicode letters, digits, white-space, ‘’, ‘.’, ‘/’, ‘=’, ‘+’, ‘-’ (Java regular expressions: “^([\p{L}\p{Z}\p{N}.:/=+-]*)$”).
Declaration
Swift
public let key: String?
-
A value is the optional value of the tag. The string value can be 1-256 Unicode characters in length and can’t be prefixed with “aws:” or “dms:”. The string can only contain only the set of Unicode letters, digits, white-space, ‘’, ‘.’, ‘/’, ‘=’, ‘+’, ‘-’ (Java regular expressions: “^([\p{L}\p{Z}\p{N}.:/=+-]*)$”).
Declaration
Swift
public let value: String?
-
Undocumented
Declaration
Swift
public init(key: String? = nil, value: String? = nil)