# ContainerImagePushOptionsCallbackContext

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

Provides context information for container image push options callbacks.

## Definition

```typescript
interface ContainerImagePushOptionsCallbackContext {
  readonly cancellationToken: cancellationToken;
  readonly options: ContainerImagePushOptions;
  readonly resource: IResource;
}
```

## Properties

- `cancellationToken`: `cancellationToken` `get` -- Gets the cancellation token to observe while configuring image push options.
- `options`: [ContainerImagePushOptions](/reference/api/typescript/aspire.hosting/containerimagepushoptions.md) `get` -- Gets the container image push options that can be modified by the callback.
- `resource`: [IResource](/reference/api/typescript/aspire.hosting/iresource.md) `get` -- Gets the resource being configured for container image push operations.
