# ParameterCustomInputOptions

- Module: [Aspire.Hosting](/reference/api/typescript/aspire.hosting.md)
- Version: `13.4.0`
- Kind: `type`
- Source: [GitHub](https://github.com/microsoft/aspire)

Options for customizing parameter inputs from polyglot app hosts.

## Definition

```typescript
type ParameterCustomInputOptions = {
  InputType?: InputType;
  Label: string;
  Description: string;
  EnableDescriptionMarkdown?: boolean;
  Options: Dict<string,string>;
  Value: string;
  Placeholder: string;
  AllowCustomChoice?: boolean;
  Disabled?: boolean;
  MaxLength?: number;
}
```

## Fields

- `InputType`: [InputType](/reference/api/typescript/aspire.hosting/inputtype.md) `optional`
- `Label`: `string`
- `Description`: `string`
- `EnableDescriptionMarkdown`: `boolean` `optional`
- `Options`: `Dict<string,string>`
- `Value`: `string`
- `Placeholder`: `string`
- `AllowCustomChoice`: `boolean` `optional`
- `Disabled`: `boolean` `optional`
- `MaxLength`: `number` `optional`
