Class: Aws::Pricing::Types::DescribeServicesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pricing/types.rb

Overview

Note:

When making an API call, you may pass DescribeServicesRequest data as a hash:

{
  service_code: "String",
  format_version: "String",
  next_token: "String",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#format_versionString

The format version that you want the response to be in.

Valid values are: ‘aws_v1`

Returns:

  • (String)


60
61
62
63
64
65
66
# File 'lib/aws-sdk-pricing/types.rb', line 60

class DescribeServicesRequest < Struct.new(
  :service_code,
  :format_version,
  :next_token,
  :max_results)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of results that you want returned in the response.

Returns:

  • (Integer)


60
61
62
63
64
65
66
# File 'lib/aws-sdk-pricing/types.rb', line 60

class DescribeServicesRequest < Struct.new(
  :service_code,
  :format_version,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

The pagination token that indicates the next set of results that you want to retrieve.

Returns:

  • (String)


60
61
62
63
64
65
66
# File 'lib/aws-sdk-pricing/types.rb', line 60

class DescribeServicesRequest < Struct.new(
  :service_code,
  :format_version,
  :next_token,
  :max_results)
  include Aws::Structure
end

#service_codeString

The code for the service whose information you want to retrieve, such as ‘AmazonEC2`. You can use the `ServiceCode` to filter the results in a `GetProducts` call. To retrieve a list of all services, leave this blank.

Returns:

  • (String)


60
61
62
63
64
65
66
# File 'lib/aws-sdk-pricing/types.rb', line 60

class DescribeServicesRequest < Struct.new(
  :service_code,
  :format_version,
  :next_token,
  :max_results)
  include Aws::Structure
end