deleteRepositoryPolicy
inline suspend fun EcrClient.deleteRepositoryPolicy(crossinline block: DeleteRepositoryPolicyRequest.Builder.() -> Unit): 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
}