/* * Copyright 2018-2023 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. */ package com.amazonaws.services.appflow.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* The properties that are applied when Salesforce is being used as a source. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SalesforceSourceProperties implements Serializable, Cloneable, StructuredPojo { /** ** The object specified in the Salesforce flow source. *
*/ private String object; /** ** The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a * flow. *
*/ private Boolean enableDynamicFieldUpdate; /** ** Indicates whether Amazon AppFlow includes deleted files in the flow run. *
*/ private Boolean includeDeletedRecords; /** ** Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data from Salesforce. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow transfers from * Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses Salesforce REST API. If your * flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API automatically, be * aware that, for recurring flows, the data output might vary from one flow run to the next. For example, if a flow * runs daily, it might use REST API on one day to transfer 900,000 records, and it might use Bulk API 2.0 on the * next day to transfer 1,100,000 records. For each of these flow runs, the respective Salesforce API formats the * data differently. Some of the differences include how dates are formatted and null values are represented. Also, * Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the tradeoff * is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's optimal for * large sets of data. By choosing this option, you ensure that your flow writes consistent output, but you optimize * performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk API 2.0. * In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a timed out error. *
** The object specified in the Salesforce flow source. *
* * @param object * The object specified in the Salesforce flow source. */ public void setObject(String object) { this.object = object; } /** ** The object specified in the Salesforce flow source. *
* * @return The object specified in the Salesforce flow source. */ public String getObject() { return this.object; } /** ** The object specified in the Salesforce flow source. *
* * @param object * The object specified in the Salesforce flow source. * @return Returns a reference to this object so that method calls can be chained together. */ public SalesforceSourceProperties withObject(String object) { setObject(object); return this; } /** ** The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a * flow. *
* * @param enableDynamicFieldUpdate * The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while * running a flow. */ public void setEnableDynamicFieldUpdate(Boolean enableDynamicFieldUpdate) { this.enableDynamicFieldUpdate = enableDynamicFieldUpdate; } /** ** The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a * flow. *
* * @return The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while * running a flow. */ public Boolean getEnableDynamicFieldUpdate() { return this.enableDynamicFieldUpdate; } /** ** The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a * flow. *
* * @param enableDynamicFieldUpdate * The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while * running a flow. * @return Returns a reference to this object so that method calls can be chained together. */ public SalesforceSourceProperties withEnableDynamicFieldUpdate(Boolean enableDynamicFieldUpdate) { setEnableDynamicFieldUpdate(enableDynamicFieldUpdate); return this; } /** ** The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while running a * flow. *
* * @return The flag that enables dynamic fetching of new (recently added) fields in the Salesforce objects while * running a flow. */ public Boolean isEnableDynamicFieldUpdate() { return this.enableDynamicFieldUpdate; } /** ** Indicates whether Amazon AppFlow includes deleted files in the flow run. *
* * @param includeDeletedRecords * Indicates whether Amazon AppFlow includes deleted files in the flow run. */ public void setIncludeDeletedRecords(Boolean includeDeletedRecords) { this.includeDeletedRecords = includeDeletedRecords; } /** ** Indicates whether Amazon AppFlow includes deleted files in the flow run. *
* * @return Indicates whether Amazon AppFlow includes deleted files in the flow run. */ public Boolean getIncludeDeletedRecords() { return this.includeDeletedRecords; } /** ** Indicates whether Amazon AppFlow includes deleted files in the flow run. *
* * @param includeDeletedRecords * Indicates whether Amazon AppFlow includes deleted files in the flow run. * @return Returns a reference to this object so that method calls can be chained together. */ public SalesforceSourceProperties withIncludeDeletedRecords(Boolean includeDeletedRecords) { setIncludeDeletedRecords(includeDeletedRecords); return this; } /** ** Indicates whether Amazon AppFlow includes deleted files in the flow run. *
* * @return Indicates whether Amazon AppFlow includes deleted files in the flow run. */ public Boolean isIncludeDeletedRecords() { return this.includeDeletedRecords; } /** ** Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data from Salesforce. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow transfers from * Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses Salesforce REST API. If your * flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API automatically, be * aware that, for recurring flows, the data output might vary from one flow run to the next. For example, if a flow * runs daily, it might use REST API on one day to transfer 900,000 records, and it might use Bulk API 2.0 on the * next day to transfer 1,100,000 records. For each of these flow runs, the respective Salesforce API formats the * data differently. Some of the differences include how dates are formatted and null values are represented. Also, * Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the tradeoff * is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's optimal for * large sets of data. By choosing this option, you ensure that your flow writes consistent output, but you optimize * performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk API 2.0. * In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a timed out error. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow * transfers from Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses * Salesforce REST API. If your flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk * API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API * automatically, be aware that, for recurring flows, the data output might vary from one flow run to the * next. For example, if a flow runs daily, it might use REST API on one day to transfer 900,000 records, and * it might use Bulk API 2.0 on the next day to transfer 1,100,000 records. For each of these flow runs, the * respective Salesforce API formats the data differently. Some of the differences include how dates are * formatted and null values are represented. Also, Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the * tradeoff is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's * optimal for large sets of data. By choosing this option, you ensure that your flow writes consistent * output, but you optimize performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk * API 2.0. In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a * timed out error. *
** Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data from Salesforce. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow transfers from * Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses Salesforce REST API. If your * flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API automatically, be * aware that, for recurring flows, the data output might vary from one flow run to the next. For example, if a flow * runs daily, it might use REST API on one day to transfer 900,000 records, and it might use Bulk API 2.0 on the * next day to transfer 1,100,000 records. For each of these flow runs, the respective Salesforce API formats the * data differently. Some of the differences include how dates are formatted and null values are represented. Also, * Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the tradeoff * is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's optimal for * large sets of data. By choosing this option, you ensure that your flow writes consistent output, but you optimize * performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk API 2.0. * In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a timed out error. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow * transfers from Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses * Salesforce REST API. If your flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce * Bulk API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API * automatically, be aware that, for recurring flows, the data output might vary from one flow run to the * next. For example, if a flow runs daily, it might use REST API on one day to transfer 900,000 records, * and it might use Bulk API 2.0 on the next day to transfer 1,100,000 records. For each of these flow runs, * the respective Salesforce API formats the data differently. Some of the differences include how dates are * formatted and null values are represented. Also, Bulk API 2.0 doesn't transfer Salesforce compound * fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the * tradeoff is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's * optimal for large sets of data. By choosing this option, you ensure that your flow writes consistent * output, but you optimize performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk * API 2.0. In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a * timed out error. *
** Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data from Salesforce. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow transfers from * Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses Salesforce REST API. If your * flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API automatically, be * aware that, for recurring flows, the data output might vary from one flow run to the next. For example, if a flow * runs daily, it might use REST API on one day to transfer 900,000 records, and it might use Bulk API 2.0 on the * next day to transfer 1,100,000 records. For each of these flow runs, the respective Salesforce API formats the * data differently. Some of the differences include how dates are formatted and null values are represented. Also, * Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the tradeoff * is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's optimal for * large sets of data. By choosing this option, you ensure that your flow writes consistent output, but you optimize * performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk API 2.0. * In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a timed out error. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow * transfers from Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses * Salesforce REST API. If your flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk * API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API * automatically, be aware that, for recurring flows, the data output might vary from one flow run to the * next. For example, if a flow runs daily, it might use REST API on one day to transfer 900,000 records, and * it might use Bulk API 2.0 on the next day to transfer 1,100,000 records. For each of these flow runs, the * respective Salesforce API formats the data differently. Some of the differences include how dates are * formatted and null values are represented. Also, Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the * tradeoff is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's * optimal for large sets of data. By choosing this option, you ensure that your flow writes consistent * output, but you optimize performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk * API 2.0. In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a * timed out error. *
** Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data from Salesforce. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow transfers from * Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses Salesforce REST API. If your * flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API automatically, be * aware that, for recurring flows, the data output might vary from one flow run to the next. For example, if a flow * runs daily, it might use REST API on one day to transfer 900,000 records, and it might use Bulk API 2.0 on the * next day to transfer 1,100,000 records. For each of these flow runs, the respective Salesforce API formats the * data differently. Some of the differences include how dates are formatted and null values are represented. Also, * Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the tradeoff * is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's optimal for * large sets of data. By choosing this option, you ensure that your flow writes consistent output, but you optimize * performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk API 2.0. * In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a timed out error. *
** The default. Amazon AppFlow selects which API to use based on the number of records that your flow * transfers from Salesforce. If your flow transfers fewer than 1,000,000 records, Amazon AppFlow uses * Salesforce REST API. If your flow transfers 1,000,000 records or more, Amazon AppFlow uses Salesforce Bulk * API 2.0. *
** Each of these Salesforce APIs structures data differently. If Amazon AppFlow selects the API * automatically, be aware that, for recurring flows, the data output might vary from one flow run to the * next. For example, if a flow runs daily, it might use REST API on one day to transfer 900,000 records, and * it might use Bulk API 2.0 on the next day to transfer 1,100,000 records. For each of these flow runs, the * respective Salesforce API formats the data differently. Some of the differences include how dates are * formatted and null values are represented. Also, Bulk API 2.0 doesn't transfer Salesforce compound fields. *
** By choosing this option, you optimize flow performance for both small and large data transfers, but the * tradeoff is inconsistent formatting in the output. *
** Amazon AppFlow uses only Salesforce Bulk API 2.0. This API runs asynchronous data transfers, and it's * optimal for large sets of data. By choosing this option, you ensure that your flow writes consistent * output, but you optimize performance only for large data transfers. *
** Note that Bulk API 2.0 does not transfer Salesforce compound fields. *
** Amazon AppFlow uses only Salesforce REST API. By choosing this option, you ensure that your flow writes * consistent output, but you decrease performance for large data transfers that are better suited for Bulk * API 2.0. In some cases, if your flow attempts to transfer a vary large set of data, it might fail wituh a * timed out error. *
*