1개 답변
- 최신
- 최다 투표
- 가장 많은 댓글
4
There is no API to clear the AWS batch job history.
The job state for SUCCEEDED
and FAILED
jobs is persisted in AWS Batch for at least 7 days (see here and here).
If this account is a member of an organization you can create and associate SCP (Service Control Policy) to this account that will prevent any principal from describing that job (and remove the SCP after 7 days has passed).
Example:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Deny",
"Action": "batch:DescribeJobs",
"Resource": "arn:aws:batch:REGION:ACCOUNT_ID:job/JOB_ID"
}
]
}
관련 콘텐츠
- 질문됨 한 달 전
- AWS 공식업데이트됨 2년 전
- AWS 공식업데이트됨 일 년 전
- AWS 공식업데이트됨 3년 전
- AWS 공식업데이트됨 3년 전