/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the iam-2010-05-08.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.IdentityManagement.Model { /// /// This is the response object from the GetOrganizationsAccessReport operation. /// public partial class GetOrganizationsAccessReportResponse : AmazonWebServiceResponse { private List _accessDetails = new List(); private ErrorDetails _errorDetails; private bool? _isTruncated; private DateTime? _jobCompletionDate; private DateTime? _jobCreationDate; private JobStatusType _jobStatus; private string _marker; private int? _numberOfServicesAccessible; private int? _numberOfServicesNotAccessed; /// /// Gets and sets the property AccessDetails. /// /// An object that contains details about the most recent attempt to access the service. /// /// public List AccessDetails { get { return this._accessDetails; } set { this._accessDetails = value; } } // Check to see if AccessDetails property is set internal bool IsSetAccessDetails() { return this._accessDetails != null && this._accessDetails.Count > 0; } /// /// Gets and sets the property ErrorDetails. /// public ErrorDetails ErrorDetails { get { return this._errorDetails; } set { this._errorDetails = value; } } // Check to see if ErrorDetails property is set internal bool IsSetErrorDetails() { return this._errorDetails != null; } /// /// 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 bool IsTruncated { get { return this._isTruncated.GetValueOrDefault(); } set { this._isTruncated = value; } } // Check to see if IsTruncated property is set internal bool IsSetIsTruncated() { return this._isTruncated.HasValue; } /// /// 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 DateTime JobCompletionDate { get { return this._jobCompletionDate.GetValueOrDefault(); } set { this._jobCompletionDate = value; } } // Check to see if JobCompletionDate property is set internal bool IsSetJobCompletionDate() { return this._jobCompletionDate.HasValue; } /// /// Gets and sets the property JobCreationDate. /// /// The date and time, in ISO 8601 date-time /// format, when the report job was created. /// /// [AWSProperty(Required=true)] public DateTime JobCreationDate { get { return this._jobCreationDate.GetValueOrDefault(); } set { this._jobCreationDate = value; } } // Check to see if JobCreationDate property is set internal bool IsSetJobCreationDate() { return this._jobCreationDate.HasValue; } /// /// Gets and sets the property JobStatus. /// /// The status of the job. /// /// [AWSProperty(Required=true)] public JobStatusType JobStatus { get { return this._jobStatus; } set { this._jobStatus = value; } } // Check to see if JobStatus property is set internal bool IsSetJobStatus() { return this._jobStatus != null; } /// /// 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. /// /// [AWSProperty(Min=1, Max=320)] public string Marker { get { return this._marker; } set { this._marker = value; } } // Check to see if Marker property is set internal bool IsSetMarker() { return this._marker != null; } /// /// Gets and sets the property NumberOfServicesAccessible. /// /// The number of services that the applicable SCPs allow account principals to access. /// /// public int NumberOfServicesAccessible { get { return this._numberOfServicesAccessible.GetValueOrDefault(); } set { this._numberOfServicesAccessible = value; } } // Check to see if NumberOfServicesAccessible property is set internal bool IsSetNumberOfServicesAccessible() { return this._numberOfServicesAccessible.HasValue; } /// /// Gets and sets the property NumberOfServicesNotAccessed. /// /// The number of services that account principals are allowed but did not attempt to /// access. /// /// public int NumberOfServicesNotAccessed { get { return this._numberOfServicesNotAccessed.GetValueOrDefault(); } set { this._numberOfServicesNotAccessed = value; } } // Check to see if NumberOfServicesNotAccessed property is set internal bool IsSetNumberOfServicesNotAccessed() { return this._numberOfServicesNotAccessed.HasValue; } } }