interface TargetContainerRepositoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ImageBuilder.CfnContainerRecipe.TargetContainerRepositoryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsimagebuilder#CfnContainerRecipe_TargetContainerRepositoryProperty |
Java | software.amazon.awscdk.services.imagebuilder.CfnContainerRecipe.TargetContainerRepositoryProperty |
Python | aws_cdk.aws_imagebuilder.CfnContainerRecipe.TargetContainerRepositoryProperty |
TypeScript | aws-cdk-lib » aws_imagebuilder » CfnContainerRecipe » TargetContainerRepositoryProperty |
The container repository where the output container image is stored.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_imagebuilder as imagebuilder } from 'aws-cdk-lib';
const targetContainerRepositoryProperty: imagebuilder.CfnContainerRecipe.TargetContainerRepositoryProperty = {
repositoryName: 'repositoryName',
service: 'service',
};
Properties
| Name | Type | Description |
|---|---|---|
| repository | string | The name of the container repository where the output container image is stored. |
| service? | string | Specifies the service in which this image was registered. |
repositoryName?
Type:
string
(optional)
The name of the container repository where the output container image is stored.
This name is prefixed by the repository location. For example, <repository location url>/repository_name .
service?
Type:
string
(optional)
Specifies the service in which this image was registered.

.NET
Go
Java
Python
TypeScript