/* * 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 snowball-2016-06-30.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.Snowball.Model { /// <summary> /// An object that represents the metadata and configuration settings for services on /// an Amazon Web Services Snow Family device. /// </summary> public partial class OnDeviceServiceConfiguration { private EKSOnDeviceServiceConfiguration _eksOnDeviceService; private NFSOnDeviceServiceConfiguration _nfsOnDeviceService; private S3OnDeviceServiceConfiguration _s3OnDeviceService; private TGWOnDeviceServiceConfiguration _tgwOnDeviceService; /// <summary> /// Gets and sets the property EKSOnDeviceService. /// <para> /// The configuration of EKS Anywhere on the Snow Family device. /// </para> /// </summary> public EKSOnDeviceServiceConfiguration EKSOnDeviceService { get { return this._eksOnDeviceService; } set { this._eksOnDeviceService = value; } } // Check to see if EKSOnDeviceService property is set internal bool IsSetEKSOnDeviceService() { return this._eksOnDeviceService != null; } /// <summary> /// Gets and sets the property NFSOnDeviceService. /// <para> /// Represents the NFS (Network File System) service on a Snow Family device. /// </para> /// </summary> public NFSOnDeviceServiceConfiguration NFSOnDeviceService { get { return this._nfsOnDeviceService; } set { this._nfsOnDeviceService = value; } } // Check to see if NFSOnDeviceService property is set internal bool IsSetNFSOnDeviceService() { return this._nfsOnDeviceService != null; } /// <summary> /// Gets and sets the property S3OnDeviceService. /// <para> /// Configuration for Amazon S3 compatible storage on Snow family devices. /// </para> /// </summary> public S3OnDeviceServiceConfiguration S3OnDeviceService { get { return this._s3OnDeviceService; } set { this._s3OnDeviceService = value; } } // Check to see if S3OnDeviceService property is set internal bool IsSetS3OnDeviceService() { return this._s3OnDeviceService != null; } /// <summary> /// Gets and sets the property TGWOnDeviceService. /// <para> /// Represents the Storage Gateway service Tape Gateway type on a Snow Family device. /// </para> /// </summary> public TGWOnDeviceServiceConfiguration TGWOnDeviceService { get { return this._tgwOnDeviceService; } set { this._tgwOnDeviceService = value; } } // Check to see if TGWOnDeviceService property is set internal bool IsSetTGWOnDeviceService() { return this._tgwOnDeviceService != null; } } }