ECR / Paginator / DescribeRepositoryCreationTemplates

DescribeRepositoryCreationTemplates#

class ECR.Paginator.DescribeRepositoryCreationTemplates#
paginator = client.get_paginator('describe_repository_creation_templates')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from ECR.Client.describe_repository_creation_templates().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    prefixes=[
        'string',
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • prefixes (list) –

    The repository namespace prefixes associated with the repository creation templates to describe. If this value is not specified, all repository creation templates are returned.

    • (string) –

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'registryId': 'string',
    'repositoryCreationTemplates': [
        {
            'prefix': 'string',
            'description': 'string',
            'encryptionConfiguration': {
                'encryptionType': 'AES256'|'KMS',
                'kmsKey': 'string'
            },
            'resourceTags': [
                {
                    'Key': 'string',
                    'Value': 'string'
                },
            ],
            'imageTagMutability': 'MUTABLE'|'IMMUTABLE',
            'repositoryPolicy': 'string',
            'lifecyclePolicy': 'string',
            'appliedFor': [
                'REPLICATION'|'PULL_THROUGH_CACHE',
            ],
            'customRoleArn': 'string',
            'createdAt': datetime(2015, 1, 1),
            'updatedAt': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • registryId (string) –

      The registry ID associated with the request.

    • repositoryCreationTemplates (list) –

      The details of the repository creation templates.

      • (dict) –

        The details of the repository creation template associated with the request.

        • prefix (string) –

          The repository namespace prefix associated with the repository creation template.

        • description (string) –

          The description associated with the repository creation template.

        • encryptionConfiguration (dict) –

          The encryption configuration associated with the repository creation template.

          • encryptionType (string) –

            The encryption type to use.

            If you use the KMS encryption type, the contents of the repository will be encrypted using server-side encryption with Key Management Service key stored in KMS. When you use KMS to encrypt your data, you can either use the default Amazon Web Services managed KMS key for Amazon ECR, or specify your own KMS key, which you already created. For more information, see Protecting data using server-side encryption with an KMS key stored in Key Management Service (SSE-KMS) in the Amazon Simple Storage Service Console Developer Guide.

            If you use the AES256 encryption type, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts the images in the repository using an AES256 encryption algorithm. For more information, see Protecting data using server-side encryption with Amazon S3-managed encryption keys (SSE-S3) in the Amazon Simple Storage Service Console Developer Guide.

          • kmsKey (string) –

            If you use the KMS encryption type, specify the KMS key to use for encryption. The full ARN of the KMS key must be specified. The key must exist in the same Region as the repository. If no key is specified, the default Amazon Web Services managed KMS key for Amazon ECR will be used.

        • resourceTags (list) –

          The metadata to apply to the repository to help you categorize and organize. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

          • (dict) –

            The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

            • Key (string) –

              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.

            • Value (string) –

              A value acts as a descriptor within a tag category (key).

        • imageTagMutability (string) –

          The tag mutability setting for the repository. If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten. If IMMUTABLE is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.

        • repositoryPolicy (string) –

          he repository policy to apply to repositories created using the template. A repository policy is a permissions policy associated with a repository to control access permissions.

        • lifecyclePolicy (string) –

          The lifecycle policy to use for repositories created using the template.

        • appliedFor (list) –

          A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The two supported scenarios are PULL_THROUGH_CACHE and REPLICATION

          • (string) –

        • customRoleArn (string) –

          The ARN of the role to be assumed by Amazon ECR. Amazon ECR will assume your supplied role when the customRoleArn is specified. When this field isn’t specified, Amazon ECR will use the service-linked role for the repository creation template.

        • createdAt (datetime) –

          The date and time, in JavaScript date format, when the repository creation template was created.

        • updatedAt (datetime) –

          The date and time, in JavaScript date format, when the repository creation template was last updated.

    • NextToken (string) –

      A token to resume pagination.