aws-sdk-medialive 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2787,6 +2787,101 @@ module Aws::MediaLive
2787
2787
  #
2788
2788
  class DeleteInputSecurityGroupResponse < Aws::EmptyStructure; end
2789
2789
 
2790
+ # @note When making an API call, you may pass DeleteReservationRequest
2791
+ # data as a hash:
2792
+ #
2793
+ # {
2794
+ # reservation_id: "__string", # required
2795
+ # }
2796
+ #
2797
+ # @!attribute [rw] reservation_id
2798
+ # @return [String]
2799
+ #
2800
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteReservationRequest AWS API Documentation
2801
+ #
2802
+ class DeleteReservationRequest < Struct.new(
2803
+ :reservation_id)
2804
+ include Aws::Structure
2805
+ end
2806
+
2807
+ # @!attribute [rw] arn
2808
+ # @return [String]
2809
+ #
2810
+ # @!attribute [rw] count
2811
+ # @return [Integer]
2812
+ #
2813
+ # @!attribute [rw] currency_code
2814
+ # @return [String]
2815
+ #
2816
+ # @!attribute [rw] duration
2817
+ # @return [Integer]
2818
+ #
2819
+ # @!attribute [rw] duration_units
2820
+ # Units for duration, e.g. 'MONTHS'
2821
+ # @return [String]
2822
+ #
2823
+ # @!attribute [rw] end
2824
+ # @return [String]
2825
+ #
2826
+ # @!attribute [rw] fixed_price
2827
+ # @return [Float]
2828
+ #
2829
+ # @!attribute [rw] name
2830
+ # @return [String]
2831
+ #
2832
+ # @!attribute [rw] offering_description
2833
+ # @return [String]
2834
+ #
2835
+ # @!attribute [rw] offering_id
2836
+ # @return [String]
2837
+ #
2838
+ # @!attribute [rw] offering_type
2839
+ # Offering type, e.g. 'NO\_UPFRONT'
2840
+ # @return [String]
2841
+ #
2842
+ # @!attribute [rw] region
2843
+ # @return [String]
2844
+ #
2845
+ # @!attribute [rw] reservation_id
2846
+ # @return [String]
2847
+ #
2848
+ # @!attribute [rw] resource_specification
2849
+ # Resource configuration (codec, resolution, bitrate, ...)
2850
+ # @return [Types::ReservationResourceSpecification]
2851
+ #
2852
+ # @!attribute [rw] start
2853
+ # @return [String]
2854
+ #
2855
+ # @!attribute [rw] state
2856
+ # Current reservation state
2857
+ # @return [String]
2858
+ #
2859
+ # @!attribute [rw] usage_price
2860
+ # @return [Float]
2861
+ #
2862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteReservationResponse AWS API Documentation
2863
+ #
2864
+ class DeleteReservationResponse < Struct.new(
2865
+ :arn,
2866
+ :count,
2867
+ :currency_code,
2868
+ :duration,
2869
+ :duration_units,
2870
+ :end,
2871
+ :fixed_price,
2872
+ :name,
2873
+ :offering_description,
2874
+ :offering_id,
2875
+ :offering_type,
2876
+ :region,
2877
+ :reservation_id,
2878
+ :resource_specification,
2879
+ :start,
2880
+ :state,
2881
+ :usage_price)
2882
+ include Aws::Structure
2883
+ end
2884
+
2790
2885
  # @note When making an API call, you may pass DescribeChannelRequest
2791
2886
  # data as a hash:
2792
2887
  #
@@ -2960,6 +3055,171 @@ module Aws::MediaLive
2960
3055
  include Aws::Structure
2961
3056
  end
2962
3057
 
