interface TargetContainerRepositoryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ImageBuilder.CfnContainerRecipePropsMixin.TargetContainerRepositoryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsimagebuilder#CfnContainerRecipePropsMixin_TargetContainerRepositoryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.imagebuilder.CfnContainerRecipePropsMixin.TargetContainerRepositoryProperty |
Python | aws_cdk.cfn_property_mixins.aws_imagebuilder.CfnContainerRecipePropsMixin.TargetContainerRepositoryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_imagebuilder » 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 { aws_imagebuilder as imagebuilder } from '@aws-cdk/cfn-property-mixins';
const targetContainerRepositoryProperty: imagebuilder.CfnContainerRecipePropsMixin.TargetContainerRepositoryProperty = {
repositoryName: 'repositoryName',
service: 'service',
};
Properties
| Name | Type | Description |
|---|---|---|
| repository | string | IRepository | 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 | IRepository
(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