Interface CfnTriggerMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTriggerMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:26.033Z")
@Stability(Stable)
public interface CfnTriggerMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTriggerPropsMixin.
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.devopsagent.*;
Object action;
CfnTriggerMixinProps cfnTriggerMixinProps = CfnTriggerMixinProps.builder()
.action(action)
.agentSpaceId("agentSpaceId")
.condition(ConditionProperty.builder()
.schedule(ScheduleProperty.builder()
.expression("expression")
.build())
.build())
.status("status")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTriggerMixinPropsstatic final classAn implementation forCfnTriggerMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTriggerMixinProps.Builderbuilder()default ObjectThe action to perform when the trigger fires.default StringThe unique identifier of the parent Agent Space.default ObjectThe condition that causes the trigger to fire.default StringThe status of the trigger.default StringgetType()The type of trigger.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAction
The action to perform when the trigger fires.A JSON object containing actionType and task.
- See Also:
-
getAgentSpaceId
The unique identifier of the parent Agent Space.- See Also:
-
getCondition
The condition that causes the trigger to fire.Returns union: either
IResolvableorCfnTriggerPropsMixin.ConditionProperty- See Also:
-
getStatus
The status of the trigger.Active triggers fire on schedule; Inactive triggers are paused.
Default: - "Active"
- See Also:
-
getType
The type of trigger.- See Also:
-
builder
- Returns:
- a
CfnTriggerMixinProps.BuilderofCfnTriggerMixinProps
-