/* * 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 { /// /// Details about the security service that is being used to protect the resources. /// public partial class SecurityServicePolicyData { private string _managedServiceData; private PolicyOption _policyOption; private SecurityServiceType _type; /// /// Gets and sets the property ManagedServiceData. /// /// Details about the service that are specific to the service type, in JSON format. /// /// /// [AWSProperty(Min=1, Max=10000)] public string ManagedServiceData { get { return this._managedServiceData; } set { this._managedServiceData = value; } } // Check to see if ManagedServiceData property is set internal bool IsSetManagedServiceData() { return this._managedServiceData != null; } /// /// Gets and sets the property PolicyOption. /// /// Contains the Network Firewall firewall policy options to configure a centralized deployment /// model. /// /// public PolicyOption PolicyOption { get { return this._policyOption; } set { this._policyOption = value; } } // Check to see if PolicyOption property is set internal bool IsSetPolicyOption() { return this._policyOption != null; } /// /// Gets and sets the property Type. /// /// The service that the policy is using to protect the resources. This specifies the /// type of policy that is created, either an WAF policy, a Shield Advanced policy, or /// a security group policy. For security group policies, Firewall Manager supports one /// security group for each common policy and for each content audit policy. This is an /// adjustable limit that you can increase by contacting Amazon Web Services Support. /// /// [AWSProperty(Required=true)] public SecurityServiceType Type { get { return this._type; } set { this._type = value; } } // Check to see if Type property is set internal bool IsSetType() { return this._type != null; } } }