Class CfnDataSetProps
Properties for defining a CfnDataSet.
Implements
Inherited Members
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 |
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
Remarks
Description
A description for the data set.
public string Description { get; set; }
Property Value
Remarks
Name
The name of the data set.
public string Name { get; set; }