interface VeevaSourcePropertiesProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppFlow.CfnFlow.VeevaSourcePropertiesProperty | 
|  Java | software.amazon.awscdk.services.appflow.CfnFlow.VeevaSourcePropertiesProperty | 
|  Python | aws_cdk.aws_appflow.CfnFlow.VeevaSourcePropertiesProperty | 
|  TypeScript | @aws-cdk/aws-appflow»CfnFlow»VeevaSourcePropertiesProperty | 
The properties that are applied when using Veeva as a flow source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appflow from '@aws-cdk/aws-appflow';
const veevaSourcePropertiesProperty: appflow.CfnFlow.VeevaSourcePropertiesProperty = {
  object: 'object',
  // the properties below are optional
  documentType: 'documentType',
  includeAllVersions: false,
  includeRenditions: false,
  includeSourceFiles: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| object | string | The object specified in the Veeva flow source. | 
| document | string | The document type specified in the Veeva document extract flow. | 
| include | boolean | IResolvable | Boolean value to include All Versions of files in Veeva document extract flow. | 
| include | boolean | IResolvable | Boolean value to include file renditions in Veeva document extract flow. | 
| include | boolean | IResolvable | Boolean value to include source files in Veeva document extract flow. | 
object
Type:
string
The object specified in the Veeva flow source.
documentType?
Type:
string
(optional)
The document type specified in the Veeva document extract flow.
includeAllVersions?
Type:
boolean | IResolvable
(optional)
Boolean value to include All Versions of files in Veeva document extract flow.
includeRenditions?
Type:
boolean | IResolvable
(optional)
Boolean value to include file renditions in Veeva document extract flow.
includeSourceFiles?
Type:
boolean | IResolvable
(optional)
Boolean value to include source files in Veeva document extract flow.
