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