Class ListenerRuleActionArgs
Inherited Members
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.ApplicationLoadBalancing.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ListenerRuleActionArgs : ResourceArgs
Constructors
View SourceListenerRuleActionArgs()
Declaration
public ListenerRuleActionArgs()
Properties
View SourceAuthenticateCognito
Information for creating an authenticate action using Cognito. Required if type is authenticate-cognito.
Declaration
public Input<ListenerRuleActionAuthenticateCognitoArgs> AuthenticateCognito { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ListenerRuleActionAuthenticateCognitoArgs> |
AuthenticateOidc
Information for creating an authenticate action using OIDC. Required if type is authenticate-oidc.
Declaration
public Input<ListenerRuleActionAuthenticateOidcArgs> AuthenticateOidc { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ListenerRuleActionAuthenticateOidcArgs> |
FixedResponse
Information for creating an action that returns a custom HTTP response. Required if type is fixed-response.
Declaration
public Input<ListenerRuleActionFixedResponseArgs> FixedResponse { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ListenerRuleActionFixedResponseArgs> |
Order
Declaration
public Input<int> Order { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Redirect
Information for creating a redirect action. Required if type is redirect.
Declaration
public Input<ListenerRuleActionRedirectArgs> Redirect { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ListenerRuleActionRedirectArgs> |
TargetGroupArn
The ARN of the Target Group to which to route traffic. Required if type is forward.
Declaration
public Input<string> TargetGroupArn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Type
The type of routing action. Valid values are forward, redirect, fixed-response, authenticate-cognito and authenticate-oidc.
Declaration
public Input<string> Type { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |