interface ImageRepositoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnServicePropsMixin.ImageRepositoryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnServicePropsMixin_ImageRepositoryProperty |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnServicePropsMixin.ImageRepositoryProperty |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnServicePropsMixin.ImageRepositoryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » CfnServicePropsMixin » ImageRepositoryProperty |
Describes a source image repository.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const imageRepositoryProperty: apprunner_mixins.CfnServicePropsMixin.ImageRepositoryProperty = {
imageConfiguration: {
port: 'port',
runtimeEnvironmentSecrets: [{
name: 'name',
value: 'value',
}],
runtimeEnvironmentVariables: [{
name: 'name',
value: 'value',
}],
startCommand: 'startCommand',
},
imageIdentifier: 'imageIdentifier',
imageRepositoryType: 'imageRepositoryType',
};
Properties
| Name | Type | Description |
|---|---|---|
| image | IResolvable | Image | Configuration for running the identified image. |
| image | string | The identifier of an image. |
| image | string | The type of the image repository. |
imageConfiguration?
Type:
IResolvable | Image
(optional)
Configuration for running the identified image.
imageIdentifier?
Type:
string
(optional)
The identifier of an image.
For an image in Amazon Elastic Container Registry (Amazon ECR), this is an image name. For the image name format, see Pulling an image in the Amazon ECR User Guide .
imageRepositoryType?
Type:
string
(optional)
The type of the image repository.
This reflects the repository provider and whether the repository is private or public.

.NET
Go
Java
Python
TypeScript