3058
+ # @note When making an API call, you may pass DescribeOfferingRequest
3059
+ # data as a hash:
3060
+ #
3061
+ # {
3062
+ # offering_id: "__string", # required
3063
+ # }
3064
+ #
3065
+ # @!attribute [rw] offering_id
3066
+ # @return [String]
3067
+ #
3068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeOfferingRequest AWS API Documentation
3069
+ #
3070
+ class DescribeOfferingRequest < Struct.new(
3071
+ :offering_id)
3072
+ include Aws::Structure
3073
+ end
3074
+
3075
+ # @!attribute [rw] arn
3076
+ # @return [String]
3077
+ #
3078
+ # @!attribute [rw] currency_code
3079
+ # @return [String]
3080
+ #
3081
+ # @!attribute [rw] duration
3082
+ # @return [Integer]
3083
+ #
3084
+ # @!attribute [rw] duration_units
3085
+ # Units for duration, e.g. 'MONTHS'
3086
+ # @return [String]
3087
+ #
3088
+ # @!attribute [rw] fixed_price
3089
+ # @return [Float]
3090
+ #
3091
+ # @!attribute [rw] offering_description
3092
+ # @return [String]
3093
+ #
3094
+ # @!attribute [rw] offering_id
3095
+ # @return [String]
3096
+ #
3097
+ # @!attribute [rw] offering_type
3098
+ # Offering type, e.g. 'NO\_UPFRONT'
3099
+ # @return [String]
3100
+ #
3101
+ # @!attribute [rw] region
3102
+ # @return [String]
3103
+ #
3104
+ # @!attribute [rw] resource_specification
3105
+ # Resource configuration (codec, resolution, bitrate, ...)
3106
+ # @return [Types::ReservationResourceSpecification]
3107
+ #
3108
+ # @!attribute [rw] usage_price
3109
+ # @return [Float]
3110
+ #
3111
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeOfferingResponse AWS API Documentation
3112
+ #
3113
+ class DescribeOfferingResponse < Struct.new(
3114
+ :arn,
3115
+ :currency_code,
3116
+ :duration,
3117
+ :duration_units,
3118
+ :fixed_price,
3119
+ :offering_description,
3120
+ :offering_id,
3121
+ :offering_type,
3122
+ :region,
3123
+ :resource_specification,
3124
+ :usage_price)
3125
+ include Aws::Structure
3126
+ end
3127
+
3128
+ # @note When making an API call, you may pass DescribeReservationRequest
3129
+ # data as a hash:
3130
+ #
3131
+ # {
3132
+ # reservation_id: "__string", # required
3133
+ # }
3134
+ #
3135
+ # @!attribute [rw] reservation_id
3136
+ # @return [String]
3137
+ #
3138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeReservationRequest AWS API Documentation
3139
+ #
3140
+ class DescribeReservationRequest < Struct.new(
3141
+ :reservation_id)
3142
+ include Aws::Structure
3143
+ end
3144
+
3145
+ # @!attribute [rw] arn
3146
+ # @return [String]
3147
+ #
3148
+ # @!attribute [rw] count
3149
+ # @return [Integer]
3150
+ #
3151
+ # @!attribute [rw] currency_code
3152
+ # @return [String]
3153
+ #
3154
+ # @!attribute [rw] duration
3155
+ # @return [Integer]
3156
+ #
3157
+ # @!attribute [rw] duration_units
3158
+ # Units for duration, e.g. 'MONTHS'
3159
+ # @return [String]
3160
+ #
3161
+ # @!attribute [rw] end
3162
+ # @return [String]
3163
+ #
3164
+ # @!attribute [rw] fixed_price
3165
+ # @return [Float]
3166
+ #
3167
+ # @!attribute [rw] name
3168
+ # @return [String]
3169
+ #
3170
+ # @!attribute [rw] offering_description
3171
+ # @return [String]
3172
+ #
3173
+ # @!attribute [rw] offering_id
3174
+ # @return [String]
3175
+ #
3176
+ # @!attribute [rw] offering_type
3177
+ # Offering type, e.g. 'NO\_UPFRONT'
3178
+ # @return [String]
3179
+ #
3180
+ # @!attribute [rw] region
3181
+ # @return [String]
3182
+ #
3183
+ # @!attribute [rw] reservation_id
3184
+ # @return [String]
3185
+ #
3186
+ # @!attribute [rw] resource_specification
3187
+ # Resource configuration (codec, resolution, bitrate, ...)
3188
+ # @return [Types::ReservationResourceSpecification]
3189
+ #
3190
+ # @!attribute [rw] start
3191
+ # @return [String]
3192
+ #
3193
+ # @!attribute [rw] state
3194
+ # Current reservation state
3195
+ # @return [String]
3196
+ #
3197
+ # @!attribute [rw] usage_price
3198
+ # @return [Float]
3199
+ #
3200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeReservationResponse AWS API Documentation
3201
+ #
3202
+ class DescribeReservationResponse < Struct.new(
3203
+ :arn,
3204
+ :count,
3205
+ :currency_code,
3206
+ :duration,
3207
+ :duration_units,
3208
+ :end,
3209
+ :fixed_price,
3210
+ :name,
3211
+ :offering_description,
3212
+ :offering_id,
3213
+ :offering_type,
3214
+ :region,
3215
+ :reservation_id,
3216
+ :resource_specification,
3217
+ :start,
3218
+ :state,
3219
+ :usage_price)
3220
+ include Aws::Structure
3221
+ end
3222
+
2963
3223
  # DVB Network Information Table (NIT)
