interface TargetContainerRepositoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Mixins.CfnContainerRecipePropsMixin.TargetContainerRepositoryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/mixins#CfnContainerRecipePropsMixin_TargetContainerRepositoryProperty |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.mixins.CfnContainerRecipePropsMixin.TargetContainerRepositoryProperty |
Python | aws_cdk.mixins_preview.aws_imagebuilder.mixins.CfnContainerRecipePropsMixin.TargetContainerRepositoryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_imagebuilder » mixins » CfnContainerRecipePropsMixin » 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 { mixins as imagebuilder_mixins } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const targetContainerRepositoryProperty: imagebuilder_mixins.CfnContainerRecipePropsMixin.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