Interface InstanceEvents.OpsWorksAlert.OpsWorksAlertProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InstanceEvents.OpsWorksAlert.OpsWorksAlertProps.Jsii$Proxy
- Enclosing class:
InstanceEvents.OpsWorksAlert
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.opsworks.events.*;
OpsWorksAlertProps opsWorksAlertProps = OpsWorksAlertProps.builder()
.eventMetadata(AWSEventMetadataProps.builder()
.region(List.of("region"))
.resources(List.of("resources"))
.version(List.of("version"))
.build())
.instanceId(List.of("instanceId"))
.message(List.of("message"))
.stackId(List.of("stackId"))
.type(List.of("type"))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forInstanceEvents.OpsWorksAlert.OpsWorksAlertPropsstatic final classAn implementation forInstanceEvents.OpsWorksAlert.OpsWorksAlertProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default AWSEventMetadataProps(experimental) EventBridge event metadata.(experimental) instance-id property.(experimental) message property.(experimental) stack-id property.getType()(experimental) type property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventMetadata
(experimental) EventBridge event metadata.Default: - -
-
getInstanceId
(experimental) instance-id property.Specify an array of string values to match this event if the actual value of instance-id 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 Instance reference
-
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
-
getStackId
(experimental) stack-id property.Specify an array of string values to match this event if the actual value of stack-id 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
-
getType
(experimental) type property.Specify an array of string values to match this event if the actual value of type 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
-