Class: Aws::Athena::Types::CapacityAssignmentConfiguration

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#capacity_assignmentsArray<Types::CapacityAssignment>

The list of assignments that make up the capacity assignment configuration.

Returns:



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_nameString

The name of the reservation that the capacity assignment configuration is for.

Returns:

  • (String)


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