Interface AWSXRayInsightUpdate.Event
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSXRayInsightUpdate.Event.Jsii$Proxy
- Enclosing class:
AWSXRayInsightUpdate
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.xray.events.*;
Object names;
Event event = Event.builder()
.clientRequestImpactStatistics(ClientRequestImpactStatistics.builder()
.faultCount(List.of("faultCount"))
.okCount(List.of("okCount"))
.totalCount(List.of("totalCount"))
.build())
.eventTime(List.of("eventTime"))
.rootCauseServiceRequestImpactStatistics(ClientRequestImpactStatistics.builder()
.faultCount(List.of("faultCount"))
.okCount(List.of("okCount"))
.totalCount(List.of("totalCount"))
.build())
.summary(List.of("summary"))
.topAnomalousServices(List.of(AwsxRayInsightUpdateItem.builder()
.serviceId(ServiceId.builder()
.accountId(List.of("accountId"))
.name(List.of("name"))
.names(List.of(names))
.type(List.of("type"))
.build())
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSXRayInsightUpdate.Eventstatic final classAn implementation forAWSXRayInsightUpdate.Event -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) ClientRequestImpactStatistics property.(experimental) EventTime property.(experimental) RootCauseServiceRequestImpactStatistics property.(experimental) Summary property.(experimental) TopAnomalousServices property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientRequestImpactStatistics
@Stability(Experimental) @Nullable default AWSXRayInsightUpdate.ClientRequestImpactStatistics getClientRequestImpactStatistics()(experimental) ClientRequestImpactStatistics property.Specify an array of string values to match this event if the actual value of ClientRequestImpactStatistics 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
-
getEventTime
(experimental) EventTime property.Specify an array of string values to match this event if the actual value of EventTime 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
-
getRootCauseServiceRequestImpactStatistics
@Stability(Experimental) @Nullable default AWSXRayInsightUpdate.ClientRequestImpactStatistics getRootCauseServiceRequestImpactStatistics()(experimental) RootCauseServiceRequestImpactStatistics property.Specify an array of string values to match this event if the actual value of RootCauseServiceRequestImpactStatistics 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
-
getSummary
(experimental) Summary property.Specify an array of string values to match this event if the actual value of Summary 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
-
getTopAnomalousServices
@Stability(Experimental) @Nullable default List<AWSXRayInsightUpdate.AwsxRayInsightUpdateItem> getTopAnomalousServices()(experimental) TopAnomalousServices property.Specify an array of string values to match this event if the actual value of TopAnomalousServices 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
- Returns:
- a
AWSXRayInsightUpdate.Event.BuilderofAWSXRayInsightUpdate.Event
-