interface LocalFileLocation
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.SFTPConnectorFileSendFailed.LocalFileLocation |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_SFTPConnectorFileSendFailed_LocalFileLocation |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.SFTPConnectorFileSendFailed.LocalFileLocation |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.SFTPConnectorFileSendFailed.LocalFileLocation |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป SFTPConnectorFileSendFailed ยป LocalFileLocation |
Type definition for Local-file-location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as transfer_events } from '@aws-cdk/mixins-preview/aws-transfer';
const localFileLocation: transfer_events.ConnectorEvents.SFTPConnectorFileSendFailed.LocalFileLocation = {
bucket: ['bucket'],
domain: ['domain'],
key: ['key'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string[] | bucket property. |
| domain? | string[] | domain property. |
| key? | string[] | key property. |
bucket?
Type:
string[]
(optional, default: Do not filter on this field)
bucket property.
Specify an array of string values to match this event if the actual value of bucket is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
domain?
Type:
string[]
(optional, default: Do not filter on this field)
domain property.
Specify an array of string values to match this event if the actual value of domain is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
key?
Type:
string[]
(optional, default: Do not filter on this field)
key property.
Specify an array of string values to match this event if the actual value of key 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