interface SFTPConnectorDirectoryListingCompletedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.SFTPConnectorDirectoryListingCompleted.SFTPConnectorDirectoryListingCompletedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_SFTPConnectorDirectoryListingCompleted_SFTPConnectorDirectoryListingCompletedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.SFTPConnectorDirectoryListingCompleted.SFTPConnectorDirectoryListingCompletedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.SFTPConnectorDirectoryListingCompleted.SFTPConnectorDirectoryListingCompletedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป SFTPConnectorDirectoryListingCompleted ยป SFTPConnectorDirectoryListingCompletedProps |
Props type for Connector aws.transfer@SFTPConnectorDirectoryListingCompleted 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 sFTPConnectorDirectoryListingCompletedProps: transfer_events.ConnectorEvents.SFTPConnectorDirectoryListingCompleted.SFTPConnectorDirectoryListingCompletedProps = {
connectorId: ['connectorId'],
endTimestamp: ['endTimestamp'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
itemCount: ['itemCount'],
listingId: ['listingId'],
maxItems: ['maxItems'],
outputDirectoryPath: ['outputDirectoryPath'],
outputFileLocation: {
bucket: ['bucket'],
domain: ['domain'],
key: ['key'],
},
remoteDirectoryPath: ['remoteDirectoryPath'],
startTimestamp: ['startTimestamp'],
statusCode: ['statusCode'],
truncated: ['truncated'],
url: ['url'],
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string[] | connector-id property. |
| end | string[] | end-timestamp property. |
| event | AWSEvent | EventBridge event metadata. |
| item | string[] | item-count property. |
| listing | string[] | listing-id property. |
| max | string[] | max-items property. |
| output | string[] | output-directory-path property. |
| output | Output | output-file-location property. |
| remote | string[] | remote-directory-path property. |
| start | string[] | start-timestamp property. |
| status | string[] | status-code property. |
| truncated? | string[] | truncated property. |
| url? | string[] | url property. |
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.
itemCount?
Type:
string[]
(optional, default: Do not filter on this field)
item-count property.
Specify an array of string values to match this event if the actual value of item-count is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
listingId?
Type:
string[]
(optional, default: Do not filter on this field)
listing-id property.
Specify an array of string values to match this event if the actual value of listing-id is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
maxItems?
Type:
string[]
(optional, default: Do not filter on this field)
max-items property.
Specify an array of string values to match this event if the actual value of max-items is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
outputDirectoryPath?
Type:
string[]
(optional, default: Do not filter on this field)
output-directory-path property.
Specify an array of string values to match this event if the actual value of output-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.
outputFileLocation?
Type:
Output
(optional, default: Do not filter on this field)
output-file-location property.
Specify an array of string values to match this event if the actual value of output-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.
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.
truncated?
Type:
string[]
(optional, default: Do not filter on this field)
truncated property.
Specify an array of string values to match this event if the actual value of truncated 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