Class: Aws::GameLift::Types::LogConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb

Overview

A method for collecting container logs for the fleet. Amazon GameLift saves all standard output for each container in logs, including game session logs. You can select from the following methods:

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#log_destinationString

The type of log collection to use for a fleet.

  • CLOUDWATCH -- (default value) 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.

Returns:

  • (String)


8439
8440
8441
8442
8443
8444
8445
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8439

class LogConfiguration < Struct.new(
  :log_destination,
  :s3_bucket_name,
  :log_group_arn)
  SENSITIVE = []
  include Aws::Structure
end

#log_group_arnString

If log destination is CLOUDWATCH, logs are sent to the specified log group in Amazon CloudWatch.

Returns:

  • (String)


8439
8440
8441
8442
8443
8444
8445
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8439

class LogConfiguration < Struct.new(
  :log_destination,
  :s3_bucket_name,
  :log_group_arn)
  SENSITIVE = []
  include Aws::Structure
end

#s3_bucket_nameString

If log destination is S3, logs are sent to the specified Amazon S3 bucket name.

Returns:

  • (String)


8439
8440
8441
8442
8443
8444
8445
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 8439

class LogConfiguration < Struct.new(
  :log_destination,
  :s3_bucket_name,
  :log_group_arn)
  SENSITIVE = []
  include Aws::Structure
end