You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Lightsail::Types::OpenInstancePublicPortsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing OpenInstancePublicPortsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  port_info: { # required
    from_port: 1,
    to_port: 1,
    protocol: "tcp", # accepts tcp, all, udp, icmp
    cidrs: ["string"],
    cidr_list_aliases: ["string"],
  },
  instance_name: "ResourceName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#instance_nameString

The name of the instance for which to open ports.

Returns:

  • (String)

    The name of the instance for which to open ports.

#port_infoTypes::PortInfo

An object to describe the ports to open for the specified instance.

Returns:

  • (Types::PortInfo)

    An object to describe the ports to open for the specified instance.