Show / Hide Table of Contents

Class CfnSessionLogger.LogConfigurationProperty

The configuration of the log.

Inheritance
object
CfnSessionLogger.LogConfigurationProperty
Implements
CfnSessionLogger.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.WorkSpacesWeb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSessionLogger.LogConfigurationProperty : CfnSessionLogger.ILogConfigurationProperty
Syntax (vb)
Public Class CfnSessionLogger.LogConfigurationProperty Implements CfnSessionLogger.ILogConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-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.WorkSpacesWeb;

             var logConfigurationProperty = new LogConfigurationProperty {
                 S3 = new S3LogConfigurationProperty {
                     Bucket = "bucket",
                     FolderStructure = "folderStructure",
                     LogFileFormat = "logFileFormat",

                     // the properties below are optional
                     BucketOwner = "bucketOwner",
                     KeyPrefix = "keyPrefix"
                 }
             };

Synopsis

Constructors

LogConfigurationProperty()

The configuration of the log.

Properties

S3

The configuration for delivering the logs to S3.

Constructors

LogConfigurationProperty()

The configuration of the log.

public LogConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-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.WorkSpacesWeb;

             var logConfigurationProperty = new LogConfigurationProperty {
                 S3 = new S3LogConfigurationProperty {
                     Bucket = "bucket",
                     FolderStructure = "folderStructure",
                     LogFileFormat = "logFileFormat",

                     // the properties below are optional
                     BucketOwner = "bucketOwner",
                     KeyPrefix = "keyPrefix"
                 }
             };

Properties

S3

The configuration for delivering the logs to S3.

public object? S3 { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-workspacesweb-sessionlogger-logconfiguration.html#cfn-workspacesweb-sessionlogger-logconfiguration-s3

Type union: either IResolvable or CfnSessionLogger.IS3LogConfigurationProperty

Implements

CfnSessionLogger.ILogConfigurationProperty
Back to top Generated by DocFX