ListConfigurationsRequest

public struct ListConfigurationsRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A valid configuration identified by Application Discovery Service.

    Declaration

    Swift

    public let configurationType: ConfigurationItemType
  • You can filter the request using various logical operators and a key-value format. For example: {“key”: “serverType”, “value”: “webServer”} For a complete list of filter options and guidance about using them with this action, see Using the ListConfigurations Action in the AWS Application Discovery Service User Guide.

    Declaration

    Swift

    public let filters: [Filter]?
  • The total number of items to return. The maximum value is 100.

    Declaration

    Swift

    public let maxResults: Int?
  • Token to retrieve the next set of results. For example, if a previous call to ListConfigurations returned 100 items, but you set ListConfigurationsRequest$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?
  • Certain filter criteria return output that can be sorted in ascending or descending order. For a list of output characteristics for each filter, see Using the ListConfigurations Action in the AWS Application Discovery Service User Guide.

    Declaration

    Swift

    public let orderBy: [OrderByElement]?
  • Undocumented

    Declaration

    Swift

    public init(configurationType: ConfigurationItemType, filters: [Filter]? = nil, maxResults: Int? = nil, nextToken: String? = nil, orderBy: [OrderByElement]? = nil)