Class CfnCapacityManagerDataExportProps
Properties for defining a CfnCapacityManagerDataExport.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCapacityManagerDataExportProps : ICfnCapacityManagerDataExportProps
Syntax (vb)
Public Class CfnCapacityManagerDataExportProps Implements 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
Constructors
| CfnCapacityManagerDataExportProps() | Properties for defining a |
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. |
Constructors
CfnCapacityManagerDataExportProps()
Properties for defining a CfnCapacityManagerDataExport.
public CfnCapacityManagerDataExportProps()
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"
} }
};
Properties
OutputFormat
The file format of the exported data.
public string OutputFormat { get; set; }
Property Value
Remarks
S3BucketName
The name of the S3 bucket where export files are delivered.
public string S3BucketName { get; set; }
Property Value
Remarks
S3BucketPrefix
The S3 key prefix used for organizing export files within the bucket.
public string? S3BucketPrefix { get; set; }
Property Value
Remarks
Schedule
The frequency at which data exports are generated.
public string Schedule { get; set; }
Property Value
Remarks
Tags
The tags associated with the data export configuration.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]