Class: Aws::ECR::Types::SetRepositoryPolicyRequest

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 SetRepositoryPolicyRequest data as a hash:

{
  registry_id: "RegistryId",
  repository_name: "RepositoryName", # required
  policy_text: "RepositoryPolicyText", # required
  force: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#forceBoolean

If the policy you are attempting to set on a repository policy would prevent you from setting another policy in the future, you must force the SetRepositoryPolicy operation. This is intended to prevent accidental repository lock outs.

Returns:

  • (Boolean)


1174
1175
1176
1177
1178
1179
1180
# File 'lib/aws-sdk-ecr/types.rb', line 1174

class SetRepositoryPolicyRequest < Struct.new(
  :registry_id,
  :repository_name,
  :policy_text,
  :force)
  include Aws::Structure
end

#policy_textString

The JSON repository policy text to apply to the repository.

Returns:

  • (String)


1174
1175
1176
1177
1178
1179
1180
# File 'lib/aws-sdk-ecr/types.rb', line 1174

class SetRepositoryPolicyRequest < Struct.new(
  :registry_id,
  :repository_name,
  :policy_text,
  :force)
  include Aws::Structure
end

#registry_idString

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

Returns:

  • (String)


1174
1175
1176
1177
1178
1179
1180
# File 'lib/aws-sdk-ecr/types.rb', line 1174

class SetRepositoryPolicyRequest < Struct.new(
  :registry_id,
  :repository_name,
  :policy_text,
  :force)
  include Aws::Structure
end

#repository_nameString

The name of the repository to receive the policy.

Returns:

  • (String)


1174
1175
1176
1177
1178
1179
1180
# File 'lib/aws-sdk-ecr/types.rb', line 1174

class SetRepositoryPolicyRequest < Struct.new(
  :registry_id,
  :repository_name,
  :policy_text,
  :force)
  include Aws::Structure
end