interface SFTPConnectorDirectoryListingFailedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Events.ConnectorEvents.SFTPConnectorDirectoryListingFailed.SFTPConnectorDirectoryListingFailedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/events#ConnectorEvents_SFTPConnectorDirectoryListingFailed_SFTPConnectorDirectoryListingFailedProps |
Java | software.amazon.awscdk.mixins.preview.services.transfer.events.ConnectorEvents.SFTPConnectorDirectoryListingFailed.SFTPConnectorDirectoryListingFailedProps |
Python | aws_cdk.mixins_preview.aws_transfer.events.ConnectorEvents.SFTPConnectorDirectoryListingFailed.SFTPConnectorDirectoryListingFailedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_transfer ยป events ยป ConnectorEvents ยป SFTPConnectorDirectoryListingFailed ยป SFTPConnectorDirectoryListingFailedProps |
Props type for Connector aws.transfer@SFTPConnectorDirectoryListingFailed 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 sFTPConnectorDirectoryListingFailedProps: transfer_events.ConnectorEvents.SFTPConnectorDirectoryListingFailed.SFTPConnectorDirectoryListingFailedProps = {
connectorId: ['connectorId'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
failureCode: ['failureCode'],
failureMessage: ['failureMessage'],
listingId: ['listingId'],
maxItems: ['maxItems'],
outputDirectoryPath: ['outputDirectoryPath'],
remoteDirectoryPath: ['remoteDirectoryPath'],
statusCode: ['statusCode'],
url: ['url'],
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string[] | connector-id property. |
| event | AWSEvent | EventBridge event metadata. |
| failure | string[] | failure-code property. |
| failure | string[] | failure-message property. |
| listing | string[] | listing-id property. |
| max | string[] | max-items property. |
| output | string[] | output-directory-path property. |
| remote | string[] | remote-directory-path property. |
| status | string[] | status-code 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.
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.
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.
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.
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.
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