interface Recommendation
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeGuruProfiler.Events.CodeGuruProfilerRecommendationStateChange.Recommendation |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodeguruprofiler/events#CodeGuruProfilerRecommendationStateChange_Recommendation |
Java | software.amazon.awscdk.mixins.preview.services.codeguruprofiler.events.CodeGuruProfilerRecommendationStateChange.Recommendation |
Python | aws_cdk.mixins_preview.aws_codeguruprofiler.events.CodeGuruProfilerRecommendationStateChange.Recommendation |
TypeScript | @aws-cdk/mixins-preview ยป aws_codeguruprofiler ยป events ยป CodeGuruProfilerRecommendationStateChange ยป Recommendation |
Type definition for Recommendation.
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 recommendation: codeguruprofiler_events.CodeGuruProfilerRecommendationStateChange.Recommendation = {
description: {
value: ['value'],
},
name: {
value: ['value'],
},
reason: {
value: ['value'],
},
resolutionSteps: {
value: ['value'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | Description | description property. |
| name? | Name | name property. |
| reason? | Reason | reason property. |
| resolution | Resolution | resolutionSteps property. |
description?
Type:
Description
(optional, default: Do not filter on this field)
description property.
Specify an array of string values to match this event if the actual value of description is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
name?
Type:
Name
(optional, default: Do not filter on this field)
name property.
Specify an array of string values to match this event if the actual value of name is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
reason?
Type:
Reason
(optional, default: Do not filter on this field)
reason property.
Specify an array of string values to match this event if the actual value of reason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
resolutionSteps?
Type:
Resolution
(optional, default: Do not filter on this field)
resolutionSteps property.
Specify an array of string values to match this event if the actual value of resolutionSteps 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