Show / Hide Table of Contents

Class ListenerArgs

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

Constructors

View Source

ListenerArgs()

Declaration
public ListenerArgs()

Properties

View Source

AcceleratorArn

The Amazon Resource Name (ARN) of your accelerator.

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

ClientAffinity

Direct all requests from a user to the same endpoint. Valid values are NONE, SOURCE_IP. Default: NONE. If NONE, Global Accelerator uses the "five-tuple" properties of source IP address, source port, destination IP address, destination port, and protocol to select the hash value. If SOURCE_IP, Global Accelerator uses the "two-tuple" properties of source (client) IP address and destination IP address to select the hash value.

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

PortRanges

The list of port ranges for the connections from clients to the accelerator. Fields documented below.

Declaration
public InputList<ListenerPortRangeArgs> PortRanges { get; set; }
Property Value
Type Description
InputList<ListenerPortRangeArgs>
View Source

Protocol

The protocol for the connections from clients to the accelerator. Valid values are TCP, UDP.

Declaration
public Input<string> Protocol { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.