/* * 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 sagemaker-2017-07-24.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.SageMaker.Model { /// /// The KernelGateway app settings. /// public partial class KernelGatewayAppSettings { private List _customImages = new List(); private ResourceSpec _defaultResourceSpec; private List _lifecycleConfigArns = new List(); /// /// Gets and sets the property CustomImages. /// /// A list of custom SageMaker images that are configured to run as a KernelGateway app. /// /// [AWSProperty(Max=200)] public List CustomImages { get { return this._customImages; } set { this._customImages = value; } } // Check to see if CustomImages property is set internal bool IsSetCustomImages() { return this._customImages != null && this._customImages.Count > 0; } /// /// Gets and sets the property DefaultResourceSpec. /// /// The default instance type and the Amazon Resource Name (ARN) of the default SageMaker /// image used by the KernelGateway app. /// /// /// /// The Amazon SageMaker Studio UI does not use the default instance type value set here. /// The default instance type set here is used when Apps are created using the Amazon /// Web Services Command Line Interface or Amazon Web Services CloudFormation and the /// instance type parameter value is not passed. /// /// /// public ResourceSpec DefaultResourceSpec { get { return this._defaultResourceSpec; } set { this._defaultResourceSpec = value; } } // Check to see if DefaultResourceSpec property is set internal bool IsSetDefaultResourceSpec() { return this._defaultResourceSpec != null; } /// /// Gets and sets the property LifecycleConfigArns. /// /// The Amazon Resource Name (ARN) of the Lifecycle Configurations attached to the the /// user profile or domain. /// /// /// /// To remove a Lifecycle Config, you must set LifecycleConfigArns to an /// empty list. /// /// /// public List LifecycleConfigArns { get { return this._lifecycleConfigArns; } set { this._lifecycleConfigArns = value; } } // Check to see if LifecycleConfigArns property is set internal bool IsSetLifecycleConfigArns() { return this._lifecycleConfigArns != null && this._lifecycleConfigArns.Count > 0; } } }