OBJECT

Port

A mapped port in a ManagedNode

link GraphQL Schema definition

  • type Port {
  • # The exposed container port. Must be betweeen 1 and 65535.
  • containerPort: Int!
  • # A human-readable description.
  • description: String!
  • # The host address the port is exposed on.
  • hostAddress: AWSIPAddress
  • # The exposed host port. Must be betweeen 1024 and 65535.
  • hostPort: Int!
  • # The protocol that will be used by the port.
  • protocol: Protocol!
  • }