interface CfnDatasetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SCN.CfnDatasetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsscn#CfnDatasetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.scn.CfnDatasetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_scn.CfnDatasetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_scn » CfnDatasetMixinProps |
Properties for CfnDatasetPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scn-dataset.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_scn as scn } from '@aws-cdk/cfn-property-mixins';
const cfnDatasetMixinProps: scn.CfnDatasetMixinProps = {
description: 'description',
instanceId: 'instanceId',
name: 'name',
namespace: 'namespace',
partitionSpec: {
fields: [{
name: 'name',
transform: {
type: 'type',
},
}],
},
schema: {
fields: [{
isRequired: false,
name: 'name',
type: 'type',
}],
name: 'name',
primaryKeys: [{
name: 'name',
}],
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the dataset. |
| instance | string | The Amazon Web Services Supply Chain instance identifier. |
| name? | string | The name of the dataset. |
| namespace? | string | The namespace of the dataset. |
| partition | IResolvable | Partition | The partition specification of the dataset. |
| schema? | IResolvable | Schema | The schema of the dataset. |
| tags? | Cfn[] | The tags for the dataset. |
description?
Type:
string
(optional)
The description of the dataset.
instanceId?
Type:
string
(optional)
The Amazon Web Services Supply Chain instance identifier.
name?
Type:
string
(optional)
The name of the dataset.
namespace?
Type:
string
(optional)
The namespace of the dataset.
partitionSpec?
Type:
IResolvable | Partition
(optional)
The partition specification of the dataset.
schema?
Type:
IResolvable | Schema
(optional)
The schema of the dataset.
tags?
Type:
Cfn[]
(optional)
The tags for the dataset.

.NET
Go
Java
Python
TypeScript