2964
3224
  #
2965
3225
  # @note When making an API call, you may pass DvbNitSettings
@@ -6041,6 +6301,189 @@ module Aws::MediaLive
6041
6301
  include Aws::Structure
6042
6302
  end
6043
6303
 
6304
+ # @note When making an API call, you may pass ListOfferingsRequest
6305
+ # data as a hash:
6306
+ #
6307
+ # {
6308
+ # channel_configuration: "__string",
6309
+ # codec: "__string",
6310
+ # max_results: 1,
6311
+ # maximum_bitrate: "__string",
6312
+ # maximum_framerate: "__string",
6313
+ # next_token: "__string",
6314
+ # resolution: "__string",
6315
+ # resource_type: "__string",
6316
+ # special_feature: "__string",
6317
+ # video_quality: "__string",
6318
+ # }
6319
+ #
6320
+ # @!attribute [rw] channel_configuration
6321
+ # @return [String]
6322
+ #
6323
+ # @!attribute [rw] codec
6324
+ # @return [String]
6325
+ #
6326
+ # @!attribute [rw] max_results
6327
+ # @return [Integer]
6328
+ #
6329
+ # @!attribute [rw] maximum_bitrate
6330
+ # @return [String]
6331
+ #
6332
+ # @!attribute [rw] maximum_framerate
6333
+ # @return [String]
6334
+ #
6335
+ # @!attribute [rw] next_token
6336
+ # @return [String]
6337
+ #
6338
+ # @!attribute [rw] resolution
6339
+ # @return [String]
6340
+ #
6341
+ # @!attribute [rw] resource_type
6342
+ # @return [String]
6343
+ #
6344
+ # @!attribute [rw] special_feature
6345
+ # @return [String]
6346
+ #
6347
+ # @!attribute [rw] video_quality
6348
+ # @return [String]
6349
+ #
6350
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListOfferingsRequest AWS API Documentation
6351
+ #
6352
+ class ListOfferingsRequest < Struct.new(
6353
+ :channel_configuration,
6354
+ :codec,
6355
+ :max_results,
6356
+ :maximum_bitrate,
6357
+ :maximum_framerate,
6358
+ :next_token,
6359
+ :resolution,
6360
+ :resource_type,
6361
+ :special_feature,
6362
+ :video_quality)
6363
+ include Aws::Structure
6364
+ end
6365
+
6366
+ # @!attribute [rw] next_token
6367
+ # @return [String]
6368
+ #
6369
+ # @!attribute [rw] offerings
6370
+ # @return [Array<Types::Offering>]
6371
+ #
6372
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListOfferingsResponse AWS API Documentation
6373
+ #
6374
+ class ListOfferingsResponse < Struct.new(
6375
+ :next_token,
6376
+ :offerings)
6377
+ include Aws::Structure
6378
+ end
6379
+
6380
+ # ListOfferings response
6381
+ #
6382
+ # @!attribute [rw] next_token
6383
+ # Token to retrieve the next page of results
6384
+ # @return [String]
6385
+ #
6386
+ # @!attribute [rw] offerings
6387
+ # List of offerings
6388
+ # @return [Array<Types::Offering>]
6389
+ #
6390
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListOfferingsResultModel AWS API Documentation
6391
+ #
6392
+ class ListOfferingsResultModel < Struct.new(
6393
+ :next_token,
6394
+ :offerings)
6395
+ include Aws::Structure
6396
+ end
6397
+
6398
+ # @note When making an API call, you may pass ListReservationsRequest
6399
+ # data as a hash:
6400
+ #
6401
+ # {
6402
+ # codec: "__string",
6403
+ # max_results: 1,
6404
+ # maximum_bitrate: "__string",
6405
+ # maximum_framerate: "__string",
6406
+ # next_token: "__string",
6407
+ # resolution: "__string",
6408
+ # resource_type: "__string",
6409
+ # special_feature: "__string",
6410
+ # video_quality: "__string",
6411
+ # }
6412
+ #
6413
+ # @!attribute [rw] codec
6414
+ # @return [String]
6415
+ #
6416
+ # @!attribute [rw] max_results
6417
+ # @return [Integer]
6418
+ #
6419
+ # @!attribute [rw] maximum_bitrate
6420
+ # @return [String]
6421
+ #
6422
+ # @!attribute [rw] maximum_framerate
6423
+ # @return [String]
6424
+ #
6425
+ # @!attribute [rw] next_token
6426
+ # @return [String]
6427
+ #
6428
+ # @!attribute [rw] resolution
6429
+ # @return [String]
6430
+ #
6431
+ # @!attribute [rw] resource_type
6432
+ # @return [String]
6433
+ #
6434
+ # @!attribute [rw] special_feature
6435
+ # @return [String]
6436
+ #
6437
+ # @!attribute [rw] video_quality
6438
+ # @return [String]
6439
+ #
6440
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListReservationsRequest AWS API Documentation
6441
+ #
6442
+ class ListReservationsRequest < Struct.new(
6443
+ :codec,
6444
+ :max_results,
6445
+ :maximum_bitrate,
6446
+ :maximum_framerate,
6447
+ :next_token,
6448
+ :resolution,
6449
+ :resource_type,
6450
+ :special_feature,
6451
+ :video_quality)
6452
+ include Aws::Structure
6453
+ end
6454
+
6455
+ # @!attribute [rw] next_token
6456
+ # @return [String]
6457
+ #
6458
+ # @!attribute [rw] reservations
6459
+ # @return [Array<Types::Reservation>]
6460
+ #
6461
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListReservationsResponse AWS API Documentation
6462
+ #
6463
+ class ListReservationsResponse < Struct.new(
6464
+ :next_token,
6465
+ :reservations)
6466
+ include Aws::Structure
6467
+ end
6468
+
6469
+ # ListReservations response
6470
+ #
6471
+ # @!attribute [rw] next_token
6472
+ # Token to retrieve the next page of results
6473
+ # @return [String]
6474
+ #
6475
+ # @!attribute [rw] reservations
6476
+ # List of reservations
6477
+ # @return [Array<Types::Reservation>]
6478
+ #
6479
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListReservationsResultModel AWS API Documentation
6480
+ #
6481
+ class ListReservationsResultModel < Struct.new(
6482
+ :next_token,
6483
+ :reservations)
6484
+ include Aws::Structure
6485
+ end
6486
+
6044
6487
  # @note When making an API call, you may pass M2tsSettings
