Interface CodeGuruProfilerRecommendationStateChange.Recommendation

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CodeGuruProfilerRecommendationStateChange.Recommendation.Jsii$Proxy
Enclosing class:
CodeGuruProfilerRecommendationStateChange

@Stability(Experimental) public static interface CodeGuruProfilerRecommendationStateChange.Recommendation extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.mixins.preview.services.codeguruprofiler.events.*;
 Recommendation recommendation = Recommendation.builder()
         .description(Description.builder()
                 .value(List.of("value"))
                 .build())
         .name(Name.builder()
                 .value(List.of("value"))
                 .build())
         .reason(Reason.builder()
                 .value(List.of("value"))
                 .build())
         .resolutionSteps(ResolutionSteps.builder()
                 .value(List.of("value"))
                 .build())
         .build();