Class: Aws::ECR::Types::DeleteRepositoryPolicyRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecr/types.rb

Overview

Note:

When making an API call, you may pass DeleteRepositoryPolicyRequest data as a hash:

{
  registry_id: "RegistryId",
  repository_name: "RepositoryName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#registry_idString

The AWS account ID associated with the registry that contains the repository policy to delete. If you do not specify a registry, the default registry is assumed.

Returns:

  • (String)


333
334
335
336
337
# File 'lib/aws-sdk-ecr/types.rb', line 333

class DeleteRepositoryPolicyRequest < Struct.new(
  :registry_id,
  :repository_name)
  include Aws::Structure
end

#repository_nameString

The name of the repository that is associated with the repository policy to delete.

Returns:

  • (String)


333
334
335
336
337
# File 'lib/aws-sdk-ecr/types.rb', line 333

class DeleteRepositoryPolicyRequest < Struct.new(
  :registry_id,
  :repository_name)
  include Aws::Structure
end