Class CfnSessionLogger.LogConfigurationProperty
The configuration of the log.
Implements
Inherited Members
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
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
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; }