/* * 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 fms-2018-01-01.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.FMS.Model { /// /// Container for the parameters to the AssociateAdminAccount operation. /// Sets a Firewall Manager default administrator account. The Firewall Manager default /// administrator account can manage third-party firewalls and has full administrative /// scope that allows administration of all policy types, accounts, organizational units, /// and Regions. This account must be a member account of the organization in Organizations /// whose resources you want to protect. /// /// /// /// For information about working with Firewall Manager administrator accounts, see Managing /// Firewall Manager administrators in the Firewall Manager Developer Guide. /// /// public partial class AssociateAdminAccountRequest : AmazonFMSRequest { private string _adminAccount; /// /// Gets and sets the property AdminAccount. /// /// The Amazon Web Services account ID to associate with Firewall Manager as the Firewall /// Manager default administrator account. This account must be a member account of the /// organization in Organizations whose resources you want to protect. For more information /// about Organizations, see Managing /// the Amazon Web Services Accounts in Your Organization. /// /// [AWSProperty(Required=true, Min=1, Max=1024)] public string AdminAccount { get { return this._adminAccount; } set { this._adminAccount = value; } } // Check to see if AdminAccount property is set internal bool IsSetAdminAccount() { return this._adminAccount != null; } } }