Show / Hide Table of Contents

Interface CfnContainerFleet.ILogConfigurationProperty

A method for collecting container logs for the fleet.

Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnContainerFleet.ILogConfigurationProperty
Syntax (vb)
Public Interface CfnContainerFleet.ILogConfigurationProperty
Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.GameLift;

             var logConfigurationProperty = new LogConfigurationProperty {
                 LogDestination = "logDestination",
                 LogGroupArn = "logGroupArn",
                 S3BucketName = "s3BucketName"
             };

Synopsis

Properties

LogDestination

The type of log collection to use for a fleet.

LogGroupArn

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

S3BucketName

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

Properties

LogDestination

The type of log collection to use for a fleet.

string? LogDestination { get; }
Property Value

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logconfiguration.html#cfn-gamelift-containerfleet-logconfiguration-logdestination

    LogGroupArn

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

    string? LogGroupArn { get; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logconfiguration.html#cfn-gamelift-containerfleet-logconfiguration-loggrouparn

    S3BucketName

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

    string? S3BucketName { get; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logconfiguration.html#cfn-gamelift-containerfleet-logconfiguration-s3bucketname

    Back to top Generated by DocFX