Show / Hide Table of Contents

Class CfnCapacityManagerDataExportProps

Properties for defining a CfnCapacityManagerDataExport.

Inheritance
object
CfnCapacityManagerDataExportProps
Implements
ICfnCapacityManagerDataExportProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCapacityManagerDataExportProps : ICfnCapacityManagerDataExportProps
Syntax (vb)
Public Class CfnCapacityManagerDataExportProps Implements 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

Constructors

CfnCapacityManagerDataExportProps()

Properties for defining a CfnCapacityManagerDataExport.

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

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"
                 } }
             };

Properties

OutputFormat

The file format of the exported data.

public string OutputFormat { get; set; }
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.

public string S3BucketName { get; set; }
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.

public string? S3BucketPrefix { get; set; }
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.

public string Schedule { get; set; }
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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnCapacityManagerDataExportProps
Back to top Generated by DocFX