interface Scope
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.SchemaChangePlannedForDataSet.Scope |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#SchemaChangePlannedForDataSet_Scope |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.SchemaChangePlannedForDataSet.Scope |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.SchemaChangePlannedForDataSet.Scope |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป SchemaChangePlannedForDataSet ยป Scope |
Type definition for Scope.
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 scope_: dataexchange_events.SchemaChangePlannedForDataSet.Scope = {
lakeFormationTagPolicies: [{
database: ['database'],
table: ['table'],
}],
redshiftDataShares: [{
arn: ['arn'],
database: ['database'],
function: ['function'],
schema: ['schema'],
table: ['table'],
view: ['view'],
}],
s3DataAccesses: [{
keyPrefixes: ['keyPrefixes'],
keys: ['keys'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| lake | Lake[] | LakeFormationTagPolicies property. |
| redshift | Redshift[] | RedshiftDataShares property. |
| s3 | S3[] | S3DataAccesses property. |
lakeFormationTagPolicies?
Type:
Lake[]
(optional, default: Do not filter on this field)
LakeFormationTagPolicies property.
Specify an array of string values to match this event if the actual value of LakeFormationTagPolicies is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
redshiftDataShares?
Type:
Redshift[]
(optional, default: Do not filter on this field)
RedshiftDataShares property.
Specify an array of string values to match this event if the actual value of RedshiftDataShares is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
s3DataAccesses?
Type:
S3[]
(optional, default: Do not filter on this field)
S3DataAccesses property.
Specify an array of string values to match this event if the actual value of S3DataAccesses 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