# Method

- Module: [Aspire.Hosting.AWS](/reference/api/typescript/aspire.hosting.aws.md)
- Version: `13.7.2`
- Kind: `enum`
- Source: [GitHub](https://github.com/aws/integrations-on-dotnet-aspire-for-aws)

## Definition

```typescript
enum Method {
  Any = 0,
  Get = 1,
  Post = 2,
  Put = 3,
  Delete = 4,
  Patch = 5,
  Head = 6,
  Options = 7,
}
```

## Values

- `Any` = `0`
- `Get` = `1`
- `Post` = `2`
- `Put` = `3`
- `Delete` = `4`
- `Patch` = `5`
- `Head` = `6`
- `Options` = `7`
