Skip to content

Describe Image Signing Status

ecr_describe_image_signing_status R Documentation

Returns the signing status for a specified image

Description

Returns the signing status for a specified image. If the image matched signing rules that reference different signing profiles, a status is returned for each profile.

For more information, see Managed signing in the Amazon Elastic Container Registry User Guide.

Usage

ecr_describe_image_signing_status(repositoryName, imageId, registryId)

Arguments

repositoryName

[required] The name of the repository that contains the image.

imageId

[required] An object containing identifying information for an image.

registryId

The Amazon Web Services account ID associated with the registry that contains the repository. If you do not specify a registry, the default registry is assumed.

Value

A list with the following syntax:

list(
  repositoryName = "string",
  imageId = list(
    imageDigest = "string",
    imageTag = "string"
  ),
  registryId = "string",
  signingStatuses = list(
    list(
      signingProfileArn = "string",
      failureCode = "string",
      failureReason = "string",
      status = "IN_PROGRESS"|"COMPLETE"|"FAILED"
    )
  )
)

Request syntax

svc$describe_image_signing_status(
  repositoryName = "string",
  imageId = list(
    imageDigest = "string",
    imageTag = "string"
  ),
  registryId = "string"
)