# io.k8s.api.networking.v1.IngressServiceBackend

From **Kubernetes**.

IngressServiceBackend references a Kubernetes Service as a Backend.

- Type: `object`

## Properties

### `name`

- Required: true
- Type: `string`

name is the referenced service. The service must exist in the same namespace as the Ingress object.

### `port`

- Required: false
- Default: `{}`

port of the referenced service. A port name or port number is required for a IngressServiceBackend.

## JSON Schema

```json
{"description":"IngressServiceBackend references a Kubernetes Service as a Backend.","properties":{"name":{"default":"","description":"name is the referenced service. The service must exist in the same namespace as the Ingress object.","type":"string"},"port":{"allOf":[{"$ref":"#/components/schemas/io.k8s.api.networking.v1.ServiceBackendPort"}],"default":{},"description":"port of the referenced service. A port name or port number is required for a IngressServiceBackend."}},"required":["name"],"type":"object"}
```
