Show / Hide Table of Contents

Interface CfnStorageLens.IDataExportProperty

This resource contains the details of the Amazon S3 Storage Lens metrics export.

Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnStorageLens.IDataExportProperty
Syntax (vb)
Public Interface CfnStorageLens.IDataExportProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-dataexport.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.S3;

             var sses3;

             var dataExportProperty = new DataExportProperty {
                 CloudWatchMetrics = new CloudWatchMetricsProperty {
                     IsEnabled = false
                 },
                 S3BucketDestination = new S3BucketDestinationProperty {
                     AccountId = "accountId",
                     Arn = "arn",
                     Format = "format",
                     OutputSchemaVersion = "outputSchemaVersion",

                     // the properties below are optional
                     Encryption = new EncryptionProperty {
                         Ssekms = new SSEKMSProperty {
                             KeyId = "keyId"
                         },
                         Sses3 = sses3
                     },
                     Prefix = "prefix"
                 }
             };

Synopsis

Properties

CloudWatchMetrics

This property enables the Amazon CloudWatch publishing option for S3 Storage Lens metrics.

S3BucketDestination

This property contains the details of the bucket where the S3 Storage Lens metrics export will be placed.

Properties

CloudWatchMetrics

This property enables the Amazon CloudWatch publishing option for S3 Storage Lens metrics.

object? CloudWatchMetrics { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-dataexport.html#cfn-s3-storagelens-dataexport-cloudwatchmetrics

S3BucketDestination

This property contains the details of the bucket where the S3 Storage Lens metrics export will be placed.

object? S3BucketDestination { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-dataexport.html#cfn-s3-storagelens-dataexport-s3bucketdestination

Back to top Generated by DocFX