AgreementEvents

class aws_cdk.mixins_preview.aws_transfer.events.AgreementEvents(*args: Any, **kwargs)

Bases: object

(experimental) EventBridge event patterns for Agreement.

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
from aws_cdk.interfaces import aws_transfer as interfaces_aws_transfer

# agreement_ref: interfaces_aws_transfer.IAgreementRef

agreement_events = transfer_events.AgreementEvents.from_agreement(agreement_ref)

Methods

a_s2_mdn_send_completed_pattern(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, bytes=None, client_ip=None, disposition=None, end_timestamp=None, event_metadata=None, mdn_message_id=None, mdn_subject=None, mdn_type=None, message_subject=None, requester_file_name=None, request_path=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

(experimental) EventBridge event pattern for Agreement AS2 MDN Send Completed.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • bytes (Optional[Sequence[str]]) – (experimental) bytes property. Specify an array of string values to match this event if the actual value of bytes 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

  • disposition (Optional[Sequence[str]]) – (experimental) disposition property. Specify an array of string values to match this event if the actual value of disposition 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

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

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

  • mdn_message_id (Optional[Sequence[str]]) – (experimental) mdn-message-id property. Specify an array of string values to match this event if the actual value of mdn-message-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

  • mdn_subject (Optional[Sequence[str]]) – (experimental) mdn-subject property. Specify an array of string values to match this event if the actual value of mdn-subject 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

  • mdn_type (Optional[Sequence[str]]) – (experimental) mdn-type property. Specify an array of string values to match this event if the actual value of mdn-type 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

  • message_subject (Optional[Sequence[str]]) – (experimental) message-subject property. Specify an array of string values to match this event if the actual value of message-subject 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

  • requester_file_name (Optional[Sequence[str]]) – (experimental) requester-file-name property. Specify an array of string values to match this event if the actual value of requester-file-name 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

  • request_path (Optional[Sequence[str]]) – (experimental) request-path property. Specify an array of string values to match this event if the actual value of request-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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

Stability:

experimental

Return type:

EventPattern

a_s2_mdn_send_failed_pattern(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, bytes=None, client_ip=None, disposition=None, end_timestamp=None, event_metadata=None, failure_code=None, failure_message=None, mdn_message_id=None, mdn_subject=None, mdn_type=None, requester_file_name=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

(experimental) EventBridge event pattern for Agreement AS2 MDN Send Failed.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • bytes (Optional[Sequence[str]]) – (experimental) bytes property. Specify an array of string values to match this event if the actual value of bytes 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

  • disposition (Optional[Sequence[str]]) – (experimental) disposition property. Specify an array of string values to match this event if the actual value of disposition 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

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

  • 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

  • mdn_message_id (Optional[Sequence[str]]) – (experimental) mdn-message-id property. Specify an array of string values to match this event if the actual value of mdn-message-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

  • mdn_subject (Optional[Sequence[str]]) – (experimental) mdn-subject property. Specify an array of string values to match this event if the actual value of mdn-subject 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

  • mdn_type (Optional[Sequence[str]]) – (experimental) mdn-type property. Specify an array of string values to match this event if the actual value of mdn-type 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

  • requester_file_name (Optional[Sequence[str]]) – (experimental) requester-file-name property. Specify an array of string values to match this event if the actual value of requester-file-name 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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

Stability:

experimental

Return type:

EventPattern

a_s2_payload_receive_completed_pattern(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, bytes=None, client_ip=None, end_timestamp=None, event_metadata=None, message_subject=None, requester_file_name=None, request_path=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

(experimental) EventBridge event pattern for Agreement AS2 Payload Receive Completed.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • bytes (Optional[Sequence[str]]) – (experimental) bytes property. Specify an array of string values to match this event if the actual value of bytes 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

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

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

  • message_subject (Optional[Sequence[str]]) – (experimental) message-subject property. Specify an array of string values to match this event if the actual value of message-subject 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

  • requester_file_name (Optional[Sequence[str]]) – (experimental) requester-file-name property. Specify an array of string values to match this event if the actual value of requester-file-name 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

  • request_path (Optional[Sequence[str]]) – (experimental) request-path property. Specify an array of string values to match this event if the actual value of request-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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

Stability:

experimental

Return type:

EventPattern

a_s2_payload_receive_failed_pattern(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, client_ip=None, end_timestamp=None, event_metadata=None, failure_code=None, failure_message=None, message_subject=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

(experimental) EventBridge event pattern for Agreement AS2 Payload Receive Failed.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

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

  • 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

  • message_subject (Optional[Sequence[str]]) – (experimental) message-subject property. Specify an array of string values to match this event if the actual value of message-subject 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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

Stability:

experimental

Return type:

EventPattern

Static Methods

classmethod from_agreement(agreement_ref)

(experimental) Create AgreementEvents from a Agreement reference.

Parameters:

agreement_ref (IAgreementRef)

Stability:

experimental

Return type:

AgreementEvents

AS2MDNSendCompleted

class AgreementEvents.AS2MDNSendCompleted

Bases: object

(experimental) aws.transfer@AS2MDNSendCompleted event types for Agreement.

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

a_s2_mDNSend_completed = transfer_events.AgreementEvents.AS2MDNSendCompleted()
Stability:

experimental

AS2MDNSendCompletedProps

class AgreementEvents.AS2MDNSendCompleted.AS2MDNSendCompletedProps(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, bytes=None, client_ip=None, disposition=None, end_timestamp=None, event_metadata=None, mdn_message_id=None, mdn_subject=None, mdn_type=None, message_subject=None, requester_file_name=None, request_path=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

Bases: object

(experimental) Props type for Agreement aws.transfer@AS2MDNSendCompleted event.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • bytes (Optional[Sequence[str]]) – (experimental) bytes property. Specify an array of string values to match this event if the actual value of bytes 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

  • disposition (Optional[Sequence[str]]) – (experimental) disposition property. Specify an array of string values to match this event if the actual value of disposition 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

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

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

  • mdn_message_id (Optional[Sequence[str]]) – (experimental) mdn-message-id property. Specify an array of string values to match this event if the actual value of mdn-message-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

  • mdn_subject (Optional[Sequence[str]]) – (experimental) mdn-subject property. Specify an array of string values to match this event if the actual value of mdn-subject 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

  • mdn_type (Optional[Sequence[str]]) – (experimental) mdn-type property. Specify an array of string values to match this event if the actual value of mdn-type 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

  • message_subject (Optional[Sequence[str]]) – (experimental) message-subject property. Specify an array of string values to match this event if the actual value of message-subject 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

  • requester_file_name (Optional[Sequence[str]]) – (experimental) requester-file-name property. Specify an array of string values to match this event if the actual value of requester-file-name 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

  • request_path (Optional[Sequence[str]]) – (experimental) request-path property. Specify an array of string values to match this event if the actual value of request-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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

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

a_s2_mDNSend_completed_props = transfer_events.AgreementEvents.AS2MDNSendCompleted.AS2MDNSendCompletedProps(
    agreement_id=["agreementId"],
    as2_from=["as2From"],
    as2_message_id=["as2MessageId"],
    as2_to=["as2To"],
    bytes=["bytes"],
    client_ip=["clientIp"],
    disposition=["disposition"],
    end_timestamp=["endTimestamp"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    mdn_message_id=["mdnMessageId"],
    mdn_subject=["mdnSubject"],
    mdn_type=["mdnType"],
    message_subject=["messageSubject"],
    requester_file_name=["requesterFileName"],
    request_path=["requestPath"],
    s3_attributes=transfer_events.AgreementEvents.AS2MDNSendCompleted.S3Attributes(
        file_bucket=["fileBucket"],
        file_key=["fileKey"],
        json_bucket=["jsonBucket"],
        json_key=["jsonKey"],
        mdn_bucket=["mdnBucket"],
        mdn_key=["mdnKey"]
    ),
    server_id=["serverId"],
    start_timestamp=["startTimestamp"],
    status_code=["statusCode"]
)

Attributes

agreement_id

(experimental) agreement-id property.

Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

Stability:

experimental

as2_from

(experimental) as2-from property.

Specify an array of string values to match this event if the actual value of as2-from 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

as2_message_id

(experimental) as2-message-id property.

Specify an array of string values to match this event if the actual value of as2-message-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

as2_to

(experimental) as2-to property.

Specify an array of string values to match this event if the actual value of as2-to 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

bytes

(experimental) bytes property.

Specify an array of string values to match this event if the actual value of bytes 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

client_ip

(experimental) client-ip property.

Specify an array of string values to match this event if the actual value of client-ip 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

disposition

(experimental) disposition property.

Specify an array of string values to match this event if the actual value of disposition 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

end_timestamp

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

Default:
  • Do not filter on this field

Stability:

experimental

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

mdn_message_id

(experimental) mdn-message-id property.

Specify an array of string values to match this event if the actual value of mdn-message-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

mdn_subject

(experimental) mdn-subject property.

Specify an array of string values to match this event if the actual value of mdn-subject 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

mdn_type

(experimental) mdn-type property.

Specify an array of string values to match this event if the actual value of mdn-type 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

message_subject

(experimental) message-subject property.

Specify an array of string values to match this event if the actual value of message-subject 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

request_path

(experimental) request-path property.

Specify an array of string values to match this event if the actual value of request-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

requester_file_name

(experimental) requester-file-name property.

Specify an array of string values to match this event if the actual value of requester-file-name 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

s3_attributes

(experimental) s3-attributes property.

Specify an array of string values to match this event if the actual value of s3-attributes 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

server_id

(experimental) server-id property.

Specify an array of string values to match this event if the actual value of server-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

start_timestamp

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

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

S3Attributes

class AgreementEvents.AS2MDNSendCompleted.S3Attributes(*, file_bucket=None, file_key=None, json_bucket=None, json_key=None, mdn_bucket=None, mdn_key=None)

Bases: object

(experimental) Type definition for S3-attributes.

Parameters:
  • file_bucket (Optional[Sequence[str]]) – (experimental) file-bucket property. Specify an array of string values to match this event if the actual value of file-bucket 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

  • file_key (Optional[Sequence[str]]) – (experimental) file-key property. Specify an array of string values to match this event if the actual value of file-key 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

  • json_bucket (Optional[Sequence[str]]) – (experimental) json-bucket property. Specify an array of string values to match this event if the actual value of json-bucket 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

  • json_key (Optional[Sequence[str]]) – (experimental) json-key property. Specify an array of string values to match this event if the actual value of json-key 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

  • mdn_bucket (Optional[Sequence[str]]) – (experimental) mdn-bucket property. Specify an array of string values to match this event if the actual value of mdn-bucket 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

  • mdn_key (Optional[Sequence[str]]) – (experimental) mdn-key property. Specify an array of string values to match this event if the actual value of mdn-key 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:

# 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

s3_attributes = transfer_events.AgreementEvents.AS2MDNSendCompleted.S3Attributes(
    file_bucket=["fileBucket"],
    file_key=["fileKey"],
    json_bucket=["jsonBucket"],
    json_key=["jsonKey"],
    mdn_bucket=["mdnBucket"],
    mdn_key=["mdnKey"]
)

Attributes

file_bucket

(experimental) file-bucket property.

Specify an array of string values to match this event if the actual value of file-bucket 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

file_key

(experimental) file-key property.

Specify an array of string values to match this event if the actual value of file-key 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

json_bucket

(experimental) json-bucket property.

Specify an array of string values to match this event if the actual value of json-bucket 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

json_key

(experimental) json-key property.

Specify an array of string values to match this event if the actual value of json-key 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

mdn_bucket

(experimental) mdn-bucket property.

Specify an array of string values to match this event if the actual value of mdn-bucket 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

mdn_key

(experimental) mdn-key property.

Specify an array of string values to match this event if the actual value of mdn-key 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

AS2MDNSendFailed

class AgreementEvents.AS2MDNSendFailed

Bases: object

(experimental) aws.transfer@AS2MDNSendFailed event types for Agreement.

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

a_s2_mDNSend_failed = transfer_events.AgreementEvents.AS2MDNSendFailed()
Stability:

experimental

AS2MDNSendFailedProps

class AgreementEvents.AS2MDNSendFailed.AS2MDNSendFailedProps(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, bytes=None, client_ip=None, disposition=None, end_timestamp=None, event_metadata=None, failure_code=None, failure_message=None, mdn_message_id=None, mdn_subject=None, mdn_type=None, requester_file_name=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

Bases: object

(experimental) Props type for Agreement aws.transfer@AS2MDNSendFailed event.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • bytes (Optional[Sequence[str]]) – (experimental) bytes property. Specify an array of string values to match this event if the actual value of bytes 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

  • disposition (Optional[Sequence[str]]) – (experimental) disposition property. Specify an array of string values to match this event if the actual value of disposition 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

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

  • 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

  • mdn_message_id (Optional[Sequence[str]]) – (experimental) mdn-message-id property. Specify an array of string values to match this event if the actual value of mdn-message-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

  • mdn_subject (Optional[Sequence[str]]) – (experimental) mdn-subject property. Specify an array of string values to match this event if the actual value of mdn-subject 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

  • mdn_type (Optional[Sequence[str]]) – (experimental) mdn-type property. Specify an array of string values to match this event if the actual value of mdn-type 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

  • requester_file_name (Optional[Sequence[str]]) – (experimental) requester-file-name property. Specify an array of string values to match this event if the actual value of requester-file-name 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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

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

a_s2_mDNSend_failed_props = transfer_events.AgreementEvents.AS2MDNSendFailed.AS2MDNSendFailedProps(
    agreement_id=["agreementId"],
    as2_from=["as2From"],
    as2_message_id=["as2MessageId"],
    as2_to=["as2To"],
    bytes=["bytes"],
    client_ip=["clientIp"],
    disposition=["disposition"],
    end_timestamp=["endTimestamp"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    failure_code=["failureCode"],
    failure_message=["failureMessage"],
    mdn_message_id=["mdnMessageId"],
    mdn_subject=["mdnSubject"],
    mdn_type=["mdnType"],
    requester_file_name=["requesterFileName"],
    s3_attributes=transfer_events.AgreementEvents.AS2MDNSendFailed.S3Attributes(
        file_bucket=["fileBucket"],
        file_key=["fileKey"],
        json_bucket=["jsonBucket"],
        json_key=["jsonKey"],
        mdn_bucket=["mdnBucket"],
        mdn_key=["mdnKey"]
    ),
    server_id=["serverId"],
    start_timestamp=["startTimestamp"],
    status_code=["statusCode"]
)

Attributes

agreement_id

(experimental) agreement-id property.

Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

Stability:

experimental

as2_from

(experimental) as2-from property.

Specify an array of string values to match this event if the actual value of as2-from 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

as2_message_id

(experimental) as2-message-id property.

Specify an array of string values to match this event if the actual value of as2-message-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

as2_to

(experimental) as2-to property.

Specify an array of string values to match this event if the actual value of as2-to 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

bytes

(experimental) bytes property.

Specify an array of string values to match this event if the actual value of bytes 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

client_ip

(experimental) client-ip property.

Specify an array of string values to match this event if the actual value of client-ip 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

disposition

(experimental) disposition property.

Specify an array of string values to match this event if the actual value of disposition 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

end_timestamp

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

Default:
  • Do not filter on this field

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

mdn_message_id

(experimental) mdn-message-id property.

Specify an array of string values to match this event if the actual value of mdn-message-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

mdn_subject

(experimental) mdn-subject property.

Specify an array of string values to match this event if the actual value of mdn-subject 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

mdn_type

(experimental) mdn-type property.

Specify an array of string values to match this event if the actual value of mdn-type 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

requester_file_name

(experimental) requester-file-name property.

Specify an array of string values to match this event if the actual value of requester-file-name 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

s3_attributes

(experimental) s3-attributes property.

Specify an array of string values to match this event if the actual value of s3-attributes 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

server_id

(experimental) server-id property.

Specify an array of string values to match this event if the actual value of server-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

start_timestamp

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

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

S3Attributes

class AgreementEvents.AS2MDNSendFailed.S3Attributes(*, file_bucket=None, file_key=None, json_bucket=None, json_key=None, mdn_bucket=None, mdn_key=None)

Bases: object

(experimental) Type definition for S3-attributes.

Parameters:
  • file_bucket (Optional[Sequence[str]]) – (experimental) file-bucket property. Specify an array of string values to match this event if the actual value of file-bucket 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

  • file_key (Optional[Sequence[str]]) – (experimental) file-key property. Specify an array of string values to match this event if the actual value of file-key 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

  • json_bucket (Optional[Sequence[str]]) – (experimental) json-bucket property. Specify an array of string values to match this event if the actual value of json-bucket 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

  • json_key (Optional[Sequence[str]]) – (experimental) json-key property. Specify an array of string values to match this event if the actual value of json-key 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

  • mdn_bucket (Optional[Sequence[str]]) – (experimental) mdn-bucket property. Specify an array of string values to match this event if the actual value of mdn-bucket 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

  • mdn_key (Optional[Sequence[str]]) – (experimental) mdn-key property. Specify an array of string values to match this event if the actual value of mdn-key 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:

# 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

s3_attributes = transfer_events.AgreementEvents.AS2MDNSendFailed.S3Attributes(
    file_bucket=["fileBucket"],
    file_key=["fileKey"],
    json_bucket=["jsonBucket"],
    json_key=["jsonKey"],
    mdn_bucket=["mdnBucket"],
    mdn_key=["mdnKey"]
)

Attributes

file_bucket

(experimental) file-bucket property.

Specify an array of string values to match this event if the actual value of file-bucket 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

file_key

(experimental) file-key property.

Specify an array of string values to match this event if the actual value of file-key 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

json_bucket

(experimental) json-bucket property.

Specify an array of string values to match this event if the actual value of json-bucket 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

json_key

(experimental) json-key property.

Specify an array of string values to match this event if the actual value of json-key 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

mdn_bucket

(experimental) mdn-bucket property.

Specify an array of string values to match this event if the actual value of mdn-bucket 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

mdn_key

(experimental) mdn-key property.

Specify an array of string values to match this event if the actual value of mdn-key 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

AS2PayloadReceiveCompleted

class AgreementEvents.AS2PayloadReceiveCompleted

Bases: object

(experimental) aws.transfer@AS2PayloadReceiveCompleted event types for Agreement.

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

a_s2_payload_receive_completed = transfer_events.AgreementEvents.AS2PayloadReceiveCompleted()
Stability:

experimental

AS2PayloadReceiveCompletedProps

class AgreementEvents.AS2PayloadReceiveCompleted.AS2PayloadReceiveCompletedProps(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, bytes=None, client_ip=None, end_timestamp=None, event_metadata=None, message_subject=None, requester_file_name=None, request_path=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

Bases: object

(experimental) Props type for Agreement aws.transfer@AS2PayloadReceiveCompleted event.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • bytes (Optional[Sequence[str]]) – (experimental) bytes property. Specify an array of string values to match this event if the actual value of bytes 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

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

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

  • message_subject (Optional[Sequence[str]]) – (experimental) message-subject property. Specify an array of string values to match this event if the actual value of message-subject 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

  • requester_file_name (Optional[Sequence[str]]) – (experimental) requester-file-name property. Specify an array of string values to match this event if the actual value of requester-file-name 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

  • request_path (Optional[Sequence[str]]) – (experimental) request-path property. Specify an array of string values to match this event if the actual value of request-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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

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

a_s2_payload_receive_completed_props = transfer_events.AgreementEvents.AS2PayloadReceiveCompleted.AS2PayloadReceiveCompletedProps(
    agreement_id=["agreementId"],
    as2_from=["as2From"],
    as2_message_id=["as2MessageId"],
    as2_to=["as2To"],
    bytes=["bytes"],
    client_ip=["clientIp"],
    end_timestamp=["endTimestamp"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    message_subject=["messageSubject"],
    requester_file_name=["requesterFileName"],
    request_path=["requestPath"],
    s3_attributes=transfer_events.AgreementEvents.AS2PayloadReceiveCompleted.S3Attributes(
        file_bucket=["fileBucket"],
        file_key=["fileKey"],
        json_bucket=["jsonBucket"],
        json_key=["jsonKey"]
    ),
    server_id=["serverId"],
    start_timestamp=["startTimestamp"],
    status_code=["statusCode"]
)

Attributes

agreement_id

(experimental) agreement-id property.

Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

Stability:

experimental

as2_from

(experimental) as2-from property.

Specify an array of string values to match this event if the actual value of as2-from 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

as2_message_id

(experimental) as2-message-id property.

Specify an array of string values to match this event if the actual value of as2-message-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

as2_to

(experimental) as2-to property.

Specify an array of string values to match this event if the actual value of as2-to 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

bytes

(experimental) bytes property.

Specify an array of string values to match this event if the actual value of bytes 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

client_ip

(experimental) client-ip property.

Specify an array of string values to match this event if the actual value of client-ip 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

end_timestamp

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

Default:
  • Do not filter on this field

Stability:

experimental

event_metadata

(experimental) EventBridge event metadata.

Default:

Stability:

experimental

message_subject

(experimental) message-subject property.

Specify an array of string values to match this event if the actual value of message-subject 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

request_path

(experimental) request-path property.

Specify an array of string values to match this event if the actual value of request-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

requester_file_name

(experimental) requester-file-name property.

Specify an array of string values to match this event if the actual value of requester-file-name 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

s3_attributes

(experimental) s3-attributes property.

Specify an array of string values to match this event if the actual value of s3-attributes 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

server_id

(experimental) server-id property.

Specify an array of string values to match this event if the actual value of server-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

start_timestamp

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

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

S3Attributes

class AgreementEvents.AS2PayloadReceiveCompleted.S3Attributes(*, file_bucket=None, file_key=None, json_bucket=None, json_key=None)

Bases: object

(experimental) Type definition for S3-attributes.

Parameters:
  • file_bucket (Optional[Sequence[str]]) – (experimental) file-bucket property. Specify an array of string values to match this event if the actual value of file-bucket 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

  • file_key (Optional[Sequence[str]]) – (experimental) file-key property. Specify an array of string values to match this event if the actual value of file-key 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

  • json_bucket (Optional[Sequence[str]]) – (experimental) json-bucket property. Specify an array of string values to match this event if the actual value of json-bucket 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

  • json_key (Optional[Sequence[str]]) – (experimental) json-key property. Specify an array of string values to match this event if the actual value of json-key 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:

# 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

s3_attributes = transfer_events.AgreementEvents.AS2PayloadReceiveCompleted.S3Attributes(
    file_bucket=["fileBucket"],
    file_key=["fileKey"],
    json_bucket=["jsonBucket"],
    json_key=["jsonKey"]
)

Attributes

file_bucket

(experimental) file-bucket property.

Specify an array of string values to match this event if the actual value of file-bucket 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

file_key

(experimental) file-key property.

Specify an array of string values to match this event if the actual value of file-key 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

json_bucket

(experimental) json-bucket property.

Specify an array of string values to match this event if the actual value of json-bucket 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

json_key

(experimental) json-key property.

Specify an array of string values to match this event if the actual value of json-key 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

AS2PayloadReceiveFailed

class AgreementEvents.AS2PayloadReceiveFailed

Bases: object

(experimental) aws.transfer@AS2PayloadReceiveFailed event types for Agreement.

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

a_s2_payload_receive_failed = transfer_events.AgreementEvents.AS2PayloadReceiveFailed()
Stability:

experimental

AS2PayloadReceiveFailedProps

class AgreementEvents.AS2PayloadReceiveFailed.AS2PayloadReceiveFailedProps(*, agreement_id=None, as2_from=None, as2_message_id=None, as2_to=None, client_ip=None, end_timestamp=None, event_metadata=None, failure_code=None, failure_message=None, message_subject=None, s3_attributes=None, server_id=None, start_timestamp=None, status_code=None)

Bases: object

(experimental) Props type for Agreement aws.transfer@AS2PayloadReceiveFailed event.

Parameters:
  • agreement_id (Optional[Sequence[str]]) – (experimental) agreement-id property. Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

  • as2_from (Optional[Sequence[str]]) – (experimental) as2-from property. Specify an array of string values to match this event if the actual value of as2-from 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

  • as2_message_id (Optional[Sequence[str]]) – (experimental) as2-message-id property. Specify an array of string values to match this event if the actual value of as2-message-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

  • as2_to (Optional[Sequence[str]]) – (experimental) as2-to property. Specify an array of string values to match this event if the actual value of as2-to 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

  • client_ip (Optional[Sequence[str]]) – (experimental) client-ip property. Specify an array of string values to match this event if the actual value of client-ip 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

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

  • 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

  • message_subject (Optional[Sequence[str]]) – (experimental) message-subject property. Specify an array of string values to match this event if the actual value of message-subject 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

  • s3_attributes (Union[S3Attributes, Dict[str, Any], None]) – (experimental) s3-attributes property. Specify an array of string values to match this event if the actual value of s3-attributes 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

  • server_id (Optional[Sequence[str]]) – (experimental) server-id property. Specify an array of string values to match this event if the actual value of server-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

  • start_timestamp (Optional[Sequence[str]]) – (experimental) 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. 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

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

a_s2_payload_receive_failed_props = transfer_events.AgreementEvents.AS2PayloadReceiveFailed.AS2PayloadReceiveFailedProps(
    agreement_id=["agreementId"],
    as2_from=["as2From"],
    as2_message_id=["as2MessageId"],
    as2_to=["as2To"],
    client_ip=["clientIp"],
    end_timestamp=["endTimestamp"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    failure_code=["failureCode"],
    failure_message=["failureMessage"],
    message_subject=["messageSubject"],
    s3_attributes=transfer_events.AgreementEvents.AS2PayloadReceiveFailed.S3Attributes(
        file_bucket=["fileBucket"],
        file_key=["fileKey"],
        json_bucket=["jsonBucket"],
        json_key=["jsonKey"]
    ),
    server_id=["serverId"],
    start_timestamp=["startTimestamp"],
    status_code=["statusCode"]
)

Attributes

agreement_id

(experimental) agreement-id property.

Specify an array of string values to match this event if the actual value of agreement-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 Agreement reference

Stability:

experimental

as2_from

(experimental) as2-from property.

Specify an array of string values to match this event if the actual value of as2-from 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

as2_message_id

(experimental) as2-message-id property.

Specify an array of string values to match this event if the actual value of as2-message-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

as2_to

(experimental) as2-to property.

Specify an array of string values to match this event if the actual value of as2-to 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

client_ip

(experimental) client-ip property.

Specify an array of string values to match this event if the actual value of client-ip 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

end_timestamp

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

Default:
  • Do not filter on this field

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

message_subject

(experimental) message-subject property.

Specify an array of string values to match this event if the actual value of message-subject 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

s3_attributes

(experimental) s3-attributes property.

Specify an array of string values to match this event if the actual value of s3-attributes 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

server_id

(experimental) server-id property.

Specify an array of string values to match this event if the actual value of server-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

start_timestamp

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

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

S3Attributes

class AgreementEvents.AS2PayloadReceiveFailed.S3Attributes(*, file_bucket=None, file_key=None, json_bucket=None, json_key=None)

Bases: object

(experimental) Type definition for S3-attributes.

Parameters:
  • file_bucket (Optional[Sequence[str]]) – (experimental) file-bucket property. Specify an array of string values to match this event if the actual value of file-bucket 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

  • file_key (Optional[Sequence[str]]) – (experimental) file-key property. Specify an array of string values to match this event if the actual value of file-key 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

  • json_bucket (Optional[Sequence[str]]) – (experimental) json-bucket property. Specify an array of string values to match this event if the actual value of json-bucket 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

  • json_key (Optional[Sequence[str]]) – (experimental) json-key property. Specify an array of string values to match this event if the actual value of json-key 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:

# 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

s3_attributes = transfer_events.AgreementEvents.AS2PayloadReceiveFailed.S3Attributes(
    file_bucket=["fileBucket"],
    file_key=["fileKey"],
    json_bucket=["jsonBucket"],
    json_key=["jsonKey"]
)

Attributes

file_bucket

(experimental) file-bucket property.

Specify an array of string values to match this event if the actual value of file-bucket 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

file_key

(experimental) file-key property.

Specify an array of string values to match this event if the actual value of file-key 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

json_bucket

(experimental) json-bucket property.

Specify an array of string values to match this event if the actual value of json-bucket 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

json_key

(experimental) json-key property.

Specify an array of string values to match this event if the actual value of json-key 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