Skip to content

Commit

Permalink
Updated Aws::IAM::Client API.
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorrowe committed Apr 23, 2015
1 parent c4e44ab commit ef04d79
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 32 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Unreleased Changes
------------------

* Feature - Aws::IAM - Added support for `Aws::IAM::Client#access_key_last_used`.

* Feature - Aws::CloudSearchDomain - Added support for response expressions.

2.0.39 (2015-04-16)
Expand Down
51 changes: 51 additions & 0 deletions aws-sdk-core/apis/iam/2010-05-08/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1938,6 +1938,29 @@
}
]
},
"GetAccessKeyLastUsed":{
"name":"GetAccessKeyLastUsed",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetAccessKeyLastUsedRequest"},
"output":{
"shape":"GetAccessKeyLastUsedResponse",
"resultWrapper":"GetAccessKeyLastUsedResult"
},
"errors":[
{
"shape":"NoSuchEntityException",
"error":{
"code":"NoSuchEntity",
"httpStatusCode":404,
"senderFault":true
},
"exception":true
}
]
},
"GetAccountAuthorizationDetails":{
"name":"GetAccountAuthorizationDetails",
"http":{
Expand Down Expand Up @@ -4086,6 +4109,19 @@
"CreateDate":{"shape":"dateType"}
}
},
"AccessKeyLastUsed":{
"type":"structure",
"required":[
"LastUsedDate",
"ServiceName",
"Region"
],
"members":{
"LastUsedDate":{"shape":"dateType"},
"ServiceName":{"shape":"stringType"},
"Region":{"shape":"stringType"}
}
},
"AccessKeyMetadata":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -4669,6 +4705,20 @@
"Description":{"shape":"ReportStateDescriptionType"}
}
},
"GetAccessKeyLastUsedRequest":{
"type":"structure",
"required":["AccessKeyId"],
"members":{
"AccessKeyId":{"shape":"accessKeyIdType"}
}
},
"GetAccessKeyLastUsedResponse":{
"type":"structure",
"members":{
"UserName":{"shape":"existingUserNameType"},
"AccessKeyLastUsed":{"shape":"AccessKeyLastUsed"}
}
},
"GetAccountAuthorizationDetailsRequest":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -6332,6 +6382,7 @@
"Inactive"
]
},
"stringType":{"type":"string"},
"summaryKeyType":{
"type":"string",
"enum":[
Expand Down
Loading

0 comments on commit ef04d79

Please sign in to comment.