Interface CodeGuruProfilerRecommendationStateChange.Recommendation
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CodeGuruProfilerRecommendationStateChange.Recommendation.Jsii$Proxy
- Enclosing class:
CodeGuruProfilerRecommendationStateChange
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCodeGuruProfilerRecommendationStateChange.Recommendationstatic final classAn implementation forCodeGuruProfilerRecommendationStateChange.Recommendation -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
@Stability(Experimental) @Nullable default CodeGuruProfilerRecommendationStateChange.Description getDescription()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getName
(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getReason
@Stability(Experimental) @Nullable default CodeGuruProfilerRecommendationStateChange.Reason getReason()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
getResolutionSteps
@Stability(Experimental) @Nullable default CodeGuruProfilerRecommendationStateChange.ResolutionSteps getResolutionSteps()(experimental) 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.Matchfor more advanced matching options.Default: - Do not filter on this field
-
builder
@Stability(Experimental) static CodeGuruProfilerRecommendationStateChange.Recommendation.Builder builder()
-