DescribeAgentsRequest
public struct DescribeAgentsRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The agent or the Connector IDs for which you want information. If you specify no IDs, the system returns information about all agents/Connectors associated with your AWS user account.
Declaration
Swift
public let agentIds: [String]?
-
You can filter the request using various logical operators and a key-value format. For example: {“key”: “collectionStatus”, “value”: “STARTED”}
Declaration
Swift
public let filters: [Filter]?
-
The total number of agents/Connectors to return in a single page of output. The maximum value is 100.
Declaration
Swift
public let maxResults: Int?
-
Token to retrieve the next set of results. For example, if you previously specified 100 IDs for DescribeAgentsRequest$agentIds but set DescribeAgentsRequest$maxResults to 10, you received a set of 10 results along with a token. Use that token in this query to get the next set of 10.
Declaration
Swift
public let nextToken: String?
-
Undocumented
Declaration
Swift
public init(agentIds: [String]? = nil, filters: [Filter]? = nil, maxResults: Int? = nil, nextToken: String? = nil)