ManagedBlockchainProposalStatusChange

class aws_cdk.mixins_preview.aws_managedblockchain.events.ManagedBlockchainProposalStatusChange

Bases: object

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

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_proposal_status_change = managedblockchain_events.ManagedBlockchainProposalStatusChange()
Stability:

experimental

Static Methods

classmethod managed_blockchain_proposal_status_change_pattern(*, description=None, event_metadata=None, expiration_date=None, message=None, network_id=None, proposal_id=None, proposed_by_member_id=None, proposed_by_member_name=None, status=None)

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

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

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

  • proposal_id (Optional[Sequence[str]]) – (experimental) proposalId property. Specify an array of string values to match this event if the actual value of proposalId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

  • proposed_by_member_id (Optional[Sequence[str]]) – (experimental) proposedByMemberId property. Specify an array of string values to match this event if the actual value of proposedByMemberId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

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

ManagedBlockchainProposalStatusChangeProps

class ManagedBlockchainProposalStatusChange.ManagedBlockchainProposalStatusChangeProps(*, description=None, event_metadata=None, expiration_date=None, message=None, network_id=None, proposal_id=None, proposed_by_member_id=None, proposed_by_member_name=None, status=None)

Bases: object

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

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

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

  • proposal_id (Optional[Sequence[str]]) – (experimental) proposalId property. Specify an array of string values to match this event if the actual value of proposalId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

  • proposed_by_member_id (Optional[Sequence[str]]) – (experimental) proposedByMemberId property. Specify an array of string values to match this event if the actual value of proposedByMemberId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options. Default: - Do not filter on this field

  • proposed_by_member_name (Optional[Sequence[str]]) – (experimental) proposedByMemberName property. Specify an array of string values to match this event if the actual value of proposedByMemberName is one of the values in 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_proposal_status_change_props = managedblockchain_events.ManagedBlockchainProposalStatusChange.ManagedBlockchainProposalStatusChangeProps(
    description=["description"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    expiration_date=["expirationDate"],
    message=["message"],
    network_id=["networkId"],
    proposal_id=["proposalId"],
    proposed_by_member_id=["proposedByMemberId"],
    proposed_by_member_name=["proposedByMemberName"],
    status=["status"]
)

Attributes

description

(experimental) description property.

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

expiration_date

(experimental) expirationDate property.

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

proposal_id

(experimental) proposalId property.

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

proposed_by_member_id

(experimental) proposedByMemberId property.

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

proposed_by_member_name

(experimental) proposedByMemberName property.

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