Show / Hide Table of Contents

Class EventRuleState

Inheritance
System.Object
InputArgs
ResourceArgs
EventRuleState
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.CloudWatch
Assembly: Pulumi.Aws.dll
Syntax
public sealed class EventRuleState : ResourceArgs

Constructors

View Source

EventRuleState()

Declaration
public EventRuleState()

Properties

View Source

Arn

The Amazon Resource Name (ARN) of the rule.

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

Description

The description of the rule.

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

EventPattern

Event pattern described a JSON object. See full documentation of CloudWatch Events and Event Patterns for details.

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

IsEnabled

Whether the rule should be enabled (defaults to true).

Declaration
public Input<bool> IsEnabled { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

The rule's name. By default generated by this provider.

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

NamePrefix

The rule's name. Conflicts with name.

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

RoleArn

The Amazon Resource Name (ARN) associated with the role that is used for target invocation.

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

ScheduleExpression

The scheduling expression. For example, cron(0 20 * * ? *) or rate(5 minutes).

Declaration
public Input<string> ScheduleExpression { 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
Back to top Copyright 2016-2020, Pulumi Corporation.