Show / Hide Table of Contents

Class CfnContainerFleet.LogConfigurationProperty

A method for collecting container logs for the fleet.

Inheritance
object
CfnContainerFleet.LogConfigurationProperty
Implements
CfnContainerFleet.ILogConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.GameLift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnContainerFleet.LogConfigurationProperty : CfnContainerFleet.ILogConfigurationProperty
Syntax (vb)
Public Class CfnContainerFleet.LogConfigurationProperty Implements 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

Constructors

LogConfigurationProperty()

A method for collecting container logs for the fleet.

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.

Constructors

LogConfigurationProperty()

A method for collecting container logs for the fleet.

public LogConfigurationProperty()
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"
             };

Properties

LogDestination

The type of log collection to use for a fleet.

public string? LogDestination { get; set; }
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.

    public string? LogGroupArn { get; set; }
    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.

    public string? S3BucketName { get; set; }
    Property Value

    string

    Remarks

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

    Implements

    CfnContainerFleet.ILogConfigurationProperty
    Back to top Generated by DocFX