interface DataSet
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.DeprecationPlannedForDataSet.DataSet |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#DeprecationPlannedForDataSet_DataSet |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.DeprecationPlannedForDataSet.DataSet |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.DeprecationPlannedForDataSet.DataSet |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป DeprecationPlannedForDataSet ยป DataSet |
Type definition for DataSet.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as dataexchange_events } from '@aws-cdk/mixins-preview/aws-dataexchange';
const dataSet: dataexchange_events.DeprecationPlannedForDataSet.DataSet = {
assetType: ['assetType'],
id: ['id'],
name: ['name'],
};
Properties
| Name | Type | Description |
|---|---|---|
| asset | string[] | AssetType property. |
| id? | string[] | Id property. |
| name? | string[] | Name property. |
assetType?
Type:
string[]
(optional, default: Do not filter on this field)
AssetType property.
Specify an array of string values to match this event if the actual value of AssetType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
id?
Type:
string[]
(optional, default: Do not filter on this field)
Id property.
Specify an array of string values to match this event if the actual value of Id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
string[]
(optional, default: Do not filter on this field)
Name property.
Specify an array of string values to match this event if the actual value of Name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript