1 | import * as secretsmanager from '@aws-cdk/aws-secretsmanager';
|
2 | import { ContainerDefinition } from '../container-definition';
|
3 | import { ContainerImage, ContainerImageConfig } from '../container-image';
|
4 | import { Construct as CoreConstruct } from '@aws-cdk/core';
|
5 |
|
6 |
|
7 |
|
8 | export interface RepositoryImageProps {
|
9 | |
10 |
|
11 |
|
12 |
|
13 | readonly credentials?: secretsmanager.ISecret;
|
14 | }
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | export declare class RepositoryImage extends ContainerImage {
|
20 | private readonly imageName;
|
21 | private readonly props;
|
22 | |
23 |
|
24 |
|
25 | constructor(imageName: string, props?: RepositoryImageProps);
|
26 | bind(scope: CoreConstruct, containerDefinition: ContainerDefinition): ContainerImageConfig;
|
27 | }
|