deleteRepositoryPolicy
abstract suspend fun deleteRepositoryPolicy(input: DeleteRepositoryPolicyRequest): DeleteRepositoryPolicyResponse
Deletes the repository policy associated with the specified repository.
Samples
fun main() {
//sampleStart
// This example deletes the policy associated with the repository named ubuntu in the current account.
val resp = ecrClient.deleteRepositoryPolicy {
repositoryName = "ubuntu"
}
//sampleEnd
}