Class: Aws::RedshiftServerless::Types::CreateReservationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::RedshiftServerless::Types::CreateReservationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-redshiftserverless/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capacity ⇒ Integer
The number of Redshift Processing Units (RPUs) to reserve.
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#offering_id ⇒ String
The ID of the offering associated with the reservation.
Instance Attribute Details
#capacity ⇒ Integer
The number of Redshift Processing Units (RPUs) to reserve.
364 365 366 367 368 369 370 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 364 class CreateReservationRequest < Struct.new( :capacity, :client_token, :offering_id) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. This token must be a valid UUIDv4 value. For more information about idempotency, see [ Making retries safe with idempotent APIs ][1].
**A suitable default value is auto-generated.** You should normally not need to pass this option.
[1]: aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
364 365 366 367 368 369 370 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 364 class CreateReservationRequest < Struct.new( :capacity, :client_token, :offering_id) SENSITIVE = [] include Aws::Structure end |
#offering_id ⇒ String
The ID of the offering associated with the reservation. The offering determines the payment schedule for the reservation.
364 365 366 367 368 369 370 |
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 364 class CreateReservationRequest < Struct.new( :capacity, :client_token, :offering_id) SENSITIVE = [] include Aws::Structure end |