Interface ICfnCapacityManagerDataExportProps
Properties for defining a CfnCapacityManagerDataExport.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnCapacityManagerDataExportProps
Syntax (vb)
Public Interface ICfnCapacityManagerDataExportProps
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.AWS.EC2;
var cfnCapacityManagerDataExportProps = new CfnCapacityManagerDataExportProps {
OutputFormat = "outputFormat",
S3BucketName = "s3BucketName",
Schedule = "schedule",
// the properties below are optional
S3BucketPrefix = "s3BucketPrefix",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
| OutputFormat | The file format of the exported data. |
| S3BucketName | The name of the S3 bucket where export files are delivered. |
| S3BucketPrefix | The S3 key prefix used for organizing export files within the bucket. |
| Schedule | The frequency at which data exports are generated. |
| Tags | The tags associated with the data export configuration. |
Properties
OutputFormat
The file format of the exported data.
string OutputFormat { get; }
Property Value
Remarks
S3BucketName
The name of the S3 bucket where export files are delivered.
string S3BucketName { get; }
Property Value
Remarks
S3BucketPrefix
The S3 key prefix used for organizing export files within the bucket.
string? S3BucketPrefix { get; }
Property Value
Remarks
Schedule
The frequency at which data exports are generated.
string Schedule { get; }
Property Value
Remarks
Tags
The tags associated with the data export configuration.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]