Class: Aws::ECR::Types::PutImageTagMutabilityRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::PutImageTagMutabilityRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecr/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_tag_mutability ⇒ String
The tag mutability setting for the repository.
-
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository in which to update the image tag mutability settings.
-
#repository_name ⇒ String
The name of the repository in which to update the image tag mutability settings.
Instance Attribute Details
#image_tag_mutability ⇒ String
The tag mutability setting for the repository. If ‘MUTABLE` is specified, image tags can be overwritten. If `IMMUTABLE` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
3147 3148 3149 3150 3151 3152 3153 |
# File 'lib/aws-sdk-ecr/types.rb', line 3147 class PutImageTagMutabilityRequest < Struct.new( :registry_id, :repository_name, :image_tag_mutability) SENSITIVE = [] include Aws::Structure end |
#registry_id ⇒ String
The Amazon Web Services account ID associated with the registry that contains the repository in which to update the image tag mutability settings. If you do not specify a registry, the default registry is assumed.
3147 3148 3149 3150 3151 3152 3153 |
# File 'lib/aws-sdk-ecr/types.rb', line 3147 class PutImageTagMutabilityRequest < Struct.new( :registry_id, :repository_name, :image_tag_mutability) SENSITIVE = [] include Aws::Structure end |
#repository_name ⇒ String
The name of the repository in which to update the image tag mutability settings.
3147 3148 3149 3150 3151 3152 3153 |
# File 'lib/aws-sdk-ecr/types.rb', line 3147 class PutImageTagMutabilityRequest < Struct.new( :registry_id, :repository_name, :image_tag_mutability) SENSITIVE = [] include Aws::Structure end |