AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Container for the parameters to the GetServiceLastAccessedDetailsWithEntities operation.
After you generate a group or policy report using the GenerateServiceLastAccessedDetails
operation, you can use the JobId
parameter in GetServiceLastAccessedDetailsWithEntities
.
This operation retrieves the status of your report job and a list of entities that
could have used group or policy permissions to access the specified service.
Group – For a group report, this operation returns a list of users in the group that could have used the group’s policies in an attempt to access the service.
Policy – For a policy report, this operation returns a list of entities (users or roles) that could have used the policy in an attempt to access the service.
You can also use this operation for user or role reports to retrieve details about those entities.
If the operation fails, the GetServiceLastAccessedDetailsWithEntities
operation
returns the reason that it failed.
By default, the list of associated entities is sorted by date, with the most recent access listed first.
Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK.IdentityManagement.dll
Version: 3.x.y.z
public class GetServiceLastAccessedDetailsWithEntitiesRequest : AmazonIdentityManagementServiceRequest IAmazonWebServiceRequest
The GetServiceLastAccessedDetailsWithEntitiesRequest type exposes the following members
Name | Description | |
---|---|---|
GetServiceLastAccessedDetailsWithEntitiesRequest() |
Name | Type | Description | |
---|---|---|---|
JobId | System.String |
Gets and sets the property JobId.
The ID of the request generated by the |
|
Marker | System.String |
Gets and sets the property Marker.
Use this parameter only when paginating results and only after you receive a response
indicating that the results are truncated. Set it to the value of the |
|
MaxItems | System.Int32 |
Gets and sets the property MaxItems.
Use this only when paginating results to indicate the maximum number of items you
want in the response. If additional items exist beyond the maximum you specify, the
If you do not include this parameter, the number of items defaults to 100. Note that
IAM might return fewer results, even when there are more results available. In that
case, the |
|
ServiceNamespace | System.String |
Gets and sets the property ServiceNamespace. The service namespace for an Amazon Web Services service. Provide the service namespace to learn when the IAM entity last attempted to access the specified service.
To learn the service namespace for a service, see Actions,
resources, and condition keys for Amazon Web Services services in the IAM User
Guide. Choose the name of the service to view details for that service. In the
first paragraph, find the service prefix. For example, |
The following operation returns details about the entities that attempted to access the IAM service.
var client = new AmazonIdentityManagementServiceClient(); var response = client.GetServiceLastAccessedDetailsWithEntities(new GetServiceLastAccessedDetailsWithEntitiesRequest { JobId = "examplef-1305-c245-eba4-71fe298bcda7", ServiceNamespace = "iam" }); List<EntityDetails> entityDetailsList = response.EntityDetailsList; bool isTruncated = response.IsTruncated; DateTime jobCompletionDate = response.JobCompletionDate; DateTime jobCreationDate = response.JobCreationDate; string jobStatus = response.JobStatus;
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5