/*
* 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 ZeppelinApplicationConfiguration
{
private CatalogConfiguration _catalogConfiguration;
private List _customArtifactsConfiguration = new List();
private DeployAsApplicationConfiguration _deployAsApplicationConfiguration;
private ZeppelinMonitoringConfiguration _monitoringConfiguration;
///
/// Gets and sets the property CatalogConfiguration.
///
/// The Amazon Glue Data Catalog that you use in queries in a Kinesis Data Analytics Studio
/// notebook.
///
///
public CatalogConfiguration CatalogConfiguration
{
get { return this._catalogConfiguration; }
set { this._catalogConfiguration = value; }
}
// Check to see if CatalogConfiguration property is set
internal bool IsSetCatalogConfiguration()
{
return this._catalogConfiguration != null;
}
///
/// Gets and sets the property CustomArtifactsConfiguration.
///
/// Custom artifacts are dependency JARs and user-defined functions (UDF).
///
///
[AWSProperty(Max=50)]
public List CustomArtifactsConfiguration
{
get { return this._customArtifactsConfiguration; }
set { this._customArtifactsConfiguration = value; }
}
// Check to see if CustomArtifactsConfiguration property is set
internal bool IsSetCustomArtifactsConfiguration()
{
return this._customArtifactsConfiguration != null && this._customArtifactsConfiguration.Count > 0;
}
///
/// Gets and sets the property DeployAsApplicationConfiguration.
///
/// The information required to deploy a Kinesis Data Analytics Studio notebook as an
/// application with durable state.
///
///
public DeployAsApplicationConfiguration DeployAsApplicationConfiguration
{
get { return this._deployAsApplicationConfiguration; }
set { this._deployAsApplicationConfiguration = value; }
}
// Check to see if DeployAsApplicationConfiguration property is set
internal bool IsSetDeployAsApplicationConfiguration()
{
return this._deployAsApplicationConfiguration != null;
}
///
/// Gets and sets the property MonitoringConfiguration.
///
/// The monitoring configuration of a Kinesis Data Analytics Studio notebook.
///
///
public ZeppelinMonitoringConfiguration MonitoringConfiguration
{
get { return this._monitoringConfiguration; }
set { this._monitoringConfiguration = value; }
}
// Check to see if MonitoringConfiguration property is set
internal bool IsSetMonitoringConfiguration()
{
return this._monitoringConfiguration != null;
}
}
}