UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

19 lines (18 loc) 754 B
"use strict"; // CloudFormation Resource AWS::ECR::Repository Object.defineProperty(exports, "__esModule", { value: true }); exports.Repository_Type = void 0; const base_1 = require("../../base"); exports.Repository_Type = 'AWS::ECR::Repository'; /** * The AWS::ECR::Repository resource specifies an Amazon Elastic * Container Registry (Amazon ECR) repository, where users can push and * pull Docker images. For more information, see * https://docs.aws.amazon.com/AmazonECR/latest/userguide/Repositories.html * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repository.html} */ function Repository(props) { return new base_1.CfnResource(exports.Repository_Type, props); } exports.default = Repository;