Interface CfnEventBridgeRuleTemplateMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventBridgeRuleTemplateMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:29.905Z")
@Stability(Stable)
public interface CfnEventBridgeRuleTemplateMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEventBridgeRuleTemplatePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.medialive.*;
CfnEventBridgeRuleTemplateMixinProps cfnEventBridgeRuleTemplateMixinProps = CfnEventBridgeRuleTemplateMixinProps.builder()
.description("description")
.eventTargets(List.of(EventBridgeRuleTemplateTargetProperty.builder()
.arn("arn")
.build()))
.eventType("eventType")
.groupIdentifier("groupIdentifier")
.name("name")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventBridgeRuleTemplateMixinPropsstatic final classAn implementation forCfnEventBridgeRuleTemplateMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA resource's optional description.default ObjectThe destinations that will receive the event notifications.default StringThe type of event to match with the rule.default StringAn eventbridge rule template group's identifier.default StringgetName()A resource's name.getTags()Represents the tags associated with a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A resource's optional description.- See Also:
-
getEventTargets
The destinations that will receive the event notifications.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnEventBridgeRuleTemplatePropsMixin.EventBridgeRuleTemplateTargetProperty>- See Also:
-
getEventType
The type of event to match with the rule.- See Also:
-
getGroupIdentifier
An eventbridge rule template group's identifier.Can be either be its id or current name.
- See Also:
-
getName
A resource's name.Names must be unique within the scope of a resource type in a specific region.
- See Also:
-
getTags
Represents the tags associated with a resource.- See Also:
-
builder
-