/*
* 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 kinesisanalyticsv2-2018-05-23.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.KinesisAnalyticsV2.Model
{
///
/// The configuration of a Kinesis Data Analytics Studio notebook.
///
public partial class ZeppelinApplicationConfigurationDescription
{
private CatalogConfigurationDescription _catalogConfigurationDescription;
private List _customArtifactsConfigurationDescription = new List();
private DeployAsApplicationConfigurationDescription _deployAsApplicationConfigurationDescription;
private ZeppelinMonitoringConfigurationDescription _monitoringConfigurationDescription;
///
/// Gets and sets the property CatalogConfigurationDescription.
///
/// The Amazon Glue Data Catalog that is associated with the Kinesis Data Analytics Studio
/// notebook.
///
///
public CatalogConfigurationDescription CatalogConfigurationDescription
{
get { return this._catalogConfigurationDescription; }
set { this._catalogConfigurationDescription = value; }
}
// Check to see if CatalogConfigurationDescription property is set
internal bool IsSetCatalogConfigurationDescription()
{
return this._catalogConfigurationDescription != null;
}
///
/// Gets and sets the property CustomArtifactsConfigurationDescription.
///
/// Custom artifacts are dependency JARs and user-defined functions (UDF).
///
///
[AWSProperty(Max=50)]
public List CustomArtifactsConfigurationDescription
{
get { return this._customArtifactsConfigurationDescription; }
set { this._customArtifactsConfigurationDescription = value; }
}
// Check to see if CustomArtifactsConfigurationDescription property is set
internal bool IsSetCustomArtifactsConfigurationDescription()
{
return this._customArtifactsConfigurationDescription != null && this._customArtifactsConfigurationDescription.Count > 0;
}
///
/// Gets and sets the property DeployAsApplicationConfigurationDescription.
///
/// The parameters required to deploy a Kinesis Data Analytics Studio notebook as an application
/// with durable state.
///
///
public DeployAsApplicationConfigurationDescription DeployAsApplicationConfigurationDescription
{
get { return this._deployAsApplicationConfigurationDescription; }
set { this._deployAsApplicationConfigurationDescription = value; }
}
// Check to see if DeployAsApplicationConfigurationDescription property is set
internal bool IsSetDeployAsApplicationConfigurationDescription()
{
return this._deployAsApplicationConfigurationDescription != null;
}
///
/// Gets and sets the property MonitoringConfigurationDescription.
///
/// The monitoring configuration of a Kinesis Data Analytics Studio notebook.
///
///
[AWSProperty(Required=true)]
public ZeppelinMonitoringConfigurationDescription MonitoringConfigurationDescription
{
get { return this._monitoringConfigurationDescription; }
set { this._monitoringConfigurationDescription = value; }
}
// Check to see if MonitoringConfigurationDescription property is set
internal bool IsSetMonitoringConfigurationDescription()
{
return this._monitoringConfigurationDescription != null;
}
}
}