Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-outputformat

S3BucketName

The name of the S3 bucket where export files are delivered.

string S3BucketName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-s3bucketname

S3BucketPrefix

The S3 key prefix used for organizing export files within the bucket.

string? S3BucketPrefix { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-s3bucketprefix

Schedule

The frequency at which data exports are generated.

string Schedule { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-schedule

Tags

The tags associated with the data export configuration.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacitymanagerdataexport.html#cfn-ec2-capacitymanagerdataexport-tags

Back to top Generated by DocFX