# HttpsCertificateExecutionConfigurationExportData

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

ATS-friendly HTTPS certificate data returned from an execution-configuration result.

## Definition

```typescript
type HttpsCertificateExecutionConfigurationExportData = {
  Subject: string;
  Thumbprint?: string;
  KeyPathExpression: string;
  PfxPathExpression: string;
  IsKeyPathReferenced: boolean;
  IsPfxPathReferenced: boolean;
  Password?: string;
}
```

## Fields

- `Subject`: `string`
- `Thumbprint`: `string` `optional`
- `KeyPathExpression`: `string`
- `PfxPathExpression`: `string`
- `IsKeyPathReferenced`: `boolean`
- `IsPfxPathReferenced`: `boolean`
- `Password`: `string` `optional`
