interface AdvisorRecommendationStatusResolvedProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Events.AdvisorRecommendationStatusResolved.AdvisorRecommendationStatusResolvedProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/events#AdvisorRecommendationStatusResolved_AdvisorRecommendationStatusResolvedProps |
Java | software.amazon.awscdk.mixins.preview.services.ses.events.AdvisorRecommendationStatusResolved.AdvisorRecommendationStatusResolvedProps |
Python | aws_cdk.mixins_preview.aws_ses.events.AdvisorRecommendationStatusResolved.AdvisorRecommendationStatusResolvedProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_ses ยป events ยป AdvisorRecommendationStatusResolved ยป AdvisorRecommendationStatusResolvedProps |
Props type for aws.ses@AdvisorRecommendationStatusResolved 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 advisorRecommendationStatusResolvedProps: ses_events.AdvisorRecommendationStatusResolved.AdvisorRecommendationStatusResolvedProps = {
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