DescribeExportTasksRequest
public struct DescribeExportTasksRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The maximum number of items returned. If you don’t specify a value, the default is up to 50 items.
Declaration
Swift
public let limit: Int?
-
The token for the next set of items to return. (You received this token from a previous call.)
Declaration
Swift
public let nextToken: String?
-
The status code of the export task. Specifying a status code filters the results to zero or more export tasks.
Declaration
Swift
public let statusCode: ExportTaskStatusCode?
-
The ID of the export task. Specifying a task ID filters the results to zero or one export tasks.
Declaration
Swift
public let taskId: String?
-
Undocumented
Declaration
Swift
public init(limit: Int? = nil, nextToken: String? = nil, statusCode: ExportTaskStatusCode? = nil, taskId: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws