Class CfnInfrastructureConfigurationPropsMixin.LoggingProperty
Logging configuration defines where Image Builder uploads your logs.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnInfrastructureConfigurationPropsMixin.LoggingProperty : CfnInfrastructureConfigurationPropsMixin.ILoggingProperty
Syntax (vb)
Public Class CfnInfrastructureConfigurationPropsMixin.LoggingProperty Implements CfnInfrastructureConfigurationPropsMixin.ILoggingProperty
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.Mixins.Preview.AWS.ImageBuilder.Mixins;
var loggingProperty = new LoggingProperty {
S3Logs = new S3LogsProperty {
S3BucketName = "s3BucketName",
S3KeyPrefix = "s3KeyPrefix"
}
};
Synopsis
Constructors
| LoggingProperty() | Logging configuration defines where Image Builder uploads your logs. |
Properties
| S3Logs | The Amazon S3 logging configuration. |
Constructors
LoggingProperty()
Logging configuration defines where Image Builder uploads your logs.
public LoggingProperty()
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.Mixins.Preview.AWS.ImageBuilder.Mixins;
var loggingProperty = new LoggingProperty {
S3Logs = new S3LogsProperty {
S3BucketName = "s3BucketName",
S3KeyPrefix = "s3KeyPrefix"
}
};
Properties
S3Logs
The Amazon S3 logging configuration.
public object? S3Logs { get; set; }