Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html#cfn-codedeploy-deploymentgroup-triggerconfig-triggerevents

TriggerName

The name of the notification trigger.

string? TriggerName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html#cfn-codedeploy-deploymentgroup-triggerconfig-triggername

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; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html#cfn-codedeploy-deploymentgroup-triggerconfig-triggertargetarn

Back to top Generated by DocFX