RDSDBSecurityGroupEvent

class aws_cdk.mixins_preview.aws_rds.events.RDSDBSecurityGroupEvent

Bases: object

(experimental) EventBridge event pattern for aws.rds@RDSDBSecurityGroupEvent.

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_rds import events as rds_events

r_dSDBSecurity_group_event = rds_events.RDSDBSecurityGroupEvent()
Stability:

experimental

Static Methods

classmethod rds_db_security_group_event_pattern(*, date=None, event_categories=None, event_metadata=None, message=None, source_arn=None, source_identifier=None, source_type=None, tags=None)

(experimental) EventBridge event pattern for RDS DB Security Group Event.

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

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

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

RDSDBSecurityGroupEventProps

class RDSDBSecurityGroupEvent.RDSDBSecurityGroupEventProps(*, date=None, event_categories=None, event_metadata=None, message=None, source_arn=None, source_identifier=None, source_type=None, tags=None)

Bases: object

(experimental) Props type for aws.rds@RDSDBSecurityGroupEvent event.

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

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

  • tags (Optional[Mapping[str, str]]) – (experimental) Tags property. Specify an array of string values to match this event if the actual value of Tags is one of the values in 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_rds import events as rds_events

r_dSDBSecurity_group_event_props = rds_events.RDSDBSecurityGroupEvent.RDSDBSecurityGroupEventProps(
    date=["date"],
    event_categories=["eventCategories"],
    event_metadata=AWSEventMetadataProps(
        region=["region"],
        resources=["resources"],
        version=["version"]
    ),
    message=["message"],
    source_arn=["sourceArn"],
    source_identifier=["sourceIdentifier"],
    source_type=["sourceType"],
    tags={
        "tags_key": "tags"
    }
)

Attributes

date

(experimental) Date property.

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

(experimental) EventCategories property.

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

(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

source_arn

(experimental) SourceArn property.

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

(experimental) SourceIdentifier property.

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

(experimental) SourceType property.

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

tags

(experimental) Tags property.

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