Interface CfnDeploymentGroup.ITriggerConfigProperty
Information about notification triggers for the deployment group.
Namespace: Amazon.CDK.AWS.CodeDeploy
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDeploymentGroup.ITriggerConfigProperty
Syntax (vb)
Public Interface CfnDeploymentGroup.ITriggerConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodeDeploy;
var triggerConfigProperty = new TriggerConfigProperty {
TriggerEvents = new [] { "triggerEvents" },
TriggerName = "triggerName",
TriggerTargetArn = "triggerTargetArn"
};
Synopsis
Properties
| TriggerEvents | The event type or types that trigger notifications. |
| TriggerName | The name of the notification trigger. |
| TriggerTargetArn | The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent. |
Properties
TriggerEvents
The event type or types that trigger notifications.
string[]? TriggerEvents { get; }
Property Value
string[]
Remarks
TriggerName
The name of the notification trigger.
string? TriggerName { get; }
Property Value
Remarks
TriggerTargetArn
The Amazon Resource Name (ARN) of the Amazon Simple Notification Service topic through which notifications about deployment or instance events are sent.
string? TriggerTargetArn { get; }