# PipelineConfigurationContext

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

## Definition

```typescript
interface PipelineConfigurationContext {
  model: DistributedApplicationModel;
  services: IServiceProvider;
  steps: PipelineStep[];
  getStepsByTag(tag: string): PipelineStep[];
}
```

## Properties

- `model`: [DistributedApplicationModel](/reference/api/typescript/aspire.hosting/distributedapplicationmodel.md) `get - set` -- Gets the Model property
- `services`: [IServiceProvider](/reference/api/typescript/aspire.hosting/iserviceprovider.md) `get - set` -- Gets the Services property
- `steps`: `PipelineStep[]` `get - set` -- Gets the Steps property

## Methods

- [getStepsByTag](/reference/api/typescript/aspire.hosting/pipelineconfigurationcontext/getstepsbytag.md) -- `method` -- Gets pipeline steps with the specified tag
    ```typescript
  getStepsByTag(tag: string): PipelineStep[]
  ```
