/* * 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 guardduty-2017-11-28.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.GuardDuty.Model { /// /// This is the response object from the GetMemberDetectors operation. /// public partial class GetMemberDetectorsResponse : AmazonWebServiceResponse { private List _memberDataSourceConfigurations = new List(); private List _unprocessedAccounts = new List(); /// /// Gets and sets the property MemberDataSourceConfigurations. /// /// An object that describes which data sources are enabled for a member account. /// /// [AWSProperty(Required=true, Min=1, Max=50)] public List MemberDataSourceConfigurations { get { return this._memberDataSourceConfigurations; } set { this._memberDataSourceConfigurations = value; } } // Check to see if MemberDataSourceConfigurations property is set internal bool IsSetMemberDataSourceConfigurations() { return this._memberDataSourceConfigurations != null && this._memberDataSourceConfigurations.Count > 0; } /// /// Gets and sets the property UnprocessedAccounts. /// /// A list of member account IDs that were unable to be processed along with an explanation /// for why they were not processed. /// /// [AWSProperty(Required=true, Min=0, Max=50)] public List UnprocessedAccounts { get { return this._unprocessedAccounts; } set { this._unprocessedAccounts = value; } } // Check to see if UnprocessedAccounts property is set internal bool IsSetUnprocessedAccounts() { return this._unprocessedAccounts != null && this._unprocessedAccounts.Count > 0; } } }