GetEC2InstanceRecommendationsRequest

public struct GetEC2InstanceRecommendationsRequest : AWSShape

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

    public let accountIds: [String]?
  • An array of objects that describe a filter that returns a more specific list of instance recommendations.

    Declaration

    Swift

    public let filters: [Filter]?
  • The Amazon Resource Name (ARN) of the instances for which to return recommendations.

    Declaration

    Swift

    public let instanceArns: [String]?
  • The maximum number of instance recommendations 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 instance recommendations.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

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