AWS SDK Version 4 for .NET
API Reference

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.

This is the response object from the GetOrganizationsAccessReport operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.IdentityManagement.Model.GetOrganizationsAccessReportResponse

Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK.IdentityManagement.dll
Version: 3.x.y.z

Syntax

C#
public class GetOrganizationsAccessReportResponse : AmazonWebServiceResponse

The GetOrganizationsAccessReportResponse type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property AccessDetails System.Collections.Generic.List<Amazon.IdentityManagement.Model.AccessDetail>

Gets and sets the property AccessDetails.

An object that contains details about the most recent attempt to access the service.

Starting with version 4 of the SDK this property will default to null. If no data for this property is returned from the service the property will also be null. This was changed to improve performance and allow the SDK and caller to distinguish between a property not set or a property being empty to clear out a value. To retain the previous SDK behavior set the AWSConfigs.InitializeCollections static property to true.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property ErrorDetails Amazon.IdentityManagement.Model.ErrorDetails

Gets and sets the property ErrorDetails.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property IsTruncated System.Nullable<System.Boolean>

Gets and sets the property IsTruncated.

A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems number of results even when there are more results available. We recommend that you check IsTruncated after every call to ensure that you receive all your results.

Public Property JobCompletionDate System.Nullable<System.DateTime>

Gets and sets the property JobCompletionDate.

The date and time, in ISO 8601 date-time format, when the generated report job was completed or failed.

This field is null if the job is still in progress, as indicated by a job status value of IN_PROGRESS.

Public Property JobCreationDate System.Nullable<System.DateTime>

Gets and sets the property JobCreationDate.

The date and time, in ISO 8601 date-time format, when the report job was created.

Public Property JobStatus Amazon.IdentityManagement.JobStatusType

Gets and sets the property JobStatus.

The status of the job.

Public Property Marker System.String

Gets and sets the property Marker.

When IsTruncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent pagination request.

Public Property NumberOfServicesAccessible System.Nullable<System.Int32>

Gets and sets the property NumberOfServicesAccessible.

The number of services that the applicable SCPs allow account principals to access.

Public Property NumberOfServicesNotAccessed System.Nullable<System.Int32>

Gets and sets the property NumberOfServicesNotAccessed.

The number of services that account principals are allowed but did not attempt to access.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.

Examples

The following operation gets details about the report with the job ID: examplea-1234-b567-cde8-90fg123abcd4

To get details from a previously generated organizational unit report


var client = new AmazonIdentityManagementServiceClient();
var response = client.GetOrganizationsAccessReport(new GetOrganizationsAccessReportRequest 
{
    JobId = "examplea-1234-b567-cde8-90fg123abcd4"
});

List<AccessDetail> accessDetails = response.AccessDetails;
bool isTruncated = response.IsTruncated;
DateTime jobCompletionDate = response.JobCompletionDate;
DateTime jobCreationDate = response.JobCreationDate;
string jobStatus = response.JobStatus;
int numberOfServicesAccessible = response.NumberOfServicesAccessible;
int numberOfServicesNotAccessed = response.NumberOfServicesNotAccessed;

            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.7.2 and newer