Show / Hide Table of Contents

Class FleetEc2InboundPermissionArgs

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

Constructors

View Source

FleetEc2InboundPermissionArgs()

Declaration
public FleetEc2InboundPermissionArgs()

Properties

View Source

FromPort

Starting value for a range of allowed port numbers.

Declaration
public Input<int> FromPort { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.