6045
6488
  # data as a hash:
6046
6489
  #
@@ -6825,6 +7268,73 @@ module Aws::MediaLive
6825
7268
  include Aws::Structure
6826
7269
  end
6827
7270
 
7271
+ # Reserved resources available for purchase
7272
+ #
7273
+ # @!attribute [rw] arn
7274
+ # Unique offering ARN, e.g.
7275
+ # 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'
7276
+ # @return [String]
7277
+ #
7278
+ # @!attribute [rw] currency_code
7279
+ # Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g.
7280
+ # 'USD'
7281
+ # @return [String]
7282
+ #
7283
+ # @!attribute [rw] duration
7284
+ # Lease duration, e.g. '12'
7285
+ # @return [Integer]
7286
+ #
7287
+ # @!attribute [rw] duration_units
7288
+ # Units for duration, e.g. 'MONTHS'
7289
+ # @return [String]
7290
+ #
7291
+ # @!attribute [rw] fixed_price
7292
+ # One-time charge for each reserved resource, e.g. '0.0' for a
7293
+ # NO\_UPFRONT offering
7294
+ # @return [Float]
7295
+ #
7296
+ # @!attribute [rw] offering_description
7297
+ # Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps,
7298
+ # and standard VQ in US West (Oregon)'
7299
+ # @return [String]
7300
+ #
7301
+ # @!attribute [rw] offering_id
7302
+ # Unique offering ID, e.g. '87654321'
7303
+ # @return [String]
7304
+ #
7305
+ # @!attribute [rw] offering_type
7306
+ # Offering type, e.g. 'NO\_UPFRONT'
7307
+ # @return [String]
7308
+ #
7309
+ # @!attribute [rw] region
7310
+ # AWS region, e.g. 'us-west-2'
7311
+ # @return [String]
7312
+ #
7313
+ # @!attribute [rw] resource_specification
7314
+ # Resource configuration details
7315
+ # @return [Types::ReservationResourceSpecification]
7316
+ #
7317
+ # @!attribute [rw] usage_price
7318
+ # Recurring usage charge for each reserved resource, e.g. '157.0'
7319
+ # @return [Float]
7320
+ #
7321
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Offering AWS API Documentation
7322
+ #
7323
+ class Offering < Struct.new(
7324
+ :arn,
7325
+ :currency_code,
7326
+ :duration,
7327
+ :duration_units,
7328
+ :fixed_price,
7329
+ :offering_description,
7330
+ :offering_id,
7331
+ :offering_type,
7332
+ :region,
7333
+ :resource_specification,
7334
+ :usage_price)
7335
+ include Aws::Structure
7336
+ end
7337
+
6828
7338
  # Output settings. There can be multiple outputs within a group.
