Class: Aws::MediaConnect::Types::ListOfferingsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb

Overview

The result of a successful ListOfferings request. The response includes the details of each offering that your account is eligible for. The response includes the following information for each offering: description, duration, outbound bandwidth, price, Amazon Resource Name (ARN), and the NextToken to use in a subsequent ListOfferings request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

The token that identifies which batch of results that you want to see. For example, you submit a ListOfferings request with MaxResults set at 5. The service returns the first batch of results (up to 5) and a NextToken value. To see the next batch of results, you can submit the ListOfferings request a second time and specify the NextToken value.

Returns:

  • (String)


2505
2506
2507
2508
2509
2510
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2505

class ListOfferingsResponse < Struct.new(
  :next_token,
  :offerings)
  SENSITIVE = []
  include Aws::Structure
end

#offeringsArray<Types::Offering>

A list of offerings that are available to this account in the current AWS Region.

Returns:



2505
2506
2507
2508
2509
2510
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 2505

class ListOfferingsResponse < Struct.new(
  :next_token,
  :offerings)
  SENSITIVE = []
  include Aws::Structure
end