Show / Hide Table of Contents

Class EcrBuildAndPublishVariables

The CodePipeline variables emitted by the ECR build and publish Action.

Inheritance
object
EcrBuildAndPublishVariables
Implements
IEcrBuildAndPublishVariables
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodePipeline.Actions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EcrBuildAndPublishVariables : IEcrBuildAndPublishVariables
Syntax (vb)
Public Class EcrBuildAndPublishVariables Implements IEcrBuildAndPublishVariables
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodePipeline.Actions;

            var ecrBuildAndPublishVariables = new EcrBuildAndPublishVariables {
                EcrImageDigestId = "ecrImageDigestId",
                EcrRepositoryName = "ecrRepositoryName"
            };

Synopsis

Constructors

EcrBuildAndPublishVariables()

The CodePipeline variables emitted by the ECR build and publish Action.

Properties

EcrImageDigestId

The sha256 digest of the image manifest.

EcrRepositoryName

The name of the Amazon ECR repository where the image was pushed.

Constructors

EcrBuildAndPublishVariables()

The CodePipeline variables emitted by the ECR build and publish Action.

public EcrBuildAndPublishVariables()
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodePipeline.Actions;

            var ecrBuildAndPublishVariables = new EcrBuildAndPublishVariables {
                EcrImageDigestId = "ecrImageDigestId",
                EcrRepositoryName = "ecrRepositoryName"
            };

Properties

EcrImageDigestId

The sha256 digest of the image manifest.

public string EcrImageDigestId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

EcrRepositoryName

The name of the Amazon ECR repository where the image was pushed.

public string EcrRepositoryName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IEcrBuildAndPublishVariables
Back to top Generated by DocFX