interface SFTPServerFileUploadCompletedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.SFTPServerFileUploadCompleted.SFTPServerFileUploadCompletedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#SFTPServerFileUploadCompleted_SFTPServerFileUploadCompletedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.SFTPServerFileUploadCompleted.SFTPServerFileUploadCompletedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.SFTPServerFileUploadCompleted.SFTPServerFileUploadCompletedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป SFTPServerFileUploadCompleted ยป SFTPServerFileUploadCompletedProps |
Props type for aws.transfer@SFTPServerFileUploadCompleted 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 sFTPServerFileUploadCompletedProps: transfer_events.SFTPServerFileUploadCompleted.SFTPServerFileUploadCompletedProps = {
bytes: ['bytes'],
clientIp: ['clientIp'],
endTimestamp: ['endTimestamp'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
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. |
| event | AWSEvent | EventBridge event metadata. |
| 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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
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