6829
7339
  #
6830
7340
  # @note When making an API call, you may pass Output
@@ -7874,6 +8384,88 @@ module Aws::MediaLive
7874
8384
  #
7875
8385
  class PassThroughSettings < Aws::EmptyStructure; end
7876
8386
 
8387
+ # PurchaseOffering request
8388
+ #
8389
+ # @!attribute [rw] count
8390
+ # Number of resources
8391
+ # @return [Integer]
8392
+ #
8393
+ # @!attribute [rw] name
8394
+ # Name for the new reservation
8395
+ # @return [String]
8396
+ #
8397
+ # @!attribute [rw] request_id
8398
+ # Unique request ID to be specified. This is needed to prevent retries from creating multiple resources.**A suitable default value is auto-generated.** You should normally
8399
+ # not need to pass this option.
8400
+ # @return [String]
8401
+ #
8402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PurchaseOffering AWS API Documentation
8403
+ #
8404
+ class PurchaseOffering < Struct.new(
8405
+ :count,
8406
+ :name,
8407
+ :request_id)
8408
+ include Aws::Structure
8409
+ end
8410
+
8411
+ # @note When making an API call, you may pass PurchaseOfferingRequest
8412
+ # data as a hash:
8413
+ #
8414
+ # {
8415
+ # count: 1,
8416
+ # name: "__string",
8417
+ # offering_id: "__string", # required
8418
+ # request_id: "__string",
8419
+ # }
8420
+ #
8421
+ # @!attribute [rw] count
8422
+ # @return [Integer]
8423
+ #
8424
+ # @!attribute [rw] name
8425
+ # @return [String]
8426
+ #
8427
+ # @!attribute [rw] offering_id
8428
+ # @return [String]
8429
+ #
8430
+ # @!attribute [rw] request_id
8431
+ # **A suitable default value is auto-generated.** You should normally
8432
+ # not need to pass this option.
8433
+ # @return [String]
8434
+ #
8435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PurchaseOfferingRequest AWS API Documentation
8436
+ #
8437
+ class PurchaseOfferingRequest < Struct.new(
8438
+ :count,
8439
+ :name,
8440
+ :offering_id,
8441
+ :request_id)
8442
+ include Aws::Structure
8443
+ end
8444
+
8445
+ # @!attribute [rw] reservation
8446
+ # Reserved resources available to use
8447
+ # @return [Types::Reservation]
8448
+ #
8449
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PurchaseOfferingResponse AWS API Documentation
8450
+ #
8451
+ class PurchaseOfferingResponse < Struct.new(
8452
+ :reservation)
8453
+ include Aws::Structure
8454
+ end
8455
+
8456
+ # PurchaseOffering response
8457
+ #
8458
+ # @!attribute [rw] reservation
8459
+ # Reserved resources available to use
8460
+ # @return [Types::Reservation]
8461
+ #
8462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/PurchaseOfferingResultModel AWS API Documentation
8463
+ #
8464
+ class PurchaseOfferingResultModel < Struct.new(
8465
+ :reservation)
8466
+ include Aws::Structure
8467
+ end
8468
+
7877
8469
  # @note When making an API call, you may pass RemixSettings
