# Ipam

- Kind: `class`
- Package: [Aspire.Hosting.Docker](/reference/api/csharp/aspire.hosting.docker.md)
- Version: `13.3.0`
- Namespace: `Aspire.Hosting.Docker.Resources.ServiceNodes`
- Target framework: `net8.0`
- Source: [GitHub](https://github.com/microsoft/aspire/blob/5bd693ae1897dee5e2ce71c2cc08879c1c7eff51/src/Aspire.Hosting.Docker/Resources/ServiceNodes/Ipam.cs)

Represents the IP Address Management (IPAM) configuration for a Docker network.

## Definition

```csharp
namespace Aspire.Hosting.Docker.Resources.ServiceNodes;

public sealed class Ipam
{
    // ...
}
```

## Remarks

This class defines the properties related to IPAM, which is responsible for assigning, managing, and configuring IP-related settings for Docker networks. The configuration includes the driver used for IPAM, specific configuration details, and additional options for customization.

## Constructors

- [Ipam](/reference/api/csharp/aspire.hosting.docker/ipam/constructors.md#constructor)

## Properties

- [Config](/reference/api/csharp/aspire.hosting.docker/ipam/properties.md#config) : `List<Dictionary<string, string>>` `get; set` -- Represents a configuration for IP Address Management (IPAM). This property is a collection of key-value pairs that define specific IPAM configuration settings.
- [Driver](/reference/api/csharp/aspire.hosting.docker/ipam/properties.md#driver) : `string?` `get; set` -- Gets or sets the driver used by the IPAM (IP Address Management) configuration. The driver specifies the type of IPAM driver to be used in the Docker network configuration.
- [Options](/reference/api/csharp/aspire.hosting.docker/ipam/properties.md#options) : `Dictionary<string, string>` `get; set` -- A collection of key-value pairs representing options for the IPAM configuration.
