Show / Hide Table of Contents

Class RepositoryArgs

Inheritance
System.Object
InputArgs
ResourceArgs
RepositoryArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ecr
Assembly: Pulumi.Aws.dll
Syntax
public sealed class RepositoryArgs : ResourceArgs

Constructors

View Source

RepositoryArgs()

Declaration
public RepositoryArgs()

Properties

View Source

ImageScanningConfiguration

Configuration block that defines image scanning configuration for the repository. By default, image scanning must be manually triggered. See the ECR User Guide for more information about image scanning.

Declaration
public Input<RepositoryImageScanningConfigurationArgs> ImageScanningConfiguration { get; set; }
Property Value
Type Description
Input<RepositoryImageScanningConfigurationArgs>
View Source

ImageTagMutability

The tag mutability setting for the repository. Must be one of: MUTABLE or IMMUTABLE. Defaults to MUTABLE.

Declaration
public Input<string> ImageTagMutability { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

Name of the repository.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.