Show / Hide Table of Contents

Class NotificationRuleArgs

Inheritance
System.Object
InputArgs
ResourceArgs
NotificationRuleArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.CodeStarNotifications
Assembly: Pulumi.Aws.dll
Syntax
public sealed class NotificationRuleArgs : ResourceArgs

Constructors

View Source

NotificationRuleArgs()

Declaration
public NotificationRuleArgs()

Properties

View Source

DetailType

The level of detail to include in the notifications for this resource. Possible values are BASIC and FULL.

Declaration
public Input<string> DetailType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

EventTypeIds

A list of event types associated with this notification rule. For list of allowed events see here.

Declaration
public InputList<string> EventTypeIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Name

The name of notification rule.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Resource

The ARN of the resource to associate with the notification rule.

Declaration
public Input<string> Resource { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Status

The status of the notification rule. Possible values are ENABLED and DISABLED, default is ENABLED.

Declaration
public Input<string> Status { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

Targets

Configuration blocks containing notification target information. Can be specified multiple times. At least one target must be specified on creation.

Declaration
public InputList<NotificationRuleTargetArgs> Targets { get; set; }
Property Value
Type Description
InputList<NotificationRuleTargetArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.