Method: Aws::GameLift::Types::ContainerFleet#game_server_container_group_definition_arn
- Defined in:
- lib/aws-sdk-gamelift/types.rb
#game_server_container_group_definition_arn ⇒ String
The Amazon Resource Name ([ARN]) that is assigned to the fleet’s game server container group. The ARN value also identifies the specific container group definition version in use.
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/s3-arn-format.html
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 |