Show / Hide Table of Contents

Class CfnExport.DestinationConfigurationsProperty

The destinations used for data exports.

Inheritance
object
CfnExport.DestinationConfigurationsProperty
Implements
CfnExport.IDestinationConfigurationsProperty
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.BCMDataExports
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnExport.DestinationConfigurationsProperty : CfnExport.IDestinationConfigurationsProperty
Syntax (vb)
Public Class CfnExport.DestinationConfigurationsProperty Implements CfnExport.IDestinationConfigurationsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-destinationconfigurations.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.BCMDataExports;

             var destinationConfigurationsProperty = new DestinationConfigurationsProperty {
                 S3Destination = new S3DestinationProperty {
                     S3Bucket = "s3Bucket",
                     S3OutputConfigurations = new S3OutputConfigurationsProperty {
                         Compression = "compression",
                         Format = "format",
                         OutputType = "outputType",
                         Overwrite = "overwrite"
                     },
                     S3Prefix = "s3Prefix",
                     S3Region = "s3Region"
                 }
             };

Synopsis

Constructors

DestinationConfigurationsProperty()

The destinations used for data exports.

Properties

S3Destination

An object that describes the destination of the data exports file.

Constructors

DestinationConfigurationsProperty()

The destinations used for data exports.

public DestinationConfigurationsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-destinationconfigurations.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.BCMDataExports;

             var destinationConfigurationsProperty = new DestinationConfigurationsProperty {
                 S3Destination = new S3DestinationProperty {
                     S3Bucket = "s3Bucket",
                     S3OutputConfigurations = new S3OutputConfigurationsProperty {
                         Compression = "compression",
                         Format = "format",
                         OutputType = "outputType",
                         Overwrite = "overwrite"
                     },
                     S3Prefix = "s3Prefix",
                     S3Region = "s3Region"
                 }
             };

Properties

S3Destination

An object that describes the destination of the data exports file.

public object S3Destination { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bcmdataexports-export-destinationconfigurations.html#cfn-bcmdataexports-export-destinationconfigurations-s3destination

Type union: either IResolvable or CfnExport.IS3DestinationProperty

Implements

CfnExport.IDestinationConfigurationsProperty
Back to top Generated by DocFX