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.AWS.S3.dll
Syntax (csharp)
public interface IDataExportProperty
Syntax (vb)
Public Interface IDataExportProperty
Remarks

Link: 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 encryption;

DataExportProperty 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 = encryption,
        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.

virtual object CloudWatchMetrics { get; }
Property Value

System.Object

Remarks

Link: 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.

virtual object S3BucketDestination { get; }
Property Value

System.Object

Remarks

Link: 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