/*
* 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 appflow-2020-08-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.Appflow.Model
{
///
/// Specifies the information that is required to query a particular connector.
///
public partial class SourceConnectorProperties
{
private AmplitudeSourceProperties _amplitude;
private CustomConnectorSourceProperties _customConnector;
private DatadogSourceProperties _datadog;
private DynatraceSourceProperties _dynatrace;
private GoogleAnalyticsSourceProperties _googleAnalytics;
private InforNexusSourceProperties _inforNexus;
private MarketoSourceProperties _marketo;
private PardotSourceProperties _pardot;
private S3SourceProperties _s3;
private SalesforceSourceProperties _salesforce;
private SAPODataSourceProperties _sapoData;
private ServiceNowSourceProperties _serviceNow;
private SingularSourceProperties _singular;
private SlackSourceProperties _slack;
private TrendmicroSourceProperties _trendmicro;
private VeevaSourceProperties _veeva;
private ZendeskSourceProperties _zendesk;
///
/// Gets and sets the property Amplitude.
///
/// Specifies the information that is required for querying Amplitude.
///
///
public AmplitudeSourceProperties Amplitude
{
get { return this._amplitude; }
set { this._amplitude = value; }
}
// Check to see if Amplitude property is set
internal bool IsSetAmplitude()
{
return this._amplitude != null;
}
///
/// Gets and sets the property CustomConnector.
///
public CustomConnectorSourceProperties CustomConnector
{
get { return this._customConnector; }
set { this._customConnector = value; }
}
// Check to see if CustomConnector property is set
internal bool IsSetCustomConnector()
{
return this._customConnector != null;
}
///
/// Gets and sets the property Datadog.
///
/// Specifies the information that is required for querying Datadog.
///
///
public DatadogSourceProperties Datadog
{
get { return this._datadog; }
set { this._datadog = value; }
}
// Check to see if Datadog property is set
internal bool IsSetDatadog()
{
return this._datadog != null;
}
///
/// Gets and sets the property Dynatrace.
///
/// Specifies the information that is required for querying Dynatrace.
///
///
public DynatraceSourceProperties Dynatrace
{
get { return this._dynatrace; }
set { this._dynatrace = value; }
}
// Check to see if Dynatrace property is set
internal bool IsSetDynatrace()
{
return this._dynatrace != null;
}
///
/// Gets and sets the property GoogleAnalytics.
///
/// Specifies the information that is required for querying Google Analytics.
///
///
public GoogleAnalyticsSourceProperties GoogleAnalytics
{
get { return this._googleAnalytics; }
set { this._googleAnalytics = value; }
}
// Check to see if GoogleAnalytics property is set
internal bool IsSetGoogleAnalytics()
{
return this._googleAnalytics != null;
}
///
/// Gets and sets the property InforNexus.
///
/// Specifies the information that is required for querying Infor Nexus.
///
///
public InforNexusSourceProperties InforNexus
{
get { return this._inforNexus; }
set { this._inforNexus = value; }
}
// Check to see if InforNexus property is set
internal bool IsSetInforNexus()
{
return this._inforNexus != null;
}
///
/// Gets and sets the property Marketo.
///
/// Specifies the information that is required for querying Marketo.
///
///
public MarketoSourceProperties Marketo
{
get { return this._marketo; }
set { this._marketo = value; }
}
// Check to see if Marketo property is set
internal bool IsSetMarketo()
{
return this._marketo != null;
}
///
/// Gets and sets the property Pardot.
///
/// Specifies the information that is required for querying Salesforce Pardot.
///
///
public PardotSourceProperties Pardot
{
get { return this._pardot; }
set { this._pardot = value; }
}
// Check to see if Pardot property is set
internal bool IsSetPardot()
{
return this._pardot != null;
}
///
/// Gets and sets the property S3.
///
/// Specifies the information that is required for querying Amazon S3.
///
///
public S3SourceProperties S3
{
get { return this._s3; }
set { this._s3 = value; }
}
// Check to see if S3 property is set
internal bool IsSetS3()
{
return this._s3 != null;
}
///
/// Gets and sets the property Salesforce.
///
/// Specifies the information that is required for querying Salesforce.
///
///
public SalesforceSourceProperties Salesforce
{
get { return this._salesforce; }
set { this._salesforce = value; }
}
// Check to see if Salesforce property is set
internal bool IsSetSalesforce()
{
return this._salesforce != null;
}
///
/// Gets and sets the property SAPOData.
///
public SAPODataSourceProperties SAPOData
{
get { return this._sapoData; }
set { this._sapoData = value; }
}
// Check to see if SAPOData property is set
internal bool IsSetSAPOData()
{
return this._sapoData != null;
}
///
/// Gets and sets the property ServiceNow.
///
/// Specifies the information that is required for querying ServiceNow.
///
///
public ServiceNowSourceProperties ServiceNow
{
get { return this._serviceNow; }
set { this._serviceNow = value; }
}
// Check to see if ServiceNow property is set
internal bool IsSetServiceNow()
{
return this._serviceNow != null;
}
///
/// Gets and sets the property Singular.
///
/// Specifies the information that is required for querying Singular.
///
///
public SingularSourceProperties Singular
{
get { return this._singular; }
set { this._singular = value; }
}
// Check to see if Singular property is set
internal bool IsSetSingular()
{
return this._singular != null;
}
///
/// Gets and sets the property Slack.
///
/// Specifies the information that is required for querying Slack.
///
///
public SlackSourceProperties Slack
{
get { return this._slack; }
set { this._slack = value; }
}
// Check to see if Slack property is set
internal bool IsSetSlack()
{
return this._slack != null;
}
///
/// Gets and sets the property Trendmicro.
///
/// Specifies the information that is required for querying Trend Micro.
///
///
public TrendmicroSourceProperties Trendmicro
{
get { return this._trendmicro; }
set { this._trendmicro = value; }
}
// Check to see if Trendmicro property is set
internal bool IsSetTrendmicro()
{
return this._trendmicro != null;
}
///
/// Gets and sets the property Veeva.
///
/// Specifies the information that is required for querying Veeva.
///
///
public VeevaSourceProperties Veeva
{
get { return this._veeva; }
set { this._veeva = value; }
}
// Check to see if Veeva property is set
internal bool IsSetVeeva()
{
return this._veeva != null;
}
///
/// Gets and sets the property Zendesk.
///
/// Specifies the information that is required for querying Zendesk.
///
///
public ZendeskSourceProperties Zendesk
{
get { return this._zendesk; }
set { this._zendesk = value; }
}
// Check to see if Zendesk property is set
internal bool IsSetZendesk()
{
return this._zendesk != null;
}
}
}