interface Product
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.SchemaChangePlannedForDataSet.Product |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#SchemaChangePlannedForDataSet_Product |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.SchemaChangePlannedForDataSet.Product |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.SchemaChangePlannedForDataSet.Product |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป SchemaChangePlannedForDataSet ยป Product |
Type definition for Product.
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 product: dataexchange_events.SchemaChangePlannedForDataSet.Product = {
id: ['id'],
name: ['name'],
providerContact: ['providerContact'],
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string[] | Id property. |
| name? | string[] | Name property. |
| provider | string[] | ProviderContact property. |
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.
providerContact?
Type:
string[]
(optional, default: Do not filter on this field)
ProviderContact property.
Specify an array of string values to match this event if the actual value of ProviderContact 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