Show / Hide Table of Contents

Interface CfnBucket.IStorageClassAnalysisProperty

Specifies data related to access patterns to be collected and made available to analyze the tradeoffs between different storage classes for an Amazon S3 bucket.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-storageclassanalysis.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;

StorageClassAnalysisProperty storageClassAnalysisProperty = new StorageClassAnalysisProperty {
    DataExport = new DataExportProperty {
        Destination = new DestinationProperty {
            BucketArn = "bucketArn",
            Format = "format",

            // the properties below are optional
            BucketAccountId = "bucketAccountId",
            Prefix = "prefix"
        },
        OutputSchemaVersion = "outputSchemaVersion"
    }
};

Synopsis

Properties

DataExport

Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.

Properties

DataExport

Specifies how data related to the storage class analysis for an Amazon S3 bucket should be exported.

virtual object DataExport { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-storageclassanalysis.html#cfn-s3-bucket-storageclassanalysis-dataexport

Back to top Generated by DocFX