SFTPConnectorDirectoryListingFailed

class aws_cdk.mixins_preview.aws_transfer.events.SFTPConnectorDirectoryListingFailed

Bases: object

(experimental) EventBridge event pattern for aws.transfer@SFTPConnectorDirectoryListingFailed.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_transfer import events as transfer_events

s_fTPConnector_directory_listing_failed = transfer_events.SFTPConnectorDirectoryListingFailed()
Stability:

experimental

Static Methods

classmethod sft_p_connector_directory_listing_failed_pattern(*, connector_id=None, event_metadata=None, failure_code=None, failure_message=None, listing_id=None, max_items=None, output_directory_path=None, remote_directory_path=None, status_code=None, url=None)

(experimental) EventBridge event pattern for SFTP Connector Directory Listing Failed.

Parameters:
  • connector_id (Optional[Sequence[str]]) – (experimental) 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. Default: - Filter with the Connector reference

  • event_metadata (Union[AWSEventMetadataProps, Dict[str, Any], None]) – (experimental) EventBridge event metadata. Default: - -

  • failure_code (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • failure_message (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • listing_id (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • max_items (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • output_directory_path (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • remote_directory_path (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • status_code (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • url (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

Stability:

experimental

Return type:

EventPattern

SFTPConnectorDirectoryListingFailedProps

class SFTPConnectorDirectoryListingFailed.SFTPConnectorDirectoryListingFailedProps(*, connector_id=None, event_metadata=None, failure_code=None, failure_message=None, listing_id=None, max_items=None, output_directory_path=None, remote_directory_path=None, status_code=None, url=None)

Bases: object

(experimental) Props type for aws.transfer@SFTPConnectorDirectoryListingFailed event.

Parameters:
  • connector_id (Optional[Sequence[str]]) – (experimental) 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. Default: - Filter with the Connector reference

  • event_metadata (Union[AWSEventMetadataProps, Dict[str, Any], None]) – (experimental) EventBridge event metadata. Default: - -

  • failure_code (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • failure_message (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • listing_id (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • max_items (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • output_directory_path (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • remote_directory_path (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • status_code (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

  • url (Optional[Sequence[str]]) – (experimental) 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. Default: - Do not filter on this field

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import AWSEventMetadataProps
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk.mixins_preview.aws_transfer import events as transfer_events

s_fTPConnector_directory_listing_failed_props = transfer_events.SFTPConnectorDirectoryListingFailed.SFTPConnectorDirectoryListingFailedProps(
    connector_id=["connectorId"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    failure_code=["failureCode"],
    failure_message=["failureMessage"],
    listing_id=["listingId"],
    max_items=["maxItems"],
    output_directory_path=["outputDirectoryPath"],
    remote_directory_path=["remoteDirectoryPath"],
    status_code=["statusCode"],
    url=["url"]
)

Attributes

connector_id

(experimental) 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.

Default:
  • Filter with the Connector reference

Stability:

experimental

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

failure_code

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

failure_message

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

listing_id

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

max_items

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

output_directory_path

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

remote_directory_path

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

status_code

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental

url

(experimental) 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.

Default:
  • Do not filter on this field

Stability:

experimental