Amazon.EC2.Model.CreateCustomerGatewayRequest.CreateCustomerGatewayRequest C# (CSharp) Method

CreateCustomerGatewayRequest() public method

Instantiates CreateCustomerGatewayRequest with the parameterized properties
public CreateCustomerGatewayRequest ( GatewayType type, string publicIp, int bgpAsn ) : System
type GatewayType The type of VPN connection that this customer gateway supports (ipsec.1).
publicIp string The Internet-routable IP address for the customer gateway's outside interface. The address must be static.
bgpAsn int For devices that support BGP, the customer gateway's BGP ASN. Default: 65000
return System
        public CreateCustomerGatewayRequest(GatewayType type, string publicIp, int bgpAsn)
        {
            _type = type;
            _publicIp = publicIp;
            _bgpAsn = bgpAsn;
        }

Same methods

CreateCustomerGatewayRequest::CreateCustomerGatewayRequest ( ) : System