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