interface SFTPConnectorFileSendFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.SFTPConnectorFileSendFailed.SFTPConnectorFileSendFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_SFTPConnectorFileSendFailed_SFTPConnectorFileSendFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.SFTPConnectorFileSendFailed.SFTPConnectorFileSendFailedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.SFTPConnectorFileSendFailed.SFTPConnectorFileSendFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป SFTPConnectorFileSendFailed ยป SFTPConnectorFileSendFailedProps |
Props type for Connector aws.transfer@SFTPConnectorFileSendFailed event.
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 sFTPConnectorFileSendFailedProps: transfer_events.ConnectorEvents.SFTPConnectorFileSendFailed.SFTPConnectorFileSendFailedProps = {
bytes: ['bytes'],
connectorId: ['connectorId'],
endTimestamp: ['endTimestamp'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
failureCode: ['failureCode'],
failureMessage: ['failureMessage'],
filePath: ['filePath'],
fileTransferId: ['fileTransferId'],
localFileLocation: {
bucket: ['bucket'],
domain: ['domain'],
key: ['key'],
},
operation: ['operation'],
remoteDirectoryPath: ['remoteDirectoryPath'],
startTimestamp: ['startTimestamp'],
statusCode: ['statusCode'],
transferId: ['transferId'],
url: ['url'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bytes? | string[] | bytes property. |
| connector | string[] | connector-id property. |
| end | string[] | end-timestamp property. |
| event | AWSEvent | EventBridge event metadata. |
| failure | string[] | failure-code property. |
| failure | string[] | failure-message property. |
| file | string[] | file-path property. |
| file | string[] | file-transfer-id property. |
| local | Local | local-file-location property. |
| operation? | string[] | operation property. |
| remote | string[] | remote-directory-path property. |
| start | string[] | start-timestamp property. |
| status | string[] | status-code property. |
| transfer | string[] | transfer-id property. |
| url? | string[] | url property. |
bytes?
Type:
string[]
(optional, default: Do not filter on this field)
bytes property.
Specify an array of string values to match this event if the actual value of bytes is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
connectorId?
Type:
string[]
(optional, default: Filter with the Connector reference)
connector-id property.
Specify an array of string values to match this event if the actual value of connector-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endTimestamp?
Type:
string[]
(optional, default: Do not filter on this field)
end-timestamp property.
Specify an array of string values to match this event if the actual value of end-timestamp is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
failureCode?
Type:
string[]
(optional, default: Do not filter on this field)
failure-code property.
Specify an array of string values to match this event if the actual value of failure-code is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
failureMessage?
Type:
string[]
(optional, default: Do not filter on this field)
failure-message property.
Specify an array of string values to match this event if the actual value of failure-message is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
filePath?
Type:
string[]
(optional, default: Do not filter on this field)
file-path property.
Specify an array of string values to match this event if the actual value of file-path is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
fileTransferId?
Type:
string[]
(optional, default: Do not filter on this field)
file-transfer-id property.
Specify an array of string values to match this event if the actual value of file-transfer-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
localFileLocation?
Type:
Local
(optional, default: Do not filter on this field)
local-file-location property.
Specify an array of string values to match this event if the actual value of local-file-location is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
operation?
Type:
string[]
(optional, default: Do not filter on this field)
operation property.
Specify an array of string values to match this event if the actual value of operation is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
remoteDirectoryPath?
Type:
string[]
(optional, default: Do not filter on this field)
remote-directory-path property.
Specify an array of string values to match this event if the actual value of remote-directory-path is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startTimestamp?
Type:
string[]
(optional, default: Do not filter on this field)
start-timestamp property.
Specify an array of string values to match this event if the actual value of start-timestamp is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
statusCode?
Type:
string[]
(optional, default: Do not filter on this field)
status-code property.
Specify an array of string values to match this event if the actual value of status-code is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transferId?
Type:
string[]
(optional, default: Do not filter on this field)
transfer-id property.
Specify an array of string values to match this event if the actual value of transfer-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
url?
Type:
string[]
(optional, default: Do not filter on this field)
url property.
Specify an array of string values to match this event if the actual value of url 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