interface S3DataAccessDetails
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataExchange.Events.SchemaChangePlannedForDataSet.S3DataAccessDetails |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdataexchange/events#SchemaChangePlannedForDataSet_S3DataAccessDetails |
Java | software.amazon.awscdk.mixins.preview.services.dataexchange.events.SchemaChangePlannedForDataSet.S3DataAccessDetails |
Python | aws_cdk.mixins_preview.aws_dataexchange.events.SchemaChangePlannedForDataSet.S3DataAccessDetails |
TypeScript | @aws-cdk/mixins-preview ยป aws_dataexchange ยป events ยป SchemaChangePlannedForDataSet ยป S3DataAccessDetails |
Type definition for S3DataAccessDetails.
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 s3DataAccessDetails: dataexchange_events.SchemaChangePlannedForDataSet.S3DataAccessDetails = {
keyPrefixes: ['keyPrefixes'],
keys: ['keys'],
};
Properties
| Name | Type | Description |
|---|---|---|
| key | string[] | KeyPrefixes property. |
| keys? | string[] | Keys property. |
keyPrefixes?
Type:
string[]
(optional, default: Do not filter on this field)
KeyPrefixes property.
Specify an array of string values to match this event if the actual value of KeyPrefixes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
keys?
Type:
string[]
(optional, default: Do not filter on this field)
Keys property.
Specify an array of string values to match this event if the actual value of Keys 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