Class: Aws::MediaConnect::Types::PurchaseOfferingRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::PurchaseOfferingRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
Submits a request to purchase an offering, which creates a reservation in your AWS account. If you already have an active reservation, you can’t purchase another offering.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #offering_arn ⇒ String
-
#reservation_name ⇒ String
The name that you want to use for the reservation.
-
#start ⇒ String
The date and time that you want the reservation to begin, in Coordinated Universal Time (UTC).
Instance Attribute Details
#offering_arn ⇒ String
3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 3293 class PurchaseOfferingRequest < Struct.new( :offering_arn, :reservation_name, :start) SENSITIVE = [] include Aws::Structure end |
#reservation_name ⇒ String
The name that you want to use for the reservation.
3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 3293 class PurchaseOfferingRequest < Struct.new( :offering_arn, :reservation_name, :start) SENSITIVE = [] include Aws::Structure end |
#start ⇒ String
The date and time that you want the reservation to begin, in Coordinated Universal Time (UTC). You can specify any date and time between 12:00am on the first day of the current month to the current time on today’s date, inclusive. Specify the start in a 24-hour notation. Use the following format: YYYY-MM-DDTHH:mm:SSZ, where T and Z are literal characters. For example, to specify 11:30pm on March 5, 2020, enter 2020-03-05T23:30:00Z.
3293 3294 3295 3296 3297 3298 3299 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 3293 class PurchaseOfferingRequest < Struct.new( :offering_arn, :reservation_name, :start) SENSITIVE = [] include Aws::Structure end |