@Stability(value=Stable)
public static interface CfnDeploymentGroup.TriggerConfigProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codedeploy.*;
TriggerConfigProperty triggerConfigProperty = TriggerConfigProperty.builder()
.triggerEvents(List.of("triggerEvents"))
.triggerName("triggerName")
.triggerTargetArn("triggerTargetArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDeploymentGroup.TriggerConfigProperty.Builder
A builder for
CfnDeploymentGroup.TriggerConfigProperty |
static class |
CfnDeploymentGroup.TriggerConfigProperty.Jsii$Proxy
An implementation for
CfnDeploymentGroup.TriggerConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDeploymentGroup.TriggerConfigProperty.Builder |
builder() |
default List<String> |
getTriggerEvents()
The event type or types that trigger notifications.
|
default String |
getTriggerName()
The name of the notification trigger.
|
default String |
getTriggerTargetArn()
The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent.
|
@Stability(value=Stable) @Nullable default List<String> getTriggerEvents()
@Stability(value=Stable) @Nullable default String getTriggerName()
@Stability(value=Stable) @Nullable default String getTriggerTargetArn()
@Stability(value=Stable) static CfnDeploymentGroup.TriggerConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.