Show / Hide Table of Contents

Class CfnDataSetProps

Properties for defining a CfnDataSet.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dataexchange-dataset.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.DataExchange;

             var cfnDataSetProps = new CfnDataSetProps {
                 AssetType = "assetType",
                 Description = "description",
                 Name = "name",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnDataSetProps()

Properties for defining a CfnDataSet.

Properties

AssetType

The type of asset that is added to a data set.

Description

A description for the data set.

Name

The name of the data set.

Tags

Tags for the data set.

Constructors

CfnDataSetProps()

Properties for defining a CfnDataSet.

public CfnDataSetProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dataexchange-dataset.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.DataExchange;

             var cfnDataSetProps = new CfnDataSetProps {
                 AssetType = "assetType",
                 Description = "description",
                 Name = "name",

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

AssetType

The type of asset that is added to a data set.

public string AssetType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dataexchange-dataset.html#cfn-dataexchange-dataset-assettype

Description

A description for the data set.

public string Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dataexchange-dataset.html#cfn-dataexchange-dataset-description

Name

The name of the data set.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dataexchange-dataset.html#cfn-dataexchange-dataset-name

Tags

Tags for the data set.

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

ICfnTag[]

Remarks

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

Implements

ICfnDataSetProps
Back to top Generated by DocFX