ManagedBlockchainInvitationStatusChange

class aws_cdk.mixins_preview.aws_managedblockchain.events.ManagedBlockchainInvitationStatusChange

Bases: object

(experimental) EventBridge event pattern for aws.managedblockchain@ManagedBlockchainInvitationStatusChange.

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_managedblockchain import events as managedblockchain_events

managed_blockchain_invitation_status_change = managedblockchain_events.ManagedBlockchainInvitationStatusChange()
Stability:

experimental

Static Methods

classmethod managed_blockchain_invitation_status_change_pattern(*, accepted_at=None, created_at=None, event_metadata=None, expires_at=None, invitation_id=None, message=None, network_id=None, rejected_at=None, status=None)

(experimental) EventBridge event pattern for Managed Blockchain Invitation Status Change.

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

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

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

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

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

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

ManagedBlockchainInvitationStatusChangeProps

class ManagedBlockchainInvitationStatusChange.ManagedBlockchainInvitationStatusChangeProps(*, accepted_at=None, created_at=None, event_metadata=None, expires_at=None, invitation_id=None, message=None, network_id=None, rejected_at=None, status=None)

Bases: object

(experimental) Props type for aws.managedblockchain@ManagedBlockchainInvitationStatusChange event.

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

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

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

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

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

  • rejected_at (Optional[Sequence[str]]) – (experimental) rejectedAt property. Specify an array of string values to match this event if the actual value of rejectedAt 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 (Optional[Sequence[str]]) – (experimental) status property. Specify an array of string values to match this event if the actual value of status is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

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

managed_blockchain_invitation_status_change_props = managedblockchain_events.ManagedBlockchainInvitationStatusChange.ManagedBlockchainInvitationStatusChangeProps(
    accepted_at=["acceptedAt"],
    created_at=["createdAt"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    expires_at=["expiresAt"],
    invitation_id=["invitationId"],
    message=["message"],
    network_id=["networkId"],
    rejected_at=["rejectedAt"],
    status=["status"]
)

Attributes

accepted_at

(experimental) acceptedAt property.

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

created_at

(experimental) createdAt property.

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

expires_at

(experimental) expiresAt property.

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

invitation_id

(experimental) invitationId property.

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

(experimental) message property.

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

network_id

(experimental) networkId property.

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

rejected_at

(experimental) rejectedAt property.

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

(experimental) status property.

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