Documentation ¶
Index ¶
- type AuthorizationData
- type EmptyUploadException
- type Image
- type ImageAlreadyExistsException
- type ImageDetail
- type ImageDigestDoesNotMatchException
- type ImageFailure
- type ImageFailureCode
- type ImageIdentifier
- type ImageNotFoundException
- type ImageTagAlreadyExistsException
- type ImageTagDetail
- type InvalidLayerException
- type InvalidLayerPartException
- type InvalidParameterException
- type InvalidTagParameterException
- type Layer
- type LayerAlreadyExistsException
- type LayerAvailability
- type LayerFailure
- type LayerFailureCode
- type LayerPartTooSmallException
- type LayersNotFoundException
- type LimitExceededException
- type ReferencedImageDetail
- type ReferencedImagesNotFoundException
- type Registry
- type RegistryAlias
- type RegistryAliasStatus
- type RegistryCatalogData
- type RegistryNotFoundException
- type Repository
- type RepositoryAlreadyExistsException
- type RepositoryCatalogData
- type RepositoryCatalogDataInput
- type RepositoryCatalogDataNotFoundException
- type RepositoryNotEmptyException
- type RepositoryNotFoundException
- type RepositoryPolicyNotFoundException
- type ServerException
- type Tag
- type TooManyTagsException
- type UnsupportedCommandException
- type UploadNotFoundException
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthorizationData ¶
type AuthorizationData struct { // A base64-encoded string that contains authorization data for a public Amazon // ECR registry. When the string is decoded, it's presented in the format // user:password for public registry authentication using docker login . AuthorizationToken *string // The Unix time in seconds and milliseconds when the authorization token expires. // Authorization tokens are valid for 12 hours. ExpiresAt *time.Time // contains filtered or unexported fields }
An authorization token data object that corresponds to a public registry.
type EmptyUploadException ¶
type EmptyUploadException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified layer upload doesn't contain any layer parts.
func (*EmptyUploadException) Error ¶
func (e *EmptyUploadException) Error() string
func (*EmptyUploadException) ErrorCode ¶
func (e *EmptyUploadException) ErrorCode() string
func (*EmptyUploadException) ErrorFault ¶
func (e *EmptyUploadException) ErrorFault() smithy.ErrorFault
func (*EmptyUploadException) ErrorMessage ¶
func (e *EmptyUploadException) ErrorMessage() string
type Image ¶
type Image struct { // An object that contains the image tag and image digest associated with an image. ImageId *ImageIdentifier // The image manifest that's associated with the image. ImageManifest *string // The manifest media type of the image. ImageManifestMediaType *string // The Amazon Web Services account ID that's associated with the registry // containing the image. RegistryId *string // The name of the repository that's associated with the image. RepositoryName *string // contains filtered or unexported fields }
An object that represents an Amazon ECR image.
type ImageAlreadyExistsException ¶
type ImageAlreadyExistsException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified image has already been pushed, and there were no changes to the manifest or image tag after the last push.
func (*ImageAlreadyExistsException) Error ¶
func (e *ImageAlreadyExistsException) Error() string
func (*ImageAlreadyExistsException) ErrorCode ¶
func (e *ImageAlreadyExistsException) ErrorCode() string
func (*ImageAlreadyExistsException) ErrorFault ¶
func (e *ImageAlreadyExistsException) ErrorFault() smithy.ErrorFault
func (*ImageAlreadyExistsException) ErrorMessage ¶
func (e *ImageAlreadyExistsException) ErrorMessage() string
type ImageDetail ¶
type ImageDetail struct { // The artifact media type of the image. ArtifactMediaType *string // The sha256 digest of the image manifest. ImageDigest *string // The media type of the image manifest. ImageManifestMediaType *string // The date and time, expressed in standard JavaScript date format, that the // current image was pushed to the repository at. ImagePushedAt *time.Time // The size, in bytes, of the image in the repository. // // If the image is a manifest list, this is the max size of all manifests in the // list. // // Beginning with Docker version 1.9, the Docker client compresses image layers // before pushing them to a V2 Docker registry. The output of the docker images // command shows the uncompressed image size, so it might return a larger image // size than the image sizes that are returned by DescribeImages. ImageSizeInBytes *int64 // The list of tags that's associated with this image. ImageTags []string // The Amazon Web Services account ID that's associated with the public registry // where this image belongs. RegistryId *string // The name of the repository where this image belongs. RepositoryName *string // contains filtered or unexported fields }
An object that describes an image that's returned by a DescribeImages operation.
type ImageDigestDoesNotMatchException ¶
type ImageDigestDoesNotMatchException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified image digest doesn't match the digest that Amazon ECR calculated for the image.
func (*ImageDigestDoesNotMatchException) Error ¶
func (e *ImageDigestDoesNotMatchException) Error() string
func (*ImageDigestDoesNotMatchException) ErrorCode ¶
func (e *ImageDigestDoesNotMatchException) ErrorCode() string
func (*ImageDigestDoesNotMatchException) ErrorFault ¶
func (e *ImageDigestDoesNotMatchException) ErrorFault() smithy.ErrorFault
func (*ImageDigestDoesNotMatchException) ErrorMessage ¶
func (e *ImageDigestDoesNotMatchException) ErrorMessage() string
type ImageFailure ¶
type ImageFailure struct { // The code that's associated with the failure. FailureCode ImageFailureCode // The reason for the failure. FailureReason *string // The image ID that's associated with the failure. ImageId *ImageIdentifier // contains filtered or unexported fields }
An object that represents an Amazon ECR image failure.
type ImageFailureCode ¶
type ImageFailureCode string
const ( ImageFailureCodeInvalidImageDigest ImageFailureCode = "InvalidImageDigest" ImageFailureCodeInvalidImageTag ImageFailureCode = "InvalidImageTag" ImageFailureCodeImageTagDoesNotMatchDigest ImageFailureCode = "ImageTagDoesNotMatchDigest" ImageFailureCodeImageNotFound ImageFailureCode = "ImageNotFound" ImageFailureCodeMissingDigestAndTag ImageFailureCode = "MissingDigestAndTag" ImageFailureCodeImageReferencedByManifestList ImageFailureCode = "ImageReferencedByManifestList" ImageFailureCodeKmsError ImageFailureCode = "KmsError" )
Enum values for ImageFailureCode
func (ImageFailureCode) Values ¶
func (ImageFailureCode) Values() []ImageFailureCode
Values returns all known values for ImageFailureCode. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type ImageIdentifier ¶
type ImageIdentifier struct { // The sha256 digest of the image manifest. ImageDigest *string // The tag that's used for the image. ImageTag *string // contains filtered or unexported fields }
An object with identifying information for an Amazon ECR image.
type ImageNotFoundException ¶
type ImageNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The image requested doesn't exist in the specified repository.
func (*ImageNotFoundException) Error ¶
func (e *ImageNotFoundException) Error() string
func (*ImageNotFoundException) ErrorCode ¶
func (e *ImageNotFoundException) ErrorCode() string
func (*ImageNotFoundException) ErrorFault ¶
func (e *ImageNotFoundException) ErrorFault() smithy.ErrorFault
func (*ImageNotFoundException) ErrorMessage ¶
func (e *ImageNotFoundException) ErrorMessage() string
type ImageTagAlreadyExistsException ¶
type ImageTagAlreadyExistsException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified image is tagged with a tag that already exists. The repository is configured for tag immutability.
func (*ImageTagAlreadyExistsException) Error ¶
func (e *ImageTagAlreadyExistsException) Error() string
func (*ImageTagAlreadyExistsException) ErrorCode ¶
func (e *ImageTagAlreadyExistsException) ErrorCode() string
func (*ImageTagAlreadyExistsException) ErrorFault ¶
func (e *ImageTagAlreadyExistsException) ErrorFault() smithy.ErrorFault
func (*ImageTagAlreadyExistsException) ErrorMessage ¶
func (e *ImageTagAlreadyExistsException) ErrorMessage() string
type ImageTagDetail ¶
type ImageTagDetail struct { // The time stamp that indicates when the image tag was created. CreatedAt *time.Time // An object that describes the details of an image. ImageDetail *ReferencedImageDetail // The tag that's associated with the image. ImageTag *string // contains filtered or unexported fields }
An object that represents the image tag details for an image.
type InvalidLayerException ¶
type InvalidLayerException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The layer digest calculation performed by Amazon ECR when the image layer doesn't match the digest specified.
func (*InvalidLayerException) Error ¶
func (e *InvalidLayerException) Error() string
func (*InvalidLayerException) ErrorCode ¶
func (e *InvalidLayerException) ErrorCode() string
func (*InvalidLayerException) ErrorFault ¶
func (e *InvalidLayerException) ErrorFault() smithy.ErrorFault
func (*InvalidLayerException) ErrorMessage ¶
func (e *InvalidLayerException) ErrorMessage() string
type InvalidLayerPartException ¶
type InvalidLayerPartException struct { Message *string ErrorCodeOverride *string RegistryId *string RepositoryName *string UploadId *string LastValidByteReceived *int64 // contains filtered or unexported fields }
The layer part size isn't valid, or the first byte specified isn't consecutive to the last byte of a previous layer part upload.
func (*InvalidLayerPartException) Error ¶
func (e *InvalidLayerPartException) Error() string
func (*InvalidLayerPartException) ErrorCode ¶
func (e *InvalidLayerPartException) ErrorCode() string
func (*InvalidLayerPartException) ErrorFault ¶
func (e *InvalidLayerPartException) ErrorFault() smithy.ErrorFault
func (*InvalidLayerPartException) ErrorMessage ¶
func (e *InvalidLayerPartException) ErrorMessage() string
type InvalidParameterException ¶
type InvalidParameterException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified parameter is invalid. Review the available parameters for the API request.
func (*InvalidParameterException) Error ¶
func (e *InvalidParameterException) Error() string
func (*InvalidParameterException) ErrorCode ¶
func (e *InvalidParameterException) ErrorCode() string
func (*InvalidParameterException) ErrorFault ¶
func (e *InvalidParameterException) ErrorFault() smithy.ErrorFault
func (*InvalidParameterException) ErrorMessage ¶
func (e *InvalidParameterException) ErrorMessage() string
type InvalidTagParameterException ¶
type InvalidTagParameterException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
An invalid parameter has been specified. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
func (*InvalidTagParameterException) Error ¶
func (e *InvalidTagParameterException) Error() string
func (*InvalidTagParameterException) ErrorCode ¶
func (e *InvalidTagParameterException) ErrorCode() string
func (*InvalidTagParameterException) ErrorFault ¶
func (e *InvalidTagParameterException) ErrorFault() smithy.ErrorFault
func (*InvalidTagParameterException) ErrorMessage ¶
func (e *InvalidTagParameterException) ErrorMessage() string
type Layer ¶
type Layer struct { // The availability status of the image layer. LayerAvailability LayerAvailability // The sha256 digest of the image layer. LayerDigest *string // The size, in bytes, of the image layer. LayerSize *int64 // The media type of the layer, such as // application/vnd.docker.image.rootfs.diff.tar.gzip or // application/vnd.oci.image.layer.v1.tar+gzip . MediaType *string // contains filtered or unexported fields }
An object that represents an Amazon ECR image layer.
type LayerAlreadyExistsException ¶
type LayerAlreadyExistsException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The image layer already exists in the associated repository.
func (*LayerAlreadyExistsException) Error ¶
func (e *LayerAlreadyExistsException) Error() string
func (*LayerAlreadyExistsException) ErrorCode ¶
func (e *LayerAlreadyExistsException) ErrorCode() string
func (*LayerAlreadyExistsException) ErrorFault ¶
func (e *LayerAlreadyExistsException) ErrorFault() smithy.ErrorFault
func (*LayerAlreadyExistsException) ErrorMessage ¶
func (e *LayerAlreadyExistsException) ErrorMessage() string
type LayerAvailability ¶
type LayerAvailability string
const ( LayerAvailabilityAvailable LayerAvailability = "AVAILABLE" )
Enum values for LayerAvailability
func (LayerAvailability) Values ¶
func (LayerAvailability) Values() []LayerAvailability
Values returns all known values for LayerAvailability. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type LayerFailure ¶
type LayerFailure struct { // The failure code that's associated with the failure. FailureCode LayerFailureCode // The reason for the failure. FailureReason *string // The layer digest that's associated with the failure. LayerDigest *string // contains filtered or unexported fields }
An object that represents an Amazon ECR image layer failure.
type LayerFailureCode ¶
type LayerFailureCode string
const ( LayerFailureCodeInvalidLayerDigest LayerFailureCode = "InvalidLayerDigest" LayerFailureCodeMissingLayerDigest LayerFailureCode = "MissingLayerDigest" )
Enum values for LayerFailureCode
func (LayerFailureCode) Values ¶
func (LayerFailureCode) Values() []LayerFailureCode
Values returns all known values for LayerFailureCode. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type LayerPartTooSmallException ¶
type LayerPartTooSmallException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
Layer parts must be at least 5 MiB in size.
func (*LayerPartTooSmallException) Error ¶
func (e *LayerPartTooSmallException) Error() string
func (*LayerPartTooSmallException) ErrorCode ¶
func (e *LayerPartTooSmallException) ErrorCode() string
func (*LayerPartTooSmallException) ErrorFault ¶
func (e *LayerPartTooSmallException) ErrorFault() smithy.ErrorFault
func (*LayerPartTooSmallException) ErrorMessage ¶
func (e *LayerPartTooSmallException) ErrorMessage() string
type LayersNotFoundException ¶
type LayersNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified layers can't be found, or the specified layer isn't valid for this repository.
func (*LayersNotFoundException) Error ¶
func (e *LayersNotFoundException) Error() string
func (*LayersNotFoundException) ErrorCode ¶
func (e *LayersNotFoundException) ErrorCode() string
func (*LayersNotFoundException) ErrorFault ¶
func (e *LayersNotFoundException) ErrorFault() smithy.ErrorFault
func (*LayersNotFoundException) ErrorMessage ¶
func (e *LayersNotFoundException) ErrorMessage() string
type LimitExceededException ¶
type LimitExceededException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The operation didn't succeed because it would have exceeded a service limit for your account. For more information, see Amazon ECR Service Quotasin the Amazon Elastic Container Registry User Guide.
func (*LimitExceededException) Error ¶
func (e *LimitExceededException) Error() string
func (*LimitExceededException) ErrorCode ¶
func (e *LimitExceededException) ErrorCode() string
func (*LimitExceededException) ErrorFault ¶
func (e *LimitExceededException) ErrorFault() smithy.ErrorFault
func (*LimitExceededException) ErrorMessage ¶
func (e *LimitExceededException) ErrorMessage() string
type ReferencedImageDetail ¶
type ReferencedImageDetail struct { // The artifact media type of the image. ArtifactMediaType *string // The sha256 digest of the image manifest. ImageDigest *string // The media type of the image manifest. ImageManifestMediaType *string // The date and time, expressed in standard JavaScript date format, which the // current image tag was pushed to the repository at. ImagePushedAt *time.Time // The size, in bytes, of the image in the repository. // // If the image is a manifest list, this is the max size of all manifests in the // list. // // Beginning with Docker version 1.9, the Docker client compresses image layers // before pushing them to a V2 Docker registry. The output of the docker images // command shows the uncompressed image size, so it might return a larger image // size than the image sizes that are returned by DescribeImages. ImageSizeInBytes *int64 // contains filtered or unexported fields }
An object that describes the image tag details that are returned by a DescribeImageTags action.
type ReferencedImagesNotFoundException ¶
type ReferencedImagesNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The manifest list is referencing an image that doesn't exist.
func (*ReferencedImagesNotFoundException) Error ¶
func (e *ReferencedImagesNotFoundException) Error() string
func (*ReferencedImagesNotFoundException) ErrorCode ¶
func (e *ReferencedImagesNotFoundException) ErrorCode() string
func (*ReferencedImagesNotFoundException) ErrorFault ¶
func (e *ReferencedImagesNotFoundException) ErrorFault() smithy.ErrorFault
func (*ReferencedImagesNotFoundException) ErrorMessage ¶
func (e *ReferencedImagesNotFoundException) ErrorMessage() string
type Registry ¶
type Registry struct { // An array of objects that represents the aliases for a public registry. // // This member is required. Aliases []RegistryAlias // The Amazon Resource Name (ARN) of the public registry. // // This member is required. RegistryArn *string // The Amazon Web Services account ID that's associated with the registry. If you // do not specify a registry, the default public registry is assumed. // // This member is required. RegistryId *string // The URI of a public registry. The URI contains a universal prefix and the // registry alias. // // This member is required. RegistryUri *string // Indicates whether the account is a verified Amazon Web Services Marketplace // vendor. If an account is verified, each public repository receives a verified // account badge on the Amazon ECR Public Gallery. // // This member is required. Verified *bool // contains filtered or unexported fields }
The details of a public registry.
type RegistryAlias ¶
type RegistryAlias struct { // Indicates whether the registry alias is the default alias for the registry. // When the first public repository is created, your public registry is assigned a // default registry alias. // // This member is required. DefaultRegistryAlias bool // The name of the registry alias. // // This member is required. Name *string // Indicates whether the registry alias is the primary alias for the registry. If // true, the alias is the primary registry alias and is displayed in both the // repository URL and the image URI used in the docker pull commands on the Amazon // ECR Public Gallery. // // A registry alias that isn't the primary registry alias can be used in the // repository URI in a docker pull command. // // This member is required. PrimaryRegistryAlias bool // The status of the registry alias. // // This member is required. Status RegistryAliasStatus // contains filtered or unexported fields }
An object representing the aliases for a public registry. A public registry is given an alias when it's created. However, a custom alias can be set using the Amazon ECR console. For more information, see Registriesin the Amazon Elastic Container Registry User Guide.
type RegistryAliasStatus ¶
type RegistryAliasStatus string
const ( RegistryAliasStatusActive RegistryAliasStatus = "ACTIVE" RegistryAliasStatusPending RegistryAliasStatus = "PENDING" RegistryAliasStatusRejected RegistryAliasStatus = "REJECTED" )
Enum values for RegistryAliasStatus
func (RegistryAliasStatus) Values ¶
func (RegistryAliasStatus) Values() []RegistryAliasStatus
Values returns all known values for RegistryAliasStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type RegistryCatalogData ¶
type RegistryCatalogData struct { // The display name for a public registry. This appears on the Amazon ECR Public // Gallery. // // Only accounts that have the verified account badge can have a registry display // name. DisplayName *string // contains filtered or unexported fields }
The metadata for a public registry.
type RegistryNotFoundException ¶
type RegistryNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The registry doesn't exist.
func (*RegistryNotFoundException) Error ¶
func (e *RegistryNotFoundException) Error() string
func (*RegistryNotFoundException) ErrorCode ¶
func (e *RegistryNotFoundException) ErrorCode() string
func (*RegistryNotFoundException) ErrorFault ¶
func (e *RegistryNotFoundException) ErrorFault() smithy.ErrorFault
func (*RegistryNotFoundException) ErrorMessage ¶
func (e *RegistryNotFoundException) ErrorMessage() string
type Repository ¶
type Repository struct { // The date and time, in JavaScript date format, when the repository was created. CreatedAt *time.Time // The Amazon Web Services account ID that's associated with the public registry // that contains the repository. RegistryId *string // The Amazon Resource Name (ARN) that identifies the repository. The ARN contains // the arn:aws:ecr namespace, followed by the region of the repository, Amazon Web // Services account ID of the repository owner, repository namespace, and // repository name. For example, arn:aws:ecr:region:012345678910:repository/test . RepositoryArn *string // The name of the repository. RepositoryName *string // The URI for the repository. You can use this URI for container image push and // pull operations. RepositoryUri *string // contains filtered or unexported fields }
An object representing a repository.
type RepositoryAlreadyExistsException ¶
type RepositoryAlreadyExistsException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified repository already exists in the specified registry.
func (*RepositoryAlreadyExistsException) Error ¶
func (e *RepositoryAlreadyExistsException) Error() string
func (*RepositoryAlreadyExistsException) ErrorCode ¶
func (e *RepositoryAlreadyExistsException) ErrorCode() string
func (*RepositoryAlreadyExistsException) ErrorFault ¶
func (e *RepositoryAlreadyExistsException) ErrorFault() smithy.ErrorFault
func (*RepositoryAlreadyExistsException) ErrorMessage ¶
func (e *RepositoryAlreadyExistsException) ErrorMessage() string
type RepositoryCatalogData ¶
type RepositoryCatalogData struct { // The longform description of the contents of the repository. This text appears // in the repository details on the Amazon ECR Public Gallery. AboutText *string // The architecture tags that are associated with the repository. // // Only supported operating system tags appear publicly in the Amazon ECR Public // Gallery. For more information, see RepositoryCatalogDataInput. Architectures []string // The short description of the repository. Description *string // The URL that contains the logo that's associated with the repository. LogoUrl *string // Indicates whether the repository is certified by Amazon Web Services // Marketplace. MarketplaceCertified *bool // The operating system tags that are associated with the repository. // // Only supported operating system tags appear publicly in the Amazon ECR Public // Gallery. For more information, see RepositoryCatalogDataInput. OperatingSystems []string // The longform usage details of the contents of the repository. The usage text // provides context for users of the repository. UsageText *string // contains filtered or unexported fields }
The catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.
type RepositoryCatalogDataInput ¶
type RepositoryCatalogDataInput struct { // A detailed description of the contents of the repository. It's publicly visible // in the Amazon ECR Public Gallery. The text must be in markdown format. AboutText *string // The system architecture that the images in the repository are compatible with. // On the Amazon ECR Public Gallery, the following supported architectures appear // as badges on the repository and are used as search filters. // // If an unsupported tag is added to your repository catalog data, it's associated // with the repository and can be retrieved using the API but isn't discoverable in // the Amazon ECR Public Gallery. // // - ARM // // - ARM 64 // // - x86 // // - x86-64 Architectures []string // A short description of the contents of the repository. This text appears in // both the image details and also when searching for repositories on the Amazon // ECR Public Gallery. Description *string // The base64-encoded repository logo payload. // // The repository logo is only publicly visible in the Amazon ECR Public Gallery // for verified accounts. LogoImageBlob []byte // The operating systems that the images in the repository are compatible with. On // the Amazon ECR Public Gallery, the following supported operating systems appear // as badges on the repository and are used as search filters. // // If an unsupported tag is added to your repository catalog data, it's associated // with the repository and can be retrieved using the API but isn't discoverable in // the Amazon ECR Public Gallery. // // - Linux // // - Windows OperatingSystems []string // Detailed information about how to use the contents of the repository. It's // publicly visible in the Amazon ECR Public Gallery. The usage text provides // context, support information, and additional usage details for users of the // repository. The text must be in markdown format. UsageText *string // contains filtered or unexported fields }
An object that contains the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.
type RepositoryCatalogDataNotFoundException ¶
type RepositoryCatalogDataNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The repository catalog data doesn't exist.
func (*RepositoryCatalogDataNotFoundException) Error ¶
func (e *RepositoryCatalogDataNotFoundException) Error() string
func (*RepositoryCatalogDataNotFoundException) ErrorCode ¶
func (e *RepositoryCatalogDataNotFoundException) ErrorCode() string
func (*RepositoryCatalogDataNotFoundException) ErrorFault ¶
func (e *RepositoryCatalogDataNotFoundException) ErrorFault() smithy.ErrorFault
func (*RepositoryCatalogDataNotFoundException) ErrorMessage ¶
func (e *RepositoryCatalogDataNotFoundException) ErrorMessage() string
type RepositoryNotEmptyException ¶
type RepositoryNotEmptyException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified repository contains images. To delete a repository that contains images, you must force the deletion with the force parameter.
func (*RepositoryNotEmptyException) Error ¶
func (e *RepositoryNotEmptyException) Error() string
func (*RepositoryNotEmptyException) ErrorCode ¶
func (e *RepositoryNotEmptyException) ErrorCode() string
func (*RepositoryNotEmptyException) ErrorFault ¶
func (e *RepositoryNotEmptyException) ErrorFault() smithy.ErrorFault
func (*RepositoryNotEmptyException) ErrorMessage ¶
func (e *RepositoryNotEmptyException) ErrorMessage() string
type RepositoryNotFoundException ¶
type RepositoryNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified repository can't be found. Check the spelling of the specified repository and ensure that you're performing operations on the correct registry.
func (*RepositoryNotFoundException) Error ¶
func (e *RepositoryNotFoundException) Error() string
func (*RepositoryNotFoundException) ErrorCode ¶
func (e *RepositoryNotFoundException) ErrorCode() string
func (*RepositoryNotFoundException) ErrorFault ¶
func (e *RepositoryNotFoundException) ErrorFault() smithy.ErrorFault
func (*RepositoryNotFoundException) ErrorMessage ¶
func (e *RepositoryNotFoundException) ErrorMessage() string
type RepositoryPolicyNotFoundException ¶
type RepositoryPolicyNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The specified repository and registry combination doesn't have an associated repository policy.
func (*RepositoryPolicyNotFoundException) Error ¶
func (e *RepositoryPolicyNotFoundException) Error() string
func (*RepositoryPolicyNotFoundException) ErrorCode ¶
func (e *RepositoryPolicyNotFoundException) ErrorCode() string
func (*RepositoryPolicyNotFoundException) ErrorFault ¶
func (e *RepositoryPolicyNotFoundException) ErrorFault() smithy.ErrorFault
func (*RepositoryPolicyNotFoundException) ErrorMessage ¶
func (e *RepositoryPolicyNotFoundException) ErrorMessage() string
type ServerException ¶
type ServerException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
These errors are usually caused by a server-side issue.
func (*ServerException) Error ¶
func (e *ServerException) Error() string
func (*ServerException) ErrorCode ¶
func (e *ServerException) ErrorCode() string
func (*ServerException) ErrorFault ¶
func (e *ServerException) ErrorFault() smithy.ErrorFault
func (*ServerException) ErrorMessage ¶
func (e *ServerException) ErrorMessage() string
type Tag ¶
type Tag struct { // One part of a key-value pair that make up a tag. A key is a general label that // acts like a category for more specific tag values. Key *string // The optional part of a key-value pair that make up a tag. A value acts as a // descriptor within a tag category (key). Value *string // contains filtered or unexported fields }
The metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value. You define both. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
type TooManyTagsException ¶
type TooManyTagsException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The list of tags on the repository is over the limit. The maximum number of tags that can be applied to a repository is 50.
func (*TooManyTagsException) Error ¶
func (e *TooManyTagsException) Error() string
func (*TooManyTagsException) ErrorCode ¶
func (e *TooManyTagsException) ErrorCode() string
func (*TooManyTagsException) ErrorFault ¶
func (e *TooManyTagsException) ErrorFault() smithy.ErrorFault
func (*TooManyTagsException) ErrorMessage ¶
func (e *TooManyTagsException) ErrorMessage() string
type UnsupportedCommandException ¶
type UnsupportedCommandException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The action isn't supported in this Region.
func (*UnsupportedCommandException) Error ¶
func (e *UnsupportedCommandException) Error() string
func (*UnsupportedCommandException) ErrorCode ¶
func (e *UnsupportedCommandException) ErrorCode() string
func (*UnsupportedCommandException) ErrorFault ¶
func (e *UnsupportedCommandException) ErrorFault() smithy.ErrorFault
func (*UnsupportedCommandException) ErrorMessage ¶
func (e *UnsupportedCommandException) ErrorMessage() string
type UploadNotFoundException ¶
type UploadNotFoundException struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
The upload can't be found, or the specified upload ID isn't valid for this repository.
func (*UploadNotFoundException) Error ¶
func (e *UploadNotFoundException) Error() string
func (*UploadNotFoundException) ErrorCode ¶
func (e *UploadNotFoundException) ErrorCode() string
func (*UploadNotFoundException) ErrorFault ¶
func (e *UploadNotFoundException) ErrorFault() smithy.ErrorFault
func (*UploadNotFoundException) ErrorMessage ¶
func (e *UploadNotFoundException) ErrorMessage() string