Method: Aws::GameLift::Types::UpdateContainerGroupDefinitionInput#total_vcpu_limit
- Defined in:
- lib/aws-sdk-gamelift/types.rb
#total_vcpu_limit ⇒ Float
The maximum amount of vCPU units to allocate to the container group (1 vCPU is equal to 1024 CPU units). All containers in the group share this memory. If you specify vCPU limits for individual containers, the total value must be equal to or greater than the sum of the CPU limits for all containers in the group.
11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 |
# File 'lib/aws-sdk-gamelift/types.rb', line 11701 class UpdateContainerGroupDefinitionInput < Struct.new( :name, :game_server_container_definition, :support_container_definitions, :total_memory_limit_mebibytes, :total_vcpu_limit, :version_description, :source_version_number, :operating_system) SENSITIVE = [] include Aws::Structure end |