interface CodeGuruProfilerRecommendationStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeGuruProfiler.Events.CodeGuruProfilerRecommendationStateChange.CodeGuruProfilerRecommendationStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodeguruprofiler/events#CodeGuruProfilerRecommendationStateChange_CodeGuruProfilerRecommendationStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.codeguruprofiler.events.CodeGuruProfilerRecommendationStateChange.CodeGuruProfilerRecommendationStateChangeProps |
Python | aws_cdk.mixins_preview.aws_codeguruprofiler.events.CodeGuruProfilerRecommendationStateChange.CodeGuruProfilerRecommendationStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_codeguruprofiler ยป events ยป CodeGuruProfilerRecommendationStateChange ยป CodeGuruProfilerRecommendationStateChangeProps |
Props type for aws.codeguruprofiler@CodeGuruProfilerRecommendationStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as codeguruprofiler_events } from '@aws-cdk/mixins-preview/aws-codeguruprofiler';
const codeGuruProfilerRecommendationStateChangeProps: codeguruprofiler_events.CodeGuruProfilerRecommendationStateChange.CodeGuruProfilerRecommendationStateChangeProps = {
computeInstanceArns: ['computeInstanceArns'],
deduplicationId: ['deduplicationId'],
eventEndTime: ['eventEndTime'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
eventStartTime: ['eventStartTime'],
expiresOn: ['expiresOn'],
recommendation: {
description: {
value: ['value'],
},
name: {
value: ['value'],
},
reason: {
value: ['value'],
},
resolutionSteps: {
value: ['value'],
},
},
schema: ['schema'],
severity: ['severity'],
sourceUrl: ['sourceUrl'],
status: ['status'],
title: {
value: ['value'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string[] | computeInstanceArns property. |
| deduplication | string[] | deduplicationId property. |
| event | string[] | eventEndTime property. |
| event | AWSEvent | EventBridge event metadata. |
| event | string[] | eventStartTime property. |
| expires | string[] | expiresOn property. |
| recommendation? | Recommendation | recommendation property. |
| schema? | string[] | schema property. |
| severity? | string[] | severity property. |
| source | string[] | sourceUrl property. |
| status? | string[] | status property. |
| title? | Title | title property. |
computeInstanceArns?
Type:
string[]
(optional, default: Do not filter on this field)
computeInstanceArns property.
Specify an array of string values to match this event if the actual value of computeInstanceArns is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
deduplicationId?
Type:
string[]
(optional, default: Do not filter on this field)
deduplicationId property.
Specify an array of string values to match this event if the actual value of deduplicationId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventEndTime?
Type:
string[]
(optional, default: Do not filter on this field)
eventEndTime property.
Specify an array of string values to match this event if the actual value of eventEndTime 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.
eventStartTime?
Type:
string[]
(optional, default: Do not filter on this field)
eventStartTime property.
Specify an array of string values to match this event if the actual value of eventStartTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
expiresOn?
Type:
string[]
(optional, default: Do not filter on this field)
expiresOn property.
Specify an array of string values to match this event if the actual value of expiresOn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
recommendation?
Type:
Recommendation
(optional, default: Do not filter on this field)
recommendation property.
Specify an array of string values to match this event if the actual value of recommendation is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
schema?
Type:
string[]
(optional, default: Do not filter on this field)
schema property.
Specify an array of string values to match this event if the actual value of schema is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
severity?
Type:
string[]
(optional, default: Do not filter on this field)
severity property.
Specify an array of string values to match this event if the actual value of severity is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
sourceUrl?
Type:
string[]
(optional, default: Do not filter on this field)
sourceUrl property.
Specify an array of string values to match this event if the actual value of sourceUrl is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
status?
Type:
string[]
(optional, default: Do not filter on this field)
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.
title?
Type:
Title
(optional, default: Do not filter on this field)
title property.
Specify an array of string values to match this event if the actual value of title 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