GetRecommendationSummariesRequest

public struct GetRecommendationSummariesRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The IDs of the AWS accounts for which to return recommendation summaries. If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to return recommendation summaries. Only one account ID can be specified per request.

    Declaration

    Swift

    public let accountIds: [String]?
  • The maximum number of recommendation summaries to return with a single request. To retrieve the remaining results, make another request with the returned NextToken value.

    Declaration

    Swift

    public let maxResults: Int?
  • The token to advance to the next page of recommendation summaries.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(accountIds: [String]? = nil, maxResults: Int? = nil, nextToken: String? = nil)