Class CfnInfrastructureConfigurationPropsMixin.S3LogsProperty
Amazon S3 logging configuration.
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnInfrastructureConfigurationPropsMixin.S3LogsProperty : CfnInfrastructureConfigurationPropsMixin.IS3LogsProperty
Syntax (vb)
Public Class CfnInfrastructureConfigurationPropsMixin.S3LogsProperty Implements CfnInfrastructureConfigurationPropsMixin.IS3LogsProperty
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.CfnPropertyMixins.AWS.ImageBuilder;
var s3LogsProperty = new S3LogsProperty {
S3BucketName = "s3BucketName",
S3KeyPrefix = "s3KeyPrefix"
};
Synopsis
Constructors
| S3LogsProperty() | Amazon S3 logging configuration. |
Properties
| S3BucketName | The S3 bucket in which to store the logs. |
| S3KeyPrefix | The Amazon S3 path to the bucket where the logs are stored. |
Constructors
S3LogsProperty()
Amazon S3 logging configuration.
public S3LogsProperty()
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.CfnPropertyMixins.AWS.ImageBuilder;
var s3LogsProperty = new S3LogsProperty {
S3BucketName = "s3BucketName",
S3KeyPrefix = "s3KeyPrefix"
};
Properties
S3BucketName
The S3 bucket in which to store the logs.
public object? S3BucketName { get; set; }
Property Value
Remarks
S3KeyPrefix
The Amazon S3 path to the bucket where the logs are stored.
public string? S3KeyPrefix { get; set; }