/* * 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 license-manager-user-subscriptions-2018-05-10.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.LicenseManagerUserSubscriptions.Model { /// /// The registered identity provider’s product related configuration settings such as /// the subnets to provision VPC endpoints, and the security group ID that is associated /// with the VPC endpoints. The security group should permit inbound TCP port 1688 communication /// from resources in the VPC. /// public partial class Settings { private string _securityGroupId; private List _subnets = new List(); /// /// Gets and sets the property SecurityGroupId. /// /// A security group ID that allows inbound TCP port 1688 communication between resources /// in your VPC and the VPC endpoint for activation servers. /// /// [AWSProperty(Required=true, Min=5, Max=200)] public string SecurityGroupId { get { return this._securityGroupId; } set { this._securityGroupId = value; } } // Check to see if SecurityGroupId property is set internal bool IsSetSecurityGroupId() { return this._securityGroupId != null; } /// /// Gets and sets the property Subnets. /// /// The subnets defined for the registered identity provider. /// /// [AWSProperty(Required=true, Min=1)] public List Subnets { get { return this._subnets; } set { this._subnets = value; } } // Check to see if Subnets property is set internal bool IsSetSubnets() { return this._subnets != null && this._subnets.Count > 0; } } }