interface SFTPServerFileUploadFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.SFTPServerFileUploadFailed.SFTPServerFileUploadFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#SFTPServerFileUploadFailed_SFTPServerFileUploadFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.SFTPServerFileUploadFailed.SFTPServerFileUploadFailedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.SFTPServerFileUploadFailed.SFTPServerFileUploadFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป SFTPServerFileUploadFailed ยป SFTPServerFileUploadFailedProps |
Props type for aws.transfer@SFTPServerFileUploadFailed 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 sFTPServerFileUploadFailedProps: transfer_events.SFTPServerFileUploadFailed.SFTPServerFileUploadFailedProps = {
bytes: ['bytes'],
clientIp: ['clientIp'],
endTimestamp: ['endTimestamp'],
etag: ['etag'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
failureCode: ['failureCode'],
failureMessage: ['failureMessage'],
filePath: ['filePath'],
protocol: ['protocol'],
serverId: ['serverId'],
sessionId: ['sessionId'],
startTimestamp: ['startTimestamp'],
statusCode: ['statusCode'],
username: ['username'],
};
Properties
| Name | Type | Description |
|---|---|---|
| bytes? | string[] | bytes property. |
| client | string[] | client-ip property. |
| end | string[] | end-timestamp property. |
| etag? | string[] | etag property. |
| event | AWSEvent | EventBridge event metadata. |
| failure | string[] | failure-code property. |
| failure | string[] | failure-message property. |
| file | string[] | file-path property. |
| protocol? | string[] | protocol property. |
| server | string[] | server-id property. |
| session | string[] | session-id property. |
| start | string[] | start-timestamp property. |
| status | string[] | status-code property. |
| username? | string[] | username 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.
clientIp?
Type:
string[]
(optional, default: Do not filter on this field)
client-ip property.
Specify an array of string values to match this event if the actual value of client-ip 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.
etag?
Type:
string[]
(optional, default: Do not filter on this field)
etag property.
Specify an array of string values to match this event if the actual value of etag 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.
protocol?
Type:
string[]
(optional, default: Do not filter on this field)
protocol property.
Specify an array of string values to match this event if the actual value of protocol is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
serverId?
Type:
string[]
(optional, default: Do not filter on this field)
server-id property.
Specify an array of string values to match this event if the actual value of server-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sessionId?
Type:
string[]
(optional, default: Do not filter on this field)
session-id property.
Specify an array of string values to match this event if the actual value of session-id 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.
username?
Type:
string[]
(optional, default: Do not filter on this field)
username property.
Specify an array of string values to match this event if the actual value of username 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