Method: Aws::GameLift::Types::UpdateContainerGroupDefinitionInput#operating_system
- Defined in:
- lib/aws-sdk-gamelift/types.rb
#operating_system ⇒ String
The platform that all containers in the group use. Containers in a group must run on the same operating system.
<note markdown=“1”> Amazon Linux 2 (AL2) will reach end of support on 6/30/2025. See more details in the [Amazon Linux 2 FAQs]. For game servers that are hosted on AL2 and use server SDK version 4.x for Amazon GameLift Servers, first update the game server build to server SDK 5.x, and then deploy to AL2023 instances. See [ Migrate to server SDK version 5.]
</note>
[1]: aws.amazon.com/amazon-linux-2/faqs/ [2]: docs.aws.amazon.com/gamelift/latest/developerguide/reference-serversdk5-migration.html
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 |