UpdateCondition
public struct UpdateCondition : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify true if the attribute must exist for the update condition to be satisfied. Specify false if the attribute should not exist in order for the update condition to be satisfied.
Declaration
Swift
public let exists: Bool?
-
The name of the attribute involved in the condition.
Declaration
Swift
public let name: String?
-
The value of an attribute. This value can only be specified when the Exists parameter is equal to true.
Declaration
Swift
public let value: String?
-
Undocumented
Declaration
Swift
public init(exists: Bool? = nil, name: String? = nil, value: String? = nil)