Interface AWSServiceEventViaCloudTrail.ServiceEventDetails
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AWSServiceEventViaCloudTrail.ServiceEventDetails.Jsii$Proxy
- Enclosing class:
AWSServiceEventViaCloudTrail
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.appmesh.events.*;
ServiceEventDetails serviceEventDetails = ServiceEventDetails.builder()
.connectionId(List.of("connectionId"))
.eventStatus(List.of("eventStatus"))
.failureReason(List.of("failureReason"))
.nodeArn(List.of("nodeArn"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAWSServiceEventViaCloudTrail.ServiceEventDetailsstatic final classAn implementation forAWSServiceEventViaCloudTrail.ServiceEventDetails -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) connectionId property.(experimental) eventStatus property.(experimental) failureReason property.(experimental) nodeArn property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConnectionId
(experimental) connectionId property.Specify an array of string values to match this event if the actual value of connectionId 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
-
getEventStatus
(experimental) eventStatus property.Specify an array of string values to match this event if the actual value of eventStatus 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
-
getFailureReason
(experimental) failureReason property.Specify an array of string values to match this event if the actual value of failureReason 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
-
getNodeArn
(experimental) nodeArn property.Specify an array of string values to match this event if the actual value of nodeArn 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
-