EBSMultiVolumeSnapshotsCompletionStatus

class aws_cdk.mixins_preview.aws_ec2.events.EBSMultiVolumeSnapshotsCompletionStatus

Bases: object

(experimental) EventBridge event pattern for aws.ec2@EBSMultiVolumeSnapshotsCompletionStatus.

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_ec2 import events as ec2_events

e_bSMulti_volume_snapshots_completion_status = ec2_events.EBSMultiVolumeSnapshotsCompletionStatus()
Stability:

experimental

Static Methods

classmethod ebs_multi_volume_snapshots_completion_status_pattern(*, cause=None, end_time=None, event=None, event_metadata=None, request_id=None, result=None, snapshots=None, start_time=None)

(experimental) EventBridge event pattern for EBS Multi-Volume Snapshots Completion Status.

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

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

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

  • snapshots (Optional[Sequence[Union[Snapshot, Dict[str, Any]]]]) – (experimental) snapshots property. Specify an array of string values to match this event if the actual value of snapshots is one of the values in 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_time (Optional[Sequence[str]]) – (experimental) startTime property. Specify an array of string values to match this event if the actual value of startTime is one of the values in 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

EBSMultiVolumeSnapshotsCompletionStatusProps

class EBSMultiVolumeSnapshotsCompletionStatus.EBSMultiVolumeSnapshotsCompletionStatusProps(*, cause=None, end_time=None, event=None, event_metadata=None, request_id=None, result=None, snapshots=None, start_time=None)

Bases: object

(experimental) Props type for aws.ec2@EBSMultiVolumeSnapshotsCompletionStatus event.

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

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

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

  • snapshots (Optional[Sequence[Union[Snapshot, Dict[str, Any]]]]) – (experimental) snapshots property. Specify an array of string values to match this event if the actual value of snapshots is one of the values in 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_time (Optional[Sequence[str]]) – (experimental) startTime property. Specify an array of string values to match this event if the actual value of startTime is one of the values in 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_ec2 import events as ec2_events

e_bSMulti_volume_snapshots_completion_status_props = ec2_events.EBSMultiVolumeSnapshotsCompletionStatus.EBSMultiVolumeSnapshotsCompletionStatusProps(
    cause=["cause"],
    end_time=["endTime"],
    event=["event"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    request_id=["requestId"],
    result=["result"],
    snapshots=[ec2_events.EBSMultiVolumeSnapshotsCompletionStatus.Snapshot(
        snapshot_id=["snapshotId"],
        source=["source"],
        status=["status"]
    )],
    start_time=["startTime"]
)

Attributes

cause

(experimental) cause property.

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

(experimental) endTime property.

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

(experimental) event property.

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

request_id

(experimental) request-id property.

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

result

(experimental) result property.

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

snapshots

(experimental) snapshots property.

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

(experimental) startTime property.

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

Snapshot

class EBSMultiVolumeSnapshotsCompletionStatus.Snapshot(*, snapshot_id=None, source=None, status=None)

Bases: object

(experimental) Type definition for Snapshot.

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

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

# 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_ec2 import events as ec2_events

snapshot = ec2_events.EBSMultiVolumeSnapshotsCompletionStatus.Snapshot(
    snapshot_id=["snapshotId"],
    source=["source"],
    status=["status"]
)

Attributes

snapshot_id

(experimental) snapshot_id property.

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

source

(experimental) source property.

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