7878
8470
  # data as a hash:
7879
8471
  #
@@ -7916,6 +8508,148 @@ module Aws::MediaLive
7916
8508
  include Aws::Structure
7917
8509
  end
7918
8510
 
8511
+ # Reserved resources available to use
8512
+ #
8513
+ # @!attribute [rw] arn
8514
+ # Unique reservation ARN, e.g.
8515
+ # 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
8516
+ # @return [String]
8517
+ #
8518
+ # @!attribute [rw] count
8519
+ # Number of reserved resources
8520
+ # @return [Integer]
8521
+ #
8522
+ # @!attribute [rw] currency_code
8523
+ # Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g.
8524
+ # 'USD'
8525
+ # @return [String]
8526
+ #
8527
+ # @!attribute [rw] duration
8528
+ # Lease duration, e.g. '12'
8529
+ # @return [Integer]
8530
+ #
8531
+ # @!attribute [rw] duration_units
8532
+ # Units for duration, e.g. 'MONTHS'
8533
+ # @return [String]
8534
+ #
8535
+ # @!attribute [rw] end
8536
+ # Reservation UTC end date and time in ISO-8601 format, e.g.
8537
+ # '2019-03-01T00:00:00'
8538
+ # @return [String]
8539
+ #
8540
+ # @!attribute [rw] fixed_price
8541
+ # One-time charge for each reserved resource, e.g. '0.0' for a
8542
+ # NO\_UPFRONT offering
8543
+ # @return [Float]
8544
+ #
8545
+ # @!attribute [rw] name
8546
+ # User specified reservation name
8547
+ # @return [String]
8548
+ #
8549
+ # @!attribute [rw] offering_description
8550
+ # Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps,
8551
+ # and standard VQ in US West (Oregon)'
8552
+ # @return [String]
8553
+ #
8554
+ # @!attribute [rw] offering_id
8555
+ # Unique offering ID, e.g. '87654321'
8556
+ # @return [String]
8557
+ #
8558
+ # @!attribute [rw] offering_type
8559
+ # Offering type, e.g. 'NO\_UPFRONT'
8560
+ # @return [String]
8561
+ #
8562
+ # @!attribute [rw] region
8563
+ # AWS region, e.g. 'us-west-2'
8564
+ # @return [String]
8565
+ #
8566
+ # @!attribute [rw] reservation_id
8567
+ # Unique reservation ID, e.g. '1234567'
8568
+ # @return [String]
8569
+ #
8570
+ # @!attribute [rw] resource_specification
8571
+ # Resource configuration details
8572
+ # @return [Types::ReservationResourceSpecification]
8573
+ #
8574
+ # @!attribute [rw] start
8575
+ # Reservation UTC start date and time in ISO-8601 format, e.g.
8576
+ # '2018-03-01T00:00:00'
8577
+ # @return [String]
8578
+ #
8579
+ # @!attribute [rw] state
8580
+ # Current state of reservation, e.g. 'ACTIVE'
8581
+ # @return [String]
8582
+ #
8583
+ # @!attribute [rw] usage_price
8584
+ # Recurring usage charge for each reserved resource, e.g. '157.0'
8585
+ # @return [Float]
8586
+ #
8587
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Reservation AWS API Documentation
8588
+ #
8589
+ class Reservation < Struct.new(
8590
+ :arn,
8591
+ :count,
8592
+ :currency_code,
8593
+ :duration,
8594
+ :duration_units,
8595
+ :end,
8596
+ :fixed_price,
8597
+ :name,
8598
+ :offering_description,
8599
+ :offering_id,
8600
+ :offering_type,
8601
+ :region,
8602
+ :reservation_id,
8603
+ :resource_specification,
8604
+ :start,
8605
+ :state,
8606
+ :usage_price)
8607
+ include Aws::Structure
8608
+ end
8609
+
8610
+ # Resource configuration (codec, resolution, bitrate, ...)
8611
+ #
8612
+ # @!attribute [rw] codec
8613
+ # Codec, e.g. 'AVC'
8614
+ # @return [String]
8615
+ #
8616
+ # @!attribute [rw] maximum_bitrate
8617
+ # Maximum bitrate, e.g. 'MAX\_20\_MBPS'
8618
+ # @return [String]
8619
+ #
8620
+ # @!attribute [rw] maximum_framerate
8621
+ # Maximum framerate, e.g. 'MAX\_30\_FPS' (Outputs only)
8622
+ # @return [String]
8623
+ #
8624
+ # @!attribute [rw] resolution
8625
+ # Resolution, e.g. 'HD'
8626
+ # @return [String]
8627
+ #
8628
+ # @!attribute [rw] resource_type
8629
+ # Resource type, 'INPUT', 'OUTPUT', or 'CHANNEL'
8630
+ # @return [String]
8631
+ #
8632
+ # @!attribute [rw] special_feature
8633
+ # Special feature, e.g. 'AUDIO\_NORMALIZATION' (Channels only)
8634
+ # @return [String]
8635
+ #
8636
+ # @!attribute [rw] video_quality
8637
+ # Video quality, e.g. 'STANDARD' (Outputs only)
8638
+ # @return [String]
8639
+ #
8640
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ReservationResourceSpecification AWS API Documentation
8641
+ #
8642
+ class ReservationResourceSpecification < Struct.new(
8643
+ :codec,
8644
+ :maximum_bitrate,
8645
+ :maximum_framerate,
8646
+ :resolution,
8647
+ :resource_type,
8648
+ :special_feature,
8649
+ :video_quality)
8650
+ include Aws::Structure
8651
+ end
8652
+
7919
8653
  # @!attribute [rw] message
7920
8654
  # @return [String]
7921
8655
  #