| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.ECR.Types.Repository
Description
Synopsis
- data Repository = Repository' {}
- newRepository :: Repository
- repository_createdAt :: Lens' Repository (Maybe UTCTime)
- repository_encryptionConfiguration :: Lens' Repository (Maybe EncryptionConfiguration)
- repository_imageScanningConfiguration :: Lens' Repository (Maybe ImageScanningConfiguration)
- repository_imageTagMutability :: Lens' Repository (Maybe ImageTagMutability)
- repository_registryId :: Lens' Repository (Maybe Text)
- repository_repositoryArn :: Lens' Repository (Maybe Text)
- repository_repositoryName :: Lens' Repository (Maybe Text)
- repository_repositoryUri :: Lens' Repository (Maybe Text)
Documentation
data Repository Source #
An object representing a repository.
See: newRepository smart constructor.
Constructors
| Repository' | |
Fields
| |
Instances
newRepository :: Repository Source #
Create a value of Repository with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:createdAt:Repository', repository_createdAt - The date and time, in JavaScript date format, when the repository was
created.
$sel:encryptionConfiguration:Repository', repository_encryptionConfiguration - The encryption configuration for the repository. This determines how the
contents of your repository are encrypted at rest.
$sel:imageScanningConfiguration:Repository', repository_imageScanningConfiguration - Undocumented member.
$sel:imageTagMutability:Repository', repository_imageTagMutability - The tag mutability setting for the repository.
$sel:registryId:Repository', repository_registryId - The Amazon Web Services account ID associated with the registry that
contains the repository.
$sel:repositoryArn:Repository', repository_repositoryArn - 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.
$sel:repositoryName:Repository', repository_repositoryName - The name of the repository.
$sel:repositoryUri:Repository', repository_repositoryUri - The URI for the repository. You can use this URI for container image
push and pull operations.
repository_createdAt :: Lens' Repository (Maybe UTCTime) Source #
The date and time, in JavaScript date format, when the repository was created.
repository_encryptionConfiguration :: Lens' Repository (Maybe EncryptionConfiguration) Source #
The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
repository_imageScanningConfiguration :: Lens' Repository (Maybe ImageScanningConfiguration) Source #
Undocumented member.
repository_imageTagMutability :: Lens' Repository (Maybe ImageTagMutability) Source #
The tag mutability setting for the repository.
repository_registryId :: Lens' Repository (Maybe Text) Source #
The Amazon Web Services account ID associated with the registry that contains the repository.
repository_repositoryArn :: Lens' Repository (Maybe Text) Source #
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.
repository_repositoryName :: Lens' Repository (Maybe Text) Source #
The name of the repository.
repository_repositoryUri :: Lens' Repository (Maybe Text) Source #
The URI for the repository. You can use this URI for container image
push and pull operations.