Method: Aws::GameLift::Types::ContainerFleet#game_server_container_group_definition_name
- Defined in:
- lib/aws-sdk-gamelift/types.rb
#game_server_container_group_definition_name ⇒ String
The name of the fleet’s game server container group definition, which describes how to deploy containers with your game server build and support software onto each fleet instance.
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 |
# File 'lib/aws-sdk-gamelift/types.rb', line 876 class ContainerFleet < Struct.new( :fleet_id, :fleet_arn, :fleet_role_arn, :game_server_container_group_definition_name, :game_server_container_group_definition_arn, :per_instance_container_group_definition_name, :per_instance_container_group_definition_arn, :instance_connection_port_range, :instance_inbound_permissions, :game_server_container_groups_per_instance, :maximum_game_server_container_groups_per_instance, :instance_type, :billing_type, :description, :creation_time, :metric_groups, :new_game_session_protection_policy, :game_session_creation_limit_policy, :status, :deployment_details, :log_configuration, :location_attributes) SENSITIVE = [] include Aws::Structure end |