Skip to content

Delete Repository Creation Template

ecr_delete_repository_creation_template R Documentation

Deletes a repository creation template

Description

Deletes a repository creation template.

Usage

ecr_delete_repository_creation_template(prefix)

Arguments

prefix

[required] The repository namespace prefix associated with the repository creation template.

Value

A list with the following syntax:

list(
  registryId = "string",
  repositoryCreationTemplate = list(
    prefix = "string",
    description = "string",
    encryptionConfiguration = list(
      encryptionType = "AES256"|"KMS",
      kmsKey = "string"
    ),
    resourceTags = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    imageTagMutability = "MUTABLE"|"IMMUTABLE",
    repositoryPolicy = "string",
    lifecyclePolicy = "string",
    appliedFor = list(
      "REPLICATION"|"PULL_THROUGH_CACHE"
    ),
    customRoleArn = "string",
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    updatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$delete_repository_creation_template(
  prefix = "string"
)

Examples

## Not run: 
# This example deletes a repository creation template.
svc$delete_repository_creation_template(
  prefix = "eng"
)

## End(Not run)