Class EcrBuildAndPublishVariables
The CodePipeline variables emitted by the ECR build and publish Action.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
EcrRepositoryName
The name of the Amazon ECR repository where the image was pushed.
public string EcrRepositoryName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated