Class FleetEc2InboundPermissionArgs
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.GameLift.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class FleetEc2InboundPermissionArgs : ResourceArgs
Constructors
View SourceFleetEc2InboundPermissionArgs()
Declaration
public FleetEc2InboundPermissionArgs()
Properties
View SourceFromPort
Starting value for a range of allowed port numbers.
Declaration
public Input<int> FromPort { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
IpRange
Range of allowed IP addresses expressed in CIDR notation. e.g. 000.000.000.000/[subnet mask] or 0.0.0.0/[subnet mask].
Declaration
public Input<string> IpRange { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Protocol
Network communication protocol used by the fleet. e.g. TCP or UDP
Declaration
public Input<string> Protocol { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ToPort
Ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than from_port.
Declaration
public Input<int> ToPort { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |