deregisterPullTimeUpdateExclusion
abstract suspend fun deregisterPullTimeUpdateExclusion(input: DeregisterPullTimeUpdateExclusionRequest): DeregisterPullTimeUpdateExclusionResponse
Removes a principal from the pull time update exclusion list for a registry. Once removed, Amazon ECR will resume updating the pull time if the specified principal pulls an image.
Samples
fun main() {
//sampleStart
// This example removes an IAM role from the pull time update exclusion list. Amazon ECR will resume
// recording image pull timestamps for this principal.
val resp = ecrClient.deregisterPullTimeUpdateExclusion {
principalArn = "arn:aws:iam::012345678910:role/ECRAccess"
}
//sampleEnd
}