Class: Aws::Athena::Types::CapacityAssignmentConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::CapacityAssignmentConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
Assigns Athena workgroups (and hence their queries) to capacity reservations. A capacity reservation can have only one capacity assignment configuration, but the capacity assignment configuration can be made up of multiple individual assignments. Each assignment specifies how Athena queries can consume capacity from the capacity reservation that their workgroup is mapped to.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#capacity_assignments ⇒ Array<Types::CapacityAssignment>
The list of assignments that make up the capacity assignment configuration.
-
#capacity_reservation_name ⇒ String
The name of the reservation that the capacity assignment configuration is for.
Instance Attribute Details
#capacity_assignments ⇒ Array<Types::CapacityAssignment>
The list of assignments that make up the capacity assignment configuration.
427 428 429 430 431 432 |
# File 'lib/aws-sdk-athena/types.rb', line 427 class CapacityAssignmentConfiguration < Struct.new( :capacity_reservation_name, :capacity_assignments) SENSITIVE = [] include Aws::Structure end |
#capacity_reservation_name ⇒ String
The name of the reservation that the capacity assignment configuration is for.
427 428 429 430 431 432 |
# File 'lib/aws-sdk-athena/types.rb', line 427 class CapacityAssignmentConfiguration < Struct.new( :capacity_reservation_name, :capacity_assignments) SENSITIVE = [] include Aws::Structure end |