AttributeValue
public struct AttributeValue : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
For number values, expressed as double.
Declaration
Swift
public let n: Double?
-
For single string values. Maximum string length is 100 characters.
Declaration
Swift
public let s: String?
-
For a map of up to 10 data type:value pairs. Maximum length for each string value is 100 characters.
Declaration
Swift
public let sdm: [String : Double]?
-
For a list of up to 10 strings. Maximum length for each string is 100 characters. Duplicate values are not recognized; all occurrences of the repeated value after the first of a repeated value are ignored.
Declaration
Swift
public let sl: [String]?
-
Undocumented
Declaration
Swift
public init(n: Double? = nil, s: String? = nil, sdm: [String : Double]? = nil, sl: [String]? = nil)
-
Declaration
Swift
public func validate(name: String) throws