interface RDSDBClusterEventProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Events.RDSDBClusterEvent.RDSDBClusterEventProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/events#RDSDBClusterEvent_RDSDBClusterEventProps |
Java | software.amazon.awscdk.mixins.preview.services.rds.events.RDSDBClusterEvent.RDSDBClusterEventProps |
Python | aws_cdk.mixins_preview.aws_rds.events.RDSDBClusterEvent.RDSDBClusterEventProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_rds ยป events ยป RDSDBClusterEvent ยป RDSDBClusterEventProps |
Props type for aws.rds@RDSDBClusterEvent event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as rds_events } from '@aws-cdk/mixins-preview/aws-rds';
const rDSDBClusterEventProps: rds_events.RDSDBClusterEvent.RDSDBClusterEventProps = {
date: ['date'],
eventCategories: ['eventCategories'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
message: ['message'],
sourceArn: ['sourceArn'],
sourceIdentifier: ['sourceIdentifier'],
sourceType: ['sourceType'],
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| date? | string[] | Date property. |
| event | string[] | EventCategories property. |
| event | AWSEvent | EventBridge event metadata. |
| message? | string[] | Message property. |
| source | string[] | SourceArn property. |
| source | string[] | SourceIdentifier property. |
| source | string[] | SourceType property. |
| tags? | { [string]: string } | Tags property. |
date?
Type:
string[]
(optional, default: Do not filter on this field)
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.
eventCategories?
Type:
string[]
(optional, default: Do not filter on this field)
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.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
message?
Type:
string[]
(optional, default: Do not filter on this field)
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.
sourceArn?
Type:
string[]
(optional, default: Do not filter on this field)
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.
sourceIdentifier?
Type:
string[]
(optional, default: Do not filter on this field)
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.
sourceType?
Type:
string[]
(optional, default: Do not filter on this field)
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.
tags?
Type:
{ [string]: string }
(optional, default: Do not filter on this field)
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.

.NET
Go
Java
Python
TypeScript