DeleteAttributesRequest

public struct DeleteAttributesRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.

    Declaration

    Swift

    public let attributes: [DeletableAttribute]?
  • The name of the domain in which to perform the operation.

    Declaration

    Swift

    public let domainName: String
  • The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.

    Declaration

    Swift

    public let expected: UpdateCondition?
  • The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.

    Declaration

    Swift

    public let itemName: String
  • Undocumented

    Declaration

    Swift

    public init(attributes: [DeletableAttribute]? = nil, domainName: String, expected: UpdateCondition? = nil, itemName: String)