DescribeExportTasksRequest

public struct DescribeExportTasksRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • One or more unique identifiers used to query the status of an export request.

    Declaration

    Swift

    public let exportIds: [String]?
  • One or more filters. AgentId - ID of the agent whose collected data will be exported

    Declaration

    Swift

    public let filters: [ExportFilter]?
  • The maximum number of volume results returned by DescribeExportTasks in paginated output. When this parameter is used, DescribeExportTasks only returns maxResults results in a single page along with a nextToken response element.

    Declaration

    Swift

    public let maxResults: Int?
  • The nextToken value returned from a previous paginated DescribeExportTasks request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(exportIds: [String]? = nil, filters: [ExportFilter]? = nil, maxResults: Int? = nil, nextToken: String? = nil)