I want to add IAM policy with time limit. But in the time limit it didn't have way to specify the time zone. How can define the time zone or what is the time zone considered here?
{
"Effect":"Allow",
"Action":[
"s3:ListAllMyBuckets"
],
"Resource":"arn:aws:s3:::*",
"Condition": {
"DateGreaterThan" : {
"aws:CurrentTime" : "2019-01-17T01:00:00Z"
}
}
}