/* * 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 network-firewall-2020-11-12.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.NetworkFirewall.Model { /// /// Configures one or more IP set references for a Suricata-compatible rule group. This /// is used in CreateRuleGroup or UpdateRuleGroup. An IP set reference is /// a rule variable that references resources that you create and manage in another Amazon /// Web Services service, such as an Amazon VPC prefix list. Network Firewall IP set references /// enable you to dynamically update the contents of your rules. When you create, update, /// or delete the resource you are referencing in your rule, Network Firewall automatically /// updates the rule's content with the changes. For more information about IP set references /// in Network Firewall, see Using /// IP set references in the Network Firewall Developer Guide. /// /// /// /// Network Firewall currently supports Amazon /// VPC prefix lists and resource /// groups in IP set references. /// /// public partial class IPSetReference { private string _referenceArn; /// /// Gets and sets the property ReferenceArn. /// /// The Amazon Resource Name (ARN) of the resource that you are referencing in your rule /// group. /// /// [AWSProperty(Min=1, Max=256)] public string ReferenceArn { get { return this._referenceArn; } set { this._referenceArn = value; } } // Check to see if ReferenceArn property is set internal bool IsSetReferenceArn() { return this._referenceArn != null; } } }