# io.k8s.api.networking.v1.ServiceBackendPort

From **Kubernetes**.

ServiceBackendPort is the service port being referenced.

- Type: `object`

## Properties

### `name`

- Required: false
- Type: `string`

name is the name of the port on the Service. This is a mutually exclusive setting with "Number".

### `number`

- Required: false
- Type: `integer`
- Format: `int32`

number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with "Name".

## JSON Schema

```json
{"description":"ServiceBackendPort is the service port being referenced.","properties":{"name":{"description":"name is the name of the port on the Service. This is a mutually exclusive setting with \"Number\".","type":"string"},"number":{"description":"number is the numerical port number (e.g. 80) on the Service. This is a mutually exclusive setting with \"Name\".","format":"int32","type":"integer"}},"type":"object","x-kubernetes-map-type":"atomic"}
```
