Interface JobEvents.GlueJobRunStatus.GlueJobRunStatusProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
JobEvents.GlueJobRunStatus.GlueJobRunStatusProps.Jsii$Proxy
- Enclosing class:
JobEvents.GlueJobRunStatus
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.glue.events.*;
GlueJobRunStatusProps glueJobRunStatusProps = GlueJobRunStatusProps.builder()
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.jobName(List.of("jobName"))
.jobRunId(List.of("jobRunId"))
.message(List.of("message"))
.notificationCondition(NotificationCondition.builder()
.notifyDelayAfter(List.of("notifyDelayAfter"))
.build())
.severity(List.of("severity"))
.startedOn(List.of("startedOn"))
.state(List.of("state"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forJobEvents.GlueJobRunStatus.GlueJobRunStatusPropsstatic final classAn implementation forJobEvents.GlueJobRunStatus.GlueJobRunStatusProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) jobName property.(experimental) jobRunId property.(experimental) message property.(experimental) notificationCondition property.(experimental) severity property.(experimental) startedOn property.getState()(experimental) state property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getJobName
(experimental) jobName property.Specify an array of string values to match this event if the actual value of jobName 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 Job reference
-
getJobRunId
(experimental) jobRunId property.Specify an array of string values to match this event if the actual value of jobRunId 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
-
getMessage
(experimental) message property.Specify an array of string values to match this event if the actual value of message 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
-
getNotificationCondition
@Stability(Experimental) @Nullable default JobEvents.GlueJobRunStatus.NotificationCondition getNotificationCondition()(experimental) notificationCondition property.Specify an array of string values to match this event if the actual value of notificationCondition 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
-
getSeverity
(experimental) severity property.Specify an array of string values to match this event if the actual value of severity 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
-
getStartedOn
(experimental) startedOn property.Specify an array of string values to match this event if the actual value of startedOn 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
-
getState
(experimental) state property.Specify an array of string values to match this event if the actual value of state 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
-