DeleteCustomMetadataRequest

public struct DeleteCustomMetadataRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Amazon WorkDocs authentication token. Not required when using AWS administrator credentials to access the API.

    Declaration

    Swift

    public let authenticationToken: String?
  • Flag to indicate removal of all custom metadata properties from the specified resource.

    Declaration

    Swift

    public let deleteAll: Bool?
  • List of properties to remove.

    Declaration

    Swift

    public let keys: [String]?
  • The ID of the resource, either a document or folder.

    Declaration

    Swift

    public let resourceId: String
  • The ID of the version, if the custom metadata is being deleted from a document version.

    Declaration

    Swift

    public let versionId: String?
  • Undocumented

    Declaration

    Swift

    public init(authenticationToken: String? = nil, deleteAll: Bool? = nil, keys: [String]? = nil, resourceId: String, versionId: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws