Interface WorkGroupEvents.AthenaQueryStateChange.AthenaQueryStateChangeProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
WorkGroupEvents.AthenaQueryStateChange.AthenaQueryStateChangeProps.Jsii$Proxy
- Enclosing class:
WorkGroupEvents.AthenaQueryStateChange
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.athena.events.*;
AthenaQueryStateChangeProps athenaQueryStateChangeProps = AthenaQueryStateChangeProps.builder()
.currentState(List.of("currentState"))
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.previousState(List.of("previousState"))
.queryExecutionId(List.of("queryExecutionId"))
.sequenceNumber(List.of("sequenceNumber"))
.statementType(List.of("statementType"))
.versionId(List.of("versionId"))
.workgroupName(List.of("workgroupName"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forWorkGroupEvents.AthenaQueryStateChange.AthenaQueryStateChangeProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()(experimental) currentState property.default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) previousState property.(experimental) queryExecutionId property.(experimental) sequenceNumber property.(experimental) statementType property.(experimental) versionId property.(experimental) workgroupName property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCurrentState
(experimental) currentState property.Specify an array of string values to match this event if the actual value of currentState 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
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getPreviousState
(experimental) previousState property.Specify an array of string values to match this event if the actual value of previousState 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
-
getQueryExecutionId
(experimental) queryExecutionId property.Specify an array of string values to match this event if the actual value of queryExecutionId 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
-
getSequenceNumber
(experimental) sequenceNumber property.Specify an array of string values to match this event if the actual value of sequenceNumber 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
-
getStatementType
(experimental) statementType property.Specify an array of string values to match this event if the actual value of statementType 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
-
getVersionId
(experimental) versionId property.Specify an array of string values to match this event if the actual value of versionId 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
-
getWorkgroupName
(experimental) workgroupName property.Specify an array of string values to match this event if the actual value of workgroupName is one of the values in the array. Use one of the constructors on the
aws_events.Matchfor more advanced matching options.Default: - Filter with the WorkGroup reference
-
builder
@Stability(Experimental) static WorkGroupEvents.AthenaQueryStateChange.AthenaQueryStateChangeProps.Builder builder()
-