interface AdvisorRecommendationStatusOpenProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Events.AdvisorRecommendationStatusOpen.AdvisorRecommendationStatusOpenProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/events#AdvisorRecommendationStatusOpen_AdvisorRecommendationStatusOpenProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.events.AdvisorRecommendationStatusOpen.AdvisorRecommendationStatusOpenProps |
Python | aws_cdk.mixins_preview.aws_ses.events.AdvisorRecommendationStatusOpen.AdvisorRecommendationStatusOpenProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ses ยป events ยป AdvisorRecommendationStatusOpen ยป AdvisorRecommendationStatusOpenProps |
Props type for aws.ses@AdvisorRecommendationStatusOpen event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as ses_events } from '@aws-cdk/mixins-preview/aws-ses';
const advisorRecommendationStatusOpenProps: ses_events.AdvisorRecommendationStatusOpen.AdvisorRecommendationStatusOpenProps = {
data: ['data'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
version: ['version'],
};
Properties
| Name | Type | Description |
|---|---|---|
| data? | string[] | data property. |
| event | AWSEvent | EventBridge event metadata. |
| version? | string[] | version property. |
data?
Type:
string[]
(optional, default: Do not filter on this field)
data property.
Specify an array of string values to match this event if the actual value of data 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.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version 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