Method: Aws::GameLift::Types::ContainerFleet#log_configuration
- Defined in:
- lib/aws-sdk-gamelift/types.rb
#log_configuration ⇒ Types::LogConfiguration
The method that is used to collect container logs for the fleet. Amazon GameLift saves all standard output for each container in logs, including game session logs.
-
‘CLOUDWATCH` – Send logs to an Amazon CloudWatch log group that you define. Each container emits a log stream, which is organized in the log group.
-
‘S3` – Store logs in an Amazon S3 bucket that you define.
-
‘NONE` – Don’t collect container logs.
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 |