@aws-sdk/client-appflow 3.428.0 → 3.430.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,7 +35,7 @@ export interface AggregationConfig {
35
35
  * <p> Specifies whether Amazon AppFlow aggregates the flow records into a single file, or
36
36
  * leave them unaggregated. </p>
37
37
  */
38
- aggregationType?: AggregationType | string;
38
+ aggregationType?: AggregationType;
39
39
  /**
40
40
  * @public
41
41
  * <p>The desired file size, in MB, for each output file that Amazon AppFlow writes to the
@@ -217,7 +217,7 @@ export interface OAuth2CustomParameter {
217
217
  * @public
218
218
  * <p>Indicates whether custom parameter is used with TokenUrl or AuthUrl.</p>
219
219
  */
220
- type?: OAuth2CustomPropType | string;
220
+ type?: OAuth2CustomPropType;
221
221
  }
222
222
  /**
223
223
  * @public
@@ -256,7 +256,7 @@ export interface OAuth2Defaults {
256
256
  * @public
257
257
  * <p>OAuth 2.0 grant types supported by the connector.</p>
258
258
  */
259
- oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
259
+ oauth2GrantTypesSupported?: OAuth2GrantType[];
260
260
  /**
261
261
  * @public
262
262
  * <p>List of custom parameters required for OAuth 2.0 authentication.</p>
@@ -561,7 +561,7 @@ export interface SalesforceMetadata {
561
561
  * <p>The Salesforce APIs that you can have Amazon AppFlow use when your flows transfers
562
562
  * data to or from Salesforce.</p>
563
563
  */
564
- dataTransferApis?: (SalesforceDataTransferApi | string)[];
564
+ dataTransferApis?: SalesforceDataTransferApi[];
565
565
  /**
566
566
  * @public
567
567
  * <p>The OAuth 2.0 grant types that Amazon AppFlow can use when it requests an access
@@ -590,7 +590,7 @@ export interface SalesforceMetadata {
590
590
  * </dd>
591
591
  * </dl>
592
592
  */
593
- oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
593
+ oauth2GrantTypesSupported?: OAuth2GrantType[];
594
594
  }
595
595
  /**
596
596
  * @public
@@ -935,7 +935,7 @@ export interface DataTransferApi {
935
935
  * </dd>
936
936
  * </dl>
937
937
  */
938
- Type?: DataTransferApiType | string;
938
+ Type?: DataTransferApiType;
939
939
  }
940
940
  /**
941
941
  * @public
@@ -1042,12 +1042,12 @@ export interface ConnectorConfiguration {
1042
1042
  * @public
1043
1043
  * <p> Lists the connectors that are available for use as destinations. </p>
1044
1044
  */
1045
- supportedDestinationConnectors?: (ConnectorType | string)[];
1045
+ supportedDestinationConnectors?: ConnectorType[];
1046
1046
  /**
1047
1047
  * @public
1048
1048
  * <p> Specifies the supported flow frequency for that connector. </p>
1049
1049
  */
1050
- supportedSchedulingFrequencies?: (ScheduleFrequencyType | string)[];
1050
+ supportedSchedulingFrequencies?: ScheduleFrequencyType[];
1051
1051
  /**
1052
1052
  * @public
1053
1053
  * <p> Specifies if PrivateLink is enabled for that connector. </p>
@@ -1062,7 +1062,7 @@ export interface ConnectorConfiguration {
1062
1062
  * @public
1063
1063
  * <p> Specifies the supported trigger types for the flow. </p>
1064
1064
  */
1065
- supportedTriggerTypes?: (TriggerType | string)[];
1065
+ supportedTriggerTypes?: TriggerType[];
1066
1066
  /**
1067
1067
  * @public
1068
1068
  * <p> Specifies connector-specific metadata such as <code>oAuthScopes</code>,
@@ -1073,7 +1073,7 @@ export interface ConnectorConfiguration {
1073
1073
  * @public
1074
1074
  * <p>The connector type.</p>
1075
1075
  */
1076
- connectorType?: ConnectorType | string;
1076
+ connectorType?: ConnectorType;
1077
1077
  /**
1078
1078
  * @public
1079
1079
  * <p>The label used for registering the connector.</p>
@@ -1128,17 +1128,17 @@ export interface ConnectorConfiguration {
1128
1128
  * @public
1129
1129
  * <p>A list of operators supported by the connector.</p>
1130
1130
  */
1131
- supportedOperators?: (Operators | string)[];
1131
+ supportedOperators?: Operators[];
1132
1132
  /**
1133
1133
  * @public
1134
1134
  * <p>A list of write operations supported by the connector.</p>
1135
1135
  */
1136
- supportedWriteOperations?: (WriteOperationType | string)[];
1136
+ supportedWriteOperations?: WriteOperationType[];
1137
1137
  /**
1138
1138
  * @public
1139
1139
  * <p>The provisioning type used to register the connector.</p>
1140
1140
  */
1141
- connectorProvisioningType?: ConnectorProvisioningType | string;
1141
+ connectorProvisioningType?: ConnectorProvisioningType;
1142
1142
  /**
1143
1143
  * @public
1144
1144
  * <p>The configuration required for registering the connector.</p>
@@ -1173,7 +1173,7 @@ export interface ConnectorConfiguration {
1173
1173
  * </dd>
1174
1174
  * </dl>
1175
1175
  */
1176
- supportedDataTransferTypes?: (SupportedDataTransferType | string)[];
1176
+ supportedDataTransferTypes?: SupportedDataTransferType[];
1177
1177
  /**
1178
1178
  * @public
1179
1179
  * <p>The APIs of the connector application that Amazon AppFlow can use to transfer your
@@ -1215,7 +1215,7 @@ export interface ConnectorDetail {
1215
1215
  * @public
1216
1216
  * <p>The connector type.</p>
1217
1217
  */
1218
- connectorType?: ConnectorType | string;
1218
+ connectorType?: ConnectorType;
1219
1219
  /**
1220
1220
  * @public
1221
1221
  * <p>A label used for the connector.</p>
@@ -1235,7 +1235,7 @@ export interface ConnectorDetail {
1235
1235
  * @public
1236
1236
  * <p>The provisioning type that the connector uses.</p>
1237
1237
  */
1238
- connectorProvisioningType?: ConnectorProvisioningType | string;
1238
+ connectorProvisioningType?: ConnectorProvisioningType;
1239
1239
  /**
1240
1240
  * @public
1241
1241
  * <p>The connection mode that the connector supports.</p>
@@ -1255,7 +1255,7 @@ export interface ConnectorDetail {
1255
1255
  * </dd>
1256
1256
  * </dl>
1257
1257
  */
1258
- supportedDataTransferTypes?: (SupportedDataTransferType | string)[];
1258
+ supportedDataTransferTypes?: SupportedDataTransferType[];
1259
1259
  }
1260
1260
  /**
1261
1261
  * @public
@@ -1324,7 +1324,7 @@ export interface DestinationFieldProperties {
1324
1324
  * used in <code>idFieldNames</code> when that write operation is present as a destination
1325
1325
  * option. </p>
1326
1326
  */
1327
- supportedWriteOperations?: (WriteOperationType | string)[];
1327
+ supportedWriteOperations?: WriteOperationType[];
1328
1328
  }
1329
1329
  /**
1330
1330
  * @public
@@ -1410,7 +1410,7 @@ export interface FieldTypeDetails {
1410
1410
  * @public
1411
1411
  * <p> The list of operators supported by a field. </p>
1412
1412
  */
1413
- filterOperators: (Operator | string)[] | undefined;
1413
+ filterOperators: Operator[] | undefined;
1414
1414
  /**
1415
1415
  * @public
1416
1416
  * <p> The list of values that a field can contain. For example, a Boolean
@@ -1937,87 +1937,87 @@ export interface ConnectorOperator {
1937
1937
  * @public
1938
1938
  * <p> The operation to be performed on the provided Amplitude source fields. </p>
1939
1939
  */
1940
- Amplitude?: AmplitudeConnectorOperator | string;
1940
+ Amplitude?: AmplitudeConnectorOperator;
1941
1941
  /**
1942
1942
  * @public
1943
1943
  * <p> The operation to be performed on the provided Datadog source fields. </p>
1944
1944
  */
1945
- Datadog?: DatadogConnectorOperator | string;
1945
+ Datadog?: DatadogConnectorOperator;
1946
1946
  /**
1947
1947
  * @public
1948
1948
  * <p> The operation to be performed on the provided Dynatrace source fields. </p>
1949
1949
  */
1950
- Dynatrace?: DynatraceConnectorOperator | string;
1950
+ Dynatrace?: DynatraceConnectorOperator;
1951
1951
  /**
1952
1952
  * @public
1953
1953
  * <p> The operation to be performed on the provided Google Analytics source fields. </p>
1954
1954
  */
1955
- GoogleAnalytics?: GoogleAnalyticsConnectorOperator | string;
1955
+ GoogleAnalytics?: GoogleAnalyticsConnectorOperator;
1956
1956
  /**
1957
1957
  * @public
1958
1958
  * <p> The operation to be performed on the provided Infor Nexus source fields. </p>
1959
1959
  */
1960
- InforNexus?: InforNexusConnectorOperator | string;
1960
+ InforNexus?: InforNexusConnectorOperator;
1961
1961
  /**
1962
1962
  * @public
1963
1963
  * <p> The operation to be performed on the provided Marketo source fields. </p>
1964
1964
  */
1965
- Marketo?: MarketoConnectorOperator | string;
1965
+ Marketo?: MarketoConnectorOperator;
1966
1966
  /**
1967
1967
  * @public
1968
1968
  * <p> The operation to be performed on the provided Amazon S3 source fields. </p>
1969
1969
  */
1970
- S3?: S3ConnectorOperator | string;
1970
+ S3?: S3ConnectorOperator;
1971
1971
  /**
1972
1972
  * @public
1973
1973
  * <p> The operation to be performed on the provided Salesforce source fields. </p>
1974
1974
  */
1975
- Salesforce?: SalesforceConnectorOperator | string;
1975
+ Salesforce?: SalesforceConnectorOperator;
1976
1976
  /**
1977
1977
  * @public
1978
1978
  * <p> The operation to be performed on the provided ServiceNow source fields. </p>
1979
1979
  */
1980
- ServiceNow?: ServiceNowConnectorOperator | string;
1980
+ ServiceNow?: ServiceNowConnectorOperator;
1981
1981
  /**
1982
1982
  * @public
1983
1983
  * <p> The operation to be performed on the provided Singular source fields. </p>
1984
1984
  */
1985
- Singular?: SingularConnectorOperator | string;
1985
+ Singular?: SingularConnectorOperator;
1986
1986
  /**
1987
1987
  * @public
1988
1988
  * <p> The operation to be performed on the provided Slack source fields. </p>
1989
1989
  */
1990
- Slack?: SlackConnectorOperator | string;
1990
+ Slack?: SlackConnectorOperator;
1991
1991
  /**
1992
1992
  * @public
1993
1993
  * <p> The operation to be performed on the provided Trend Micro source fields. </p>
1994
1994
  */
1995
- Trendmicro?: TrendmicroConnectorOperator | string;
1995
+ Trendmicro?: TrendmicroConnectorOperator;
1996
1996
  /**
1997
1997
  * @public
1998
1998
  * <p> The operation to be performed on the provided Veeva source fields. </p>
1999
1999
  */
2000
- Veeva?: VeevaConnectorOperator | string;
2000
+ Veeva?: VeevaConnectorOperator;
2001
2001
  /**
2002
2002
  * @public
2003
2003
  * <p> The operation to be performed on the provided Zendesk source fields. </p>
2004
2004
  */
2005
- Zendesk?: ZendeskConnectorOperator | string;
2005
+ Zendesk?: ZendeskConnectorOperator;
2006
2006
  /**
2007
2007
  * @public
2008
2008
  * <p> The operation to be performed on the provided SAPOData source fields. </p>
2009
2009
  */
2010
- SAPOData?: SAPODataConnectorOperator | string;
2010
+ SAPOData?: SAPODataConnectorOperator;
2011
2011
  /**
2012
2012
  * @public
2013
2013
  * <p>Operators supported by the custom connector.</p>
2014
2014
  */
2015
- CustomConnector?: Operator | string;
2015
+ CustomConnector?: Operator;
2016
2016
  /**
2017
2017
  * @public
2018
2018
  * <p>The operation to be performed on the provided Salesforce Pardot source fields.</p>
2019
2019
  */
2020
- Pardot?: PardotConnectorOperator | string;
2020
+ Pardot?: PardotConnectorOperator;
2021
2021
  }
2022
2022
  /**
2023
2023
  * @public
@@ -2033,7 +2033,7 @@ export interface OAuth2Properties {
2033
2033
  * @public
2034
2034
  * <p>The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.</p>
2035
2035
  */
2036
- oAuth2GrantType: OAuth2GrantType | string | undefined;
2036
+ oAuth2GrantType: OAuth2GrantType | undefined;
2037
2037
  /**
2038
2038
  * @public
2039
2039
  * <p>Associates your token URL with a map of properties that you define. Use this parameter to
@@ -2573,7 +2573,7 @@ export interface PrivateConnectionProvisioningState {
2573
2573
  * @public
2574
2574
  * <p> Specifies the private connection provisioning status. </p>
2575
2575
  */
2576
- status?: PrivateConnectionProvisioningStatus | string;
2576
+ status?: PrivateConnectionProvisioningStatus;
2577
2577
  /**
2578
2578
  * @public
2579
2579
  * <p> Specifies the private connection provisioning failure reason. </p>
@@ -2583,7 +2583,7 @@ export interface PrivateConnectionProvisioningState {
2583
2583
  * @public
2584
2584
  * <p> Specifies the private connection provisioning failure cause. </p>
2585
2585
  */
2586
- failureCause?: PrivateConnectionProvisioningFailureCause | string;
2586
+ failureCause?: PrivateConnectionProvisioningFailureCause;
2587
2587
  }
2588
2588
  /**
2589
2589
  * @public
@@ -2609,7 +2609,7 @@ export interface ConnectorProfile {
2609
2609
  * @public
2610
2610
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
2611
2611
  */
2612
- connectorType?: ConnectorType | string;
2612
+ connectorType?: ConnectorType;
2613
2613
  /**
2614
2614
  * @public
2615
2615
  * <p>The label for the connector profile being created.</p>
@@ -2619,7 +2619,7 @@ export interface ConnectorProfile {
2619
2619
  * @public
2620
2620
  * <p> Indicates the connection mode and if it is public or private. </p>
2621
2621
  */
2622
- connectionMode?: ConnectionMode | string;
2622
+ connectionMode?: ConnectionMode;
2623
2623
  /**
2624
2624
  * @public
2625
2625
  * <p> The Amazon Resource Name (ARN) of the connector profile credentials. </p>
@@ -2706,7 +2706,7 @@ export interface CustomConnectorProfileCredentials {
2706
2706
  * <p>The authentication type that the custom connector uses for authenticating while creating a
2707
2707
  * connector profile.</p>
2708
2708
  */
2709
- authenticationType: AuthenticationType | string | undefined;
2709
+ authenticationType: AuthenticationType | undefined;
2710
2710
  /**
2711
2711
  * @public
2712
2712
  * <p>The basic credentials that are required for the authentication of the user.</p>
@@ -2969,7 +2969,7 @@ export interface SalesforceConnectorProfileCredentials {
2969
2969
  * </dd>
2970
2970
  * </dl>
2971
2971
  */
2972
- oAuth2GrantType?: OAuth2GrantType | string;
2972
+ oAuth2GrantType?: OAuth2GrantType;
2973
2973
  /**
2974
2974
  * @public
2975
2975
  * <p>A JSON web token (JWT) that authorizes Amazon AppFlow to access your Salesforce
@@ -3310,7 +3310,7 @@ export interface CreateConnectorProfileRequest {
3310
3310
  * @public
3311
3311
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
3312
3312
  */
3313
- connectorType: ConnectorType | string | undefined;
3313
+ connectorType: ConnectorType | undefined;
3314
3314
  /**
3315
3315
  * @public
3316
3316
  * <p>The label of the connector. The label is unique for each
@@ -3324,7 +3324,7 @@ export interface CreateConnectorProfileRequest {
3324
3324
  * flows use Amazon Web Services PrivateLink to route data over Amazon Web Services infrastructure
3325
3325
  * without exposing it to the public internet. </p>
3326
3326
  */
3327
- connectionMode: ConnectionMode | string | undefined;
3327
+ connectionMode: ConnectionMode | undefined;
3328
3328
  /**
3329
3329
  * @public
3330
3330
  * <p> Defines the connector-specific configuration and credentials. </p>
@@ -3416,7 +3416,7 @@ export interface CustomConnectorDestinationProperties {
3416
3416
  * <p>Specifies the type of write operation to be performed in the custom connector when it's
3417
3417
  * used as destination.</p>
3418
3418
  */
3419
- writeOperationType?: WriteOperationType | string;
3419
+ writeOperationType?: WriteOperationType;
3420
3420
  /**
3421
3421
  * @public
3422
3422
  * <p>The name of the field that Amazon AppFlow uses as an ID when performing a write
@@ -3613,13 +3613,13 @@ export interface PrefixConfig {
3613
3613
  * <p>Determines the format of the prefix, and whether it applies to the file name, file path,
3614
3614
  * or both. </p>
3615
3615
  */
3616
- prefixType?: PrefixType | string;
3616
+ prefixType?: PrefixType;
3617
3617
  /**
3618
3618
  * @public
3619
3619
  * <p>Determines the level of granularity for the date and time that's included in the prefix.
3620
3620
  * </p>
3621
3621
  */
3622
- prefixFormat?: PrefixFormat | string;
3622
+ prefixFormat?: PrefixFormat;
3623
3623
  /**
3624
3624
  * @public
3625
3625
  * <p>Specifies whether the destination file path includes either or both of the following
@@ -3648,7 +3648,7 @@ export interface PrefixConfig {
3648
3648
  * </dd>
3649
3649
  * </dl>
3650
3650
  */
3651
- pathPrefixHierarchy?: (PathPrefix | string)[];
3651
+ pathPrefixHierarchy?: PathPrefix[];
3652
3652
  }
3653
3653
  /**
3654
3654
  * @public
@@ -3661,7 +3661,7 @@ export interface S3OutputFormatConfig {
3661
3661
  * <p> Indicates the file type that Amazon AppFlow places in the Amazon S3 bucket.
3662
3662
  * </p>
3663
3663
  */
3664
- fileType?: FileType | string;
3664
+ fileType?: FileType;
3665
3665
  /**
3666
3666
  * @public
3667
3667
  * <p> Determines the prefix that Amazon AppFlow applies to the folder name in the Amazon S3 bucket. You can name folders according to the flow frequency and date. </p>
@@ -3747,7 +3747,7 @@ export interface SalesforceDestinationProperties {
3747
3747
  * <p> This specifies the type of write operation to be performed in Salesforce. When the value
3748
3748
  * is <code>UPSERT</code>, then <code>idFieldNames</code> is required. </p>
3749
3749
  */
3750
- writeOperationType?: WriteOperationType | string;
3750
+ writeOperationType?: WriteOperationType;
3751
3751
  /**
3752
3752
  * @public
3753
3753
  * <p>Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers
@@ -3788,7 +3788,7 @@ export interface SalesforceDestinationProperties {
3788
3788
  * </dd>
3789
3789
  * </dl>
3790
3790
  */
3791
- dataTransferApi?: SalesforceDataTransferApi | string;
3791
+ dataTransferApi?: SalesforceDataTransferApi;
3792
3792
  }
3793
3793
  /**
3794
3794
  * @public
@@ -3847,7 +3847,7 @@ export interface SAPODataDestinationProperties {
3847
3847
  * <p> The possible write operations in the destination connector. When this value is not
3848
3848
  * provided, this defaults to the <code>INSERT</code> operation. </p>
3849
3849
  */
3850
- writeOperationType?: WriteOperationType | string;
3850
+ writeOperationType?: WriteOperationType;
3851
3851
  }
3852
3852
  /**
3853
3853
  * @public
@@ -3892,7 +3892,7 @@ export interface UpsolverS3OutputFormatConfig {
3892
3892
  * <p> Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3
3893
3893
  * bucket. </p>
3894
3894
  */
3895
- fileType?: FileType | string;
3895
+ fileType?: FileType;
3896
3896
  /**
3897
3897
  * @public
3898
3898
  * <p>Specifies elements that Amazon AppFlow includes in the file and folder names in the flow
@@ -3959,7 +3959,7 @@ export interface ZendeskDestinationProperties {
3959
3959
  * <p> The possible write operations in the destination connector. When this value is not
3960
3960
  * provided, this defaults to the <code>INSERT</code> operation. </p>
3961
3961
  */
3962
- writeOperationType?: WriteOperationType | string;
3962
+ writeOperationType?: WriteOperationType;
3963
3963
  }
3964
3964
  /**
3965
3965
  * @public
@@ -4042,7 +4042,7 @@ export interface DestinationFlowConfig {
4042
4042
  * @public
4043
4043
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
4044
4044
  */
4045
- connectorType: ConnectorType | string | undefined;
4045
+ connectorType: ConnectorType | undefined;
4046
4046
  /**
4047
4047
  * @public
4048
4048
  * <p>The API version that the destination connector uses.</p>
@@ -4234,7 +4234,7 @@ export interface S3InputFormatConfig {
4234
4234
  * @public
4235
4235
  * <p> The file type that Amazon AppFlow gets from your Amazon S3 bucket. </p>
4236
4236
  */
4237
- s3InputFileType?: S3InputFileType | string;
4237
+ s3InputFileType?: S3InputFileType;
4238
4238
  }
4239
4239
  /**
4240
4240
  * @public
@@ -4321,7 +4321,7 @@ export interface SalesforceSourceProperties {
4321
4321
  * </dd>
4322
4322
  * </dl>
4323
4323
  */
4324
- dataTransferApi?: SalesforceDataTransferApi | string;
4324
+ dataTransferApi?: SalesforceDataTransferApi;
4325
4325
  }
4326
4326
  /**
4327
4327
  * @public
@@ -4566,7 +4566,7 @@ export interface SourceFlowConfig {
4566
4566
  * @public
4567
4567
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
4568
4568
  */
4569
- connectorType: ConnectorType | string | undefined;
4569
+ connectorType: ConnectorType | undefined;
4570
4570
  /**
4571
4571
  * @public
4572
4572
  * <p>The API version of the connector when it's used as a source in the flow.</p>
@@ -4665,13 +4665,13 @@ export interface Task {
4665
4665
  * @public
4666
4666
  * <p> Specifies the particular task implementation that Amazon AppFlow performs. </p>
4667
4667
  */
4668
- taskType: TaskType | string | undefined;
4668
+ taskType: TaskType | undefined;
4669
4669
  /**
4670
4670
  * @public
4671
4671
  * <p> A map used to store task-related information. The execution service looks for particular
4672
4672
  * information based on the <code>TaskType</code>. </p>
4673
4673
  */
4674
- taskProperties?: Record<string, string>;
4674
+ taskProperties?: Record<OperatorPropertiesKeys, string>;
4675
4675
  }
4676
4676
  /**
4677
4677
  * @public
@@ -4702,7 +4702,7 @@ export interface ScheduledTriggerProperties {
4702
4702
  * <p> Specifies whether a scheduled flow has an incremental data transfer or a complete data
4703
4703
  * transfer for each flow run. </p>
4704
4704
  */
4705
- dataPullMode?: DataPullMode | string;
4705
+ dataPullMode?: DataPullMode;
4706
4706
  /**
4707
4707
  * @public
4708
4708
  * <p>The time at which the scheduled flow starts. The time is formatted as a timestamp that
@@ -4770,7 +4770,7 @@ export interface TriggerConfig {
4770
4770
  * <p> Specifies the type of flow trigger. This can be <code>OnDemand</code>,
4771
4771
  * <code>Scheduled</code>, or <code>Event</code>. </p>
4772
4772
  */
4773
- triggerType: TriggerType | string | undefined;
4773
+ triggerType: TriggerType | undefined;
4774
4774
  /**
4775
4775
  * @public
4776
4776
  * <p> Specifies the configuration details of a schedule-triggered flow as defined by the user.
@@ -4879,7 +4879,7 @@ export interface CreateFlowResponse {
4879
4879
  * @public
4880
4880
  * <p> Indicates the current status of the flow. </p>
4881
4881
  */
4882
- flowStatus?: FlowStatus | string;
4882
+ flowStatus?: FlowStatus;
4883
4883
  }
4884
4884
  /**
4885
4885
  * @public
@@ -4934,7 +4934,7 @@ export interface DescribeConnectorRequest {
4934
4934
  * <p>The connector type, such as CUSTOMCONNECTOR, Saleforce, Marketo. Please choose
4935
4935
  * CUSTOMCONNECTOR for Lambda based custom connectors.</p>
4936
4936
  */
4937
- connectorType: ConnectorType | string | undefined;
4937
+ connectorType: ConnectorType | undefined;
4938
4938
  /**
4939
4939
  * @public
4940
4940
  * <p>The label of the connector. The label is unique for each
@@ -4966,7 +4966,7 @@ export interface DescribeConnectorEntityRequest {
4966
4966
  * @public
4967
4967
  * <p> The type of connector application, such as Salesforce, Amplitude, and so on. </p>
4968
4968
  */
4969
- connectorType?: ConnectorType | string;
4969
+ connectorType?: ConnectorType;
4970
4970
  /**
4971
4971
  * @public
4972
4972
  * <p> The name of the connector profile. The name is unique for each
@@ -5005,7 +5005,7 @@ export interface DescribeConnectorProfilesRequest {
5005
5005
  * @public
5006
5006
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
5007
5007
  */
5008
- connectorType?: ConnectorType | string;
5008
+ connectorType?: ConnectorType;
5009
5009
  /**
5010
5010
  * @public
5011
5011
  * <p>The name of the connector. The name is unique for each <code>ConnectorRegistration</code>
@@ -5049,7 +5049,7 @@ export interface DescribeConnectorsRequest {
5049
5049
  * @public
5050
5050
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
5051
5051
  */
5052
- connectorTypes?: (ConnectorType | string)[];
5052
+ connectorTypes?: ConnectorType[];
5053
5053
  /**
5054
5054
  * @public
5055
5055
  * <p>The maximum number of items that should be returned in the result set. The default is
@@ -5070,7 +5070,7 @@ export interface DescribeConnectorsResponse {
5070
5070
  * @public
5071
5071
  * <p> The configuration that is applied to the connectors used in the flow. </p>
5072
5072
  */
5073
- connectorConfigurations?: Record<string, ConnectorConfiguration>;
5073
+ connectorConfigurations?: Record<ConnectorType, ConnectorConfiguration>;
5074
5074
  /**
5075
5075
  * @public
5076
5076
  * <p>Information about the connectors supported in Amazon AppFlow.</p>
@@ -5128,7 +5128,7 @@ export interface ExecutionDetails {
5128
5128
  * @public
5129
5129
  * <p> Specifies the status of the most recent flow run. </p>
5130
5130
  */
5131
- mostRecentExecutionStatus?: ExecutionStatus | string;
5131
+ mostRecentExecutionStatus?: ExecutionStatus;
5132
5132
  }
5133
5133
  /**
5134
5134
  * @public
@@ -5155,7 +5155,7 @@ export interface RegistrationOutput {
5155
5155
  * @public
5156
5156
  * <p>Indicates the status of the registration attempt from Amazon AppFlow.</p>
5157
5157
  */
5158
- status?: ExecutionStatus | string;
5158
+ status?: ExecutionStatus;
5159
5159
  }
5160
5160
  /**
5161
5161
  * @public
@@ -5174,7 +5174,7 @@ export interface MetadataCatalogDetail {
5174
5174
  * </dd>
5175
5175
  * </dl>
5176
5176
  */
5177
- catalogType?: CatalogType | string;
5177
+ catalogType?: CatalogType;
5178
5178
  /**
5179
5179
  * @public
5180
5180
  * <p>The name of the table that stores the metadata for the associated flow run. The table
@@ -5229,7 +5229,7 @@ export interface DescribeFlowResponse {
5229
5229
  * @public
5230
5230
  * <p> Indicates the current status of the flow. </p>
5231
5231
  */
5232
- flowStatus?: FlowStatus | string;
5232
+ flowStatus?: FlowStatus;
5233
5233
  /**
5234
5234
  * @public
5235
5235
  * <p> Contains an error message if the flow status is in a suspended or error state. This
@@ -5412,7 +5412,7 @@ export interface ExecutionRecord {
5412
5412
  * <p> Specifies the flow run status and whether it is in progress, has completed successfully,
5413
5413
  * or has failed. </p>
5414
5414
  */
5415
- executionStatus?: ExecutionStatus | string;
5415
+ executionStatus?: ExecutionStatus;
5416
5416
  /**
5417
5417
  * @public
5418
5418
  * <p> Describes the result of the given flow run. </p>
@@ -5487,13 +5487,13 @@ export interface FlowDefinition {
5487
5487
  * @public
5488
5488
  * <p> Indicates the current status of the flow. </p>
5489
5489
  */
5490
- flowStatus?: FlowStatus | string;
5490
+ flowStatus?: FlowStatus;
5491
5491
  /**
5492
5492
  * @public
5493
5493
  * <p> Specifies the source connector type, such as Salesforce, Amazon S3, Amplitude,
5494
5494
  * and so on. </p>
5495
5495
  */
5496
- sourceConnectorType?: ConnectorType | string;
5496
+ sourceConnectorType?: ConnectorType;
5497
5497
  /**
5498
5498
  * @public
5499
5499
  * <p>The label of the source connector in the flow.</p>
@@ -5504,7 +5504,7 @@ export interface FlowDefinition {
5504
5504
  * <p> Specifies the destination connector type, such as Salesforce, Amazon S3,
5505
5505
  * Amplitude, and so on. </p>
5506
5506
  */
5507
- destinationConnectorType?: ConnectorType | string;
5507
+ destinationConnectorType?: ConnectorType;
5508
5508
  /**
5509
5509
  * @public
5510
5510
  * <p>The label of the destination connector in the flow.</p>
@@ -5515,7 +5515,7 @@ export interface FlowDefinition {
5515
5515
  * <p> Specifies the type of flow trigger. This can be <code>OnDemand</code>,
5516
5516
  * <code>Scheduled</code>, or <code>Event</code>. </p>
5517
5517
  */
5518
- triggerType?: TriggerType | string;
5518
+ triggerType?: TriggerType;
5519
5519
  /**
5520
5520
  * @public
5521
5521
  * <p> Specifies when the flow was created. </p>
@@ -5562,7 +5562,7 @@ export interface ListConnectorEntitiesRequest {
5562
5562
  * @public
5563
5563
  * <p> The type of connector, such as Salesforce, Amplitude, and so on. </p>
5564
5564
  */
5565
- connectorType?: ConnectorType | string;
5565
+ connectorType?: ConnectorType;
5566
5566
  /**
5567
5567
  * @public
5568
5568
  * <p> This optional parameter is specific to connector implementation. Some connectors support
@@ -5711,7 +5711,7 @@ export interface RegisterConnectorRequest {
5711
5711
  * <p>The provisioning type of the connector. Currently the only supported value is LAMBDA.
5712
5712
  * </p>
5713
5713
  */
5714
- connectorProvisioningType?: ConnectorProvisioningType | string;
5714
+ connectorProvisioningType?: ConnectorProvisioningType;
5715
5715
  /**
5716
5716
  * @public
5717
5717
  * <p>The provisioning type of the connector. Currently the only supported value is
@@ -5763,7 +5763,7 @@ export interface ResetConnectorMetadataCacheRequest {
5763
5763
  * Amazon S3, or Upsolver. If you're resetting the cache for any other connector, you
5764
5764
  * can omit this parameter from your request. </p>
5765
5765
  */
5766
- connectorType?: ConnectorType | string;
5766
+ connectorType?: ConnectorType;
5767
5767
  /**
5768
5768
  * @public
5769
5769
  * <p>Use this parameter if you want to reset cached metadata about the details for an
@@ -5846,7 +5846,7 @@ export interface StartFlowResponse {
5846
5846
  * @public
5847
5847
  * <p> Indicates the current status of the flow. </p>
5848
5848
  */
5849
- flowStatus?: FlowStatus | string;
5849
+ flowStatus?: FlowStatus;
5850
5850
  /**
5851
5851
  * @public
5852
5852
  * <p> Returns the internal execution ID of an on-demand flow when the flow is started. For
@@ -5878,7 +5878,7 @@ export interface StopFlowResponse {
5878
5878
  * @public
5879
5879
  * <p> Indicates the current status of the flow. </p>
5880
5880
  */
5881
- flowStatus?: FlowStatus | string;
5881
+ flowStatus?: FlowStatus;
5882
5882
  }
5883
5883
  /**
5884
5884
  * @public
@@ -5968,7 +5968,7 @@ export interface UpdateConnectorProfileRequest {
5968
5968
  * @public
5969
5969
  * <p> Indicates the connection mode and if it is public or private. </p>
5970
5970
  */
5971
- connectionMode: ConnectionMode | string | undefined;
5971
+ connectionMode: ConnectionMode | undefined;
5972
5972
  /**
5973
5973
  * @public
5974
5974
  * <p> Defines the connector-specific profile configuration and credentials. </p>
@@ -6112,7 +6112,7 @@ export interface UpdateFlowResponse {
6112
6112
  * @public
6113
6113
  * <p>Indicates the current status of the flow. </p>
6114
6114
  */
6115
- flowStatus?: FlowStatus | string;
6115
+ flowStatus?: FlowStatus;
6116
6116
  }
6117
6117
  /**
6118
6118
  * @internal
@@ -14,7 +14,7 @@ export declare const AggregationType: {
14
14
  export type AggregationType =
15
15
  (typeof AggregationType)[keyof typeof AggregationType];
16
16
  export interface AggregationConfig {
17
- aggregationType?: AggregationType | string;
17
+ aggregationType?: AggregationType;
18
18
  targetFileSize?: number;
19
19
  }
20
20
  export declare const AmplitudeConnectorOperator: {
@@ -60,7 +60,7 @@ export interface OAuth2CustomParameter {
60
60
  description?: string;
61
61
  isSensitiveField?: boolean;
62
62
  connectorSuppliedValues?: string[];
63
- type?: OAuth2CustomPropType | string;
63
+ type?: OAuth2CustomPropType;
64
64
  }
65
65
  export declare const OAuth2GrantType: {
66
66
  readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
@@ -73,7 +73,7 @@ export interface OAuth2Defaults {
73
73
  oauthScopes?: string[];
74
74
  tokenUrls?: string[];
75
75
  authCodeUrls?: string[];
76
- oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
76
+ oauth2GrantTypesSupported?: OAuth2GrantType[];
77
77
  oauth2CustomProperties?: OAuth2CustomParameter[];
78
78
  }
79
79
  export interface AuthenticationConfig {
@@ -180,8 +180,8 @@ export type SalesforceDataTransferApi =
180
180
  (typeof SalesforceDataTransferApi)[keyof typeof SalesforceDataTransferApi];
181
181
  export interface SalesforceMetadata {
182
182
  oAuthScopes?: string[];
183
- dataTransferApis?: (SalesforceDataTransferApi | string)[];
184
- oauth2GrantTypesSupported?: (OAuth2GrantType | string)[];
183
+ dataTransferApis?: SalesforceDataTransferApi[];
184
+ oauth2GrantTypesSupported?: OAuth2GrantType[];
185
185
  }
186
186
  export interface SAPODataMetadata {}
187
187
  export interface ServiceNowMetadata {}
@@ -278,7 +278,7 @@ export type DataTransferApiType =
278
278
  (typeof DataTransferApiType)[keyof typeof DataTransferApiType];
279
279
  export interface DataTransferApi {
280
280
  Name?: string;
281
- Type?: DataTransferApiType | string;
281
+ Type?: DataTransferApiType;
282
282
  }
283
283
  export declare const SupportedDataTransferType: {
284
284
  readonly FILE: "FILE";
@@ -337,13 +337,13 @@ export type WriteOperationType =
337
337
  export interface ConnectorConfiguration {
338
338
  canUseAsSource?: boolean;
339
339
  canUseAsDestination?: boolean;
340
- supportedDestinationConnectors?: (ConnectorType | string)[];
341
- supportedSchedulingFrequencies?: (ScheduleFrequencyType | string)[];
340
+ supportedDestinationConnectors?: ConnectorType[];
341
+ supportedSchedulingFrequencies?: ScheduleFrequencyType[];
342
342
  isPrivateLinkEnabled?: boolean;
343
343
  isPrivateLinkEndpointUrlRequired?: boolean;
344
- supportedTriggerTypes?: (TriggerType | string)[];
344
+ supportedTriggerTypes?: TriggerType[];
345
345
  connectorMetadata?: ConnectorMetadata;
346
- connectorType?: ConnectorType | string;
346
+ connectorType?: ConnectorType;
347
347
  connectorLabel?: string;
348
348
  connectorDescription?: string;
349
349
  connectorOwner?: string;
@@ -354,14 +354,14 @@ export interface ConnectorConfiguration {
354
354
  authenticationConfig?: AuthenticationConfig;
355
355
  connectorRuntimeSettings?: ConnectorRuntimeSetting[];
356
356
  supportedApiVersions?: string[];
357
- supportedOperators?: (Operators | string)[];
358
- supportedWriteOperations?: (WriteOperationType | string)[];
359
- connectorProvisioningType?: ConnectorProvisioningType | string;
357
+ supportedOperators?: Operators[];
358
+ supportedWriteOperations?: WriteOperationType[];
359
+ connectorProvisioningType?: ConnectorProvisioningType;
360
360
  connectorProvisioningConfig?: ConnectorProvisioningConfig;
361
361
  logoURL?: string;
362
362
  registeredAt?: Date;
363
363
  registeredBy?: string;
364
- supportedDataTransferTypes?: (SupportedDataTransferType | string)[];
364
+ supportedDataTransferTypes?: SupportedDataTransferType[];
365
365
  supportedDataTransferApis?: DataTransferApi[];
366
366
  }
367
367
  export interface ConnectorDetail {
@@ -370,13 +370,13 @@ export interface ConnectorDetail {
370
370
  connectorOwner?: string;
371
371
  connectorVersion?: string;
372
372
  applicationType?: string;
373
- connectorType?: ConnectorType | string;
373
+ connectorType?: ConnectorType;
374
374
  connectorLabel?: string;
375
375
  registeredAt?: Date;
376
376
  registeredBy?: string;
377
- connectorProvisioningType?: ConnectorProvisioningType | string;
377
+ connectorProvisioningType?: ConnectorProvisioningType;
378
378
  connectorModes?: string[];
379
- supportedDataTransferTypes?: (SupportedDataTransferType | string)[];
379
+ supportedDataTransferTypes?: SupportedDataTransferType[];
380
380
  }
381
381
  export interface ConnectorEntity {
382
382
  name: string | undefined;
@@ -389,7 +389,7 @@ export interface DestinationFieldProperties {
389
389
  isUpsertable?: boolean;
390
390
  isUpdatable?: boolean;
391
391
  isDefaultedOnCreate?: boolean;
392
- supportedWriteOperations?: (WriteOperationType | string)[];
392
+ supportedWriteOperations?: WriteOperationType[];
393
393
  }
394
394
  export interface SourceFieldProperties {
395
395
  isRetrievable?: boolean;
@@ -426,7 +426,7 @@ export declare const Operator: {
426
426
  export type Operator = (typeof Operator)[keyof typeof Operator];
427
427
  export interface FieldTypeDetails {
428
428
  fieldType: string | undefined;
429
- filterOperators: (Operator | string)[] | undefined;
429
+ filterOperators: Operator[] | undefined;
430
430
  supportedValues?: string[];
431
431
  valueRegexPattern?: string;
432
432
  supportedDateFormat?: string;
@@ -756,27 +756,27 @@ export declare const ZendeskConnectorOperator: {
756
756
  export type ZendeskConnectorOperator =
757
757
  (typeof ZendeskConnectorOperator)[keyof typeof ZendeskConnectorOperator];
758
758
  export interface ConnectorOperator {
759
- Amplitude?: AmplitudeConnectorOperator | string;
760
- Datadog?: DatadogConnectorOperator | string;
761
- Dynatrace?: DynatraceConnectorOperator | string;
762
- GoogleAnalytics?: GoogleAnalyticsConnectorOperator | string;
763
- InforNexus?: InforNexusConnectorOperator | string;
764
- Marketo?: MarketoConnectorOperator | string;
765
- S3?: S3ConnectorOperator | string;
766
- Salesforce?: SalesforceConnectorOperator | string;
767
- ServiceNow?: ServiceNowConnectorOperator | string;
768
- Singular?: SingularConnectorOperator | string;
769
- Slack?: SlackConnectorOperator | string;
770
- Trendmicro?: TrendmicroConnectorOperator | string;
771
- Veeva?: VeevaConnectorOperator | string;
772
- Zendesk?: ZendeskConnectorOperator | string;
773
- SAPOData?: SAPODataConnectorOperator | string;
774
- CustomConnector?: Operator | string;
775
- Pardot?: PardotConnectorOperator | string;
759
+ Amplitude?: AmplitudeConnectorOperator;
760
+ Datadog?: DatadogConnectorOperator;
761
+ Dynatrace?: DynatraceConnectorOperator;
762
+ GoogleAnalytics?: GoogleAnalyticsConnectorOperator;
763
+ InforNexus?: InforNexusConnectorOperator;
764
+ Marketo?: MarketoConnectorOperator;
765
+ S3?: S3ConnectorOperator;
766
+ Salesforce?: SalesforceConnectorOperator;
767
+ ServiceNow?: ServiceNowConnectorOperator;
768
+ Singular?: SingularConnectorOperator;
769
+ Slack?: SlackConnectorOperator;
770
+ Trendmicro?: TrendmicroConnectorOperator;
771
+ Veeva?: VeevaConnectorOperator;
772
+ Zendesk?: ZendeskConnectorOperator;
773
+ SAPOData?: SAPODataConnectorOperator;
774
+ CustomConnector?: Operator;
775
+ Pardot?: PardotConnectorOperator;
776
776
  }
777
777
  export interface OAuth2Properties {
778
778
  tokenUrl: string | undefined;
779
- oAuth2GrantType: OAuth2GrantType | string | undefined;
779
+ oAuth2GrantType: OAuth2GrantType | undefined;
780
780
  tokenUrlCustomProperties?: Record<string, string>;
781
781
  }
782
782
  export interface CustomConnectorProfileProperties {
@@ -894,16 +894,16 @@ export declare const PrivateConnectionProvisioningStatus: {
894
894
  export type PrivateConnectionProvisioningStatus =
895
895
  (typeof PrivateConnectionProvisioningStatus)[keyof typeof PrivateConnectionProvisioningStatus];
896
896
  export interface PrivateConnectionProvisioningState {
897
- status?: PrivateConnectionProvisioningStatus | string;
897
+ status?: PrivateConnectionProvisioningStatus;
898
898
  failureMessage?: string;
899
- failureCause?: PrivateConnectionProvisioningFailureCause | string;
899
+ failureCause?: PrivateConnectionProvisioningFailureCause;
900
900
  }
901
901
  export interface ConnectorProfile {
902
902
  connectorProfileArn?: string;
903
903
  connectorProfileName?: string;
904
- connectorType?: ConnectorType | string;
904
+ connectorType?: ConnectorType;
905
905
  connectorLabel?: string;
906
- connectionMode?: ConnectionMode | string;
906
+ connectionMode?: ConnectionMode;
907
907
  credentialsArn?: string;
908
908
  connectorProfileProperties?: ConnectorProfileProperties;
909
909
  createdAt?: Date;
@@ -922,7 +922,7 @@ export interface OAuth2Credentials {
922
922
  oAuthRequest?: ConnectorOAuthRequest;
923
923
  }
924
924
  export interface CustomConnectorProfileCredentials {
925
- authenticationType: AuthenticationType | string | undefined;
925
+ authenticationType: AuthenticationType | undefined;
926
926
  basic?: BasicAuthCredentials;
927
927
  oauth2?: OAuth2Credentials;
928
928
  apiKey?: ApiKeyCredentials;
@@ -974,7 +974,7 @@ export interface SalesforceConnectorProfileCredentials {
974
974
  refreshToken?: string;
975
975
  oAuthRequest?: ConnectorOAuthRequest;
976
976
  clientCredentialsArn?: string;
977
- oAuth2GrantType?: OAuth2GrantType | string;
977
+ oAuth2GrantType?: OAuth2GrantType;
978
978
  jwtToken?: string;
979
979
  }
980
980
  export interface OAuthCredentials {
@@ -1054,9 +1054,9 @@ export declare class ConnectorServerException extends __BaseException {
1054
1054
  export interface CreateConnectorProfileRequest {
1055
1055
  connectorProfileName: string | undefined;
1056
1056
  kmsArn?: string;
1057
- connectorType: ConnectorType | string | undefined;
1057
+ connectorType: ConnectorType | undefined;
1058
1058
  connectorLabel?: string;
1059
- connectionMode: ConnectionMode | string | undefined;
1059
+ connectionMode: ConnectionMode | undefined;
1060
1060
  connectorProfileConfig: ConnectorProfileConfig | undefined;
1061
1061
  clientToken?: string;
1062
1062
  }
@@ -1078,7 +1078,7 @@ export interface ErrorHandlingConfig {
1078
1078
  export interface CustomConnectorDestinationProperties {
1079
1079
  entityName: string | undefined;
1080
1080
  errorHandlingConfig?: ErrorHandlingConfig;
1081
- writeOperationType?: WriteOperationType | string;
1081
+ writeOperationType?: WriteOperationType;
1082
1082
  idFieldNames?: string[];
1083
1083
  customProperties?: Record<string, string>;
1084
1084
  }
@@ -1131,12 +1131,12 @@ export declare const PrefixType: {
1131
1131
  };
1132
1132
  export type PrefixType = (typeof PrefixType)[keyof typeof PrefixType];
1133
1133
  export interface PrefixConfig {
1134
- prefixType?: PrefixType | string;
1135
- prefixFormat?: PrefixFormat | string;
1136
- pathPrefixHierarchy?: (PathPrefix | string)[];
1134
+ prefixType?: PrefixType;
1135
+ prefixFormat?: PrefixFormat;
1136
+ pathPrefixHierarchy?: PathPrefix[];
1137
1137
  }
1138
1138
  export interface S3OutputFormatConfig {
1139
- fileType?: FileType | string;
1139
+ fileType?: FileType;
1140
1140
  prefixConfig?: PrefixConfig;
1141
1141
  aggregationConfig?: AggregationConfig;
1142
1142
  preserveSourceDataTyping?: boolean;
@@ -1150,8 +1150,8 @@ export interface SalesforceDestinationProperties {
1150
1150
  object: string | undefined;
1151
1151
  idFieldNames?: string[];
1152
1152
  errorHandlingConfig?: ErrorHandlingConfig;
1153
- writeOperationType?: WriteOperationType | string;
1154
- dataTransferApi?: SalesforceDataTransferApi | string;
1153
+ writeOperationType?: WriteOperationType;
1154
+ dataTransferApi?: SalesforceDataTransferApi;
1155
1155
  }
1156
1156
  export interface SuccessResponseHandlingConfig {
1157
1157
  bucketPrefix?: string;
@@ -1162,7 +1162,7 @@ export interface SAPODataDestinationProperties {
1162
1162
  successResponseHandlingConfig?: SuccessResponseHandlingConfig;
1163
1163
  idFieldNames?: string[];
1164
1164
  errorHandlingConfig?: ErrorHandlingConfig;
1165
- writeOperationType?: WriteOperationType | string;
1165
+ writeOperationType?: WriteOperationType;
1166
1166
  }
1167
1167
  export interface SnowflakeDestinationProperties {
1168
1168
  object: string | undefined;
@@ -1171,7 +1171,7 @@ export interface SnowflakeDestinationProperties {
1171
1171
  errorHandlingConfig?: ErrorHandlingConfig;
1172
1172
  }
1173
1173
  export interface UpsolverS3OutputFormatConfig {
1174
- fileType?: FileType | string;
1174
+ fileType?: FileType;
1175
1175
  prefixConfig: PrefixConfig | undefined;
1176
1176
  aggregationConfig?: AggregationConfig;
1177
1177
  }
@@ -1184,7 +1184,7 @@ export interface ZendeskDestinationProperties {
1184
1184
  object: string | undefined;
1185
1185
  idFieldNames?: string[];
1186
1186
  errorHandlingConfig?: ErrorHandlingConfig;
1187
- writeOperationType?: WriteOperationType | string;
1187
+ writeOperationType?: WriteOperationType;
1188
1188
  }
1189
1189
  export interface DestinationConnectorProperties {
1190
1190
  Redshift?: RedshiftDestinationProperties;
@@ -1202,7 +1202,7 @@ export interface DestinationConnectorProperties {
1202
1202
  SAPOData?: SAPODataDestinationProperties;
1203
1203
  }
1204
1204
  export interface DestinationFlowConfig {
1205
- connectorType: ConnectorType | string | undefined;
1205
+ connectorType: ConnectorType | undefined;
1206
1206
  apiVersion?: string;
1207
1207
  connectorProfileName?: string;
1208
1208
  destinationConnectorProperties: DestinationConnectorProperties | undefined;
@@ -1248,7 +1248,7 @@ export declare const S3InputFileType: {
1248
1248
  export type S3InputFileType =
1249
1249
  (typeof S3InputFileType)[keyof typeof S3InputFileType];
1250
1250
  export interface S3InputFormatConfig {
1251
- s3InputFileType?: S3InputFileType | string;
1251
+ s3InputFileType?: S3InputFileType;
1252
1252
  }
1253
1253
  export interface S3SourceProperties {
1254
1254
  bucketName: string | undefined;
@@ -1259,7 +1259,7 @@ export interface SalesforceSourceProperties {
1259
1259
  object: string | undefined;
1260
1260
  enableDynamicFieldUpdate?: boolean;
1261
1261
  includeDeletedRecords?: boolean;
1262
- dataTransferApi?: SalesforceDataTransferApi | string;
1262
+ dataTransferApi?: SalesforceDataTransferApi;
1263
1263
  }
1264
1264
  export interface SAPODataPaginationConfig {
1265
1265
  maxPageSize: number | undefined;
@@ -1314,7 +1314,7 @@ export interface SourceConnectorProperties {
1314
1314
  Pardot?: PardotSourceProperties;
1315
1315
  }
1316
1316
  export interface SourceFlowConfig {
1317
- connectorType: ConnectorType | string | undefined;
1317
+ connectorType: ConnectorType | undefined;
1318
1318
  apiVersion?: string;
1319
1319
  connectorProfileName?: string;
1320
1320
  sourceConnectorProperties: SourceConnectorProperties | undefined;
@@ -1358,8 +1358,8 @@ export interface Task {
1358
1358
  sourceFields: string[] | undefined;
1359
1359
  connectorOperator?: ConnectorOperator;
1360
1360
  destinationField?: string;
1361
- taskType: TaskType | string | undefined;
1362
- taskProperties?: Record<string, string>;
1361
+ taskType: TaskType | undefined;
1362
+ taskProperties?: Record<OperatorPropertiesKeys, string>;
1363
1363
  }
1364
1364
  export declare const DataPullMode: {
1365
1365
  readonly COMPLETE: "Complete";
@@ -1368,7 +1368,7 @@ export declare const DataPullMode: {
1368
1368
  export type DataPullMode = (typeof DataPullMode)[keyof typeof DataPullMode];
1369
1369
  export interface ScheduledTriggerProperties {
1370
1370
  scheduleExpression: string | undefined;
1371
- dataPullMode?: DataPullMode | string;
1371
+ dataPullMode?: DataPullMode;
1372
1372
  scheduleStartTime?: Date;
1373
1373
  scheduleEndTime?: Date;
1374
1374
  timezone?: string;
@@ -1380,7 +1380,7 @@ export interface TriggerProperties {
1380
1380
  Scheduled?: ScheduledTriggerProperties;
1381
1381
  }
1382
1382
  export interface TriggerConfig {
1383
- triggerType: TriggerType | string | undefined;
1383
+ triggerType: TriggerType | undefined;
1384
1384
  triggerProperties?: TriggerProperties;
1385
1385
  }
1386
1386
  export interface CreateFlowRequest {
@@ -1406,7 +1406,7 @@ export declare const FlowStatus: {
1406
1406
  export type FlowStatus = (typeof FlowStatus)[keyof typeof FlowStatus];
1407
1407
  export interface CreateFlowResponse {
1408
1408
  flowArn?: string;
1409
- flowStatus?: FlowStatus | string;
1409
+ flowStatus?: FlowStatus;
1410
1410
  }
1411
1411
  export interface DeleteConnectorProfileRequest {
1412
1412
  connectorProfileName: string | undefined;
@@ -1419,7 +1419,7 @@ export interface DeleteFlowRequest {
1419
1419
  }
1420
1420
  export interface DeleteFlowResponse {}
1421
1421
  export interface DescribeConnectorRequest {
1422
- connectorType: ConnectorType | string | undefined;
1422
+ connectorType: ConnectorType | undefined;
1423
1423
  connectorLabel?: string;
1424
1424
  }
1425
1425
  export interface DescribeConnectorResponse {
@@ -1427,7 +1427,7 @@ export interface DescribeConnectorResponse {
1427
1427
  }
1428
1428
  export interface DescribeConnectorEntityRequest {
1429
1429
  connectorEntityName: string | undefined;
1430
- connectorType?: ConnectorType | string;
1430
+ connectorType?: ConnectorType;
1431
1431
  connectorProfileName?: string;
1432
1432
  apiVersion?: string;
1433
1433
  }
@@ -1436,7 +1436,7 @@ export interface DescribeConnectorEntityResponse {
1436
1436
  }
1437
1437
  export interface DescribeConnectorProfilesRequest {
1438
1438
  connectorProfileNames?: string[];
1439
- connectorType?: ConnectorType | string;
1439
+ connectorType?: ConnectorType;
1440
1440
  connectorLabel?: string;
1441
1441
  maxResults?: number;
1442
1442
  nextToken?: string;
@@ -1446,12 +1446,12 @@ export interface DescribeConnectorProfilesResponse {
1446
1446
  nextToken?: string;
1447
1447
  }
1448
1448
  export interface DescribeConnectorsRequest {
1449
- connectorTypes?: (ConnectorType | string)[];
1449
+ connectorTypes?: ConnectorType[];
1450
1450
  maxResults?: number;
1451
1451
  nextToken?: string;
1452
1452
  }
1453
1453
  export interface DescribeConnectorsResponse {
1454
- connectorConfigurations?: Record<string, ConnectorConfiguration>;
1454
+ connectorConfigurations?: Record<ConnectorType, ConnectorConfiguration>;
1455
1455
  connectors?: ConnectorDetail[];
1456
1456
  nextToken?: string;
1457
1457
  }
@@ -1470,15 +1470,15 @@ export type ExecutionStatus =
1470
1470
  export interface ExecutionDetails {
1471
1471
  mostRecentExecutionMessage?: string;
1472
1472
  mostRecentExecutionTime?: Date;
1473
- mostRecentExecutionStatus?: ExecutionStatus | string;
1473
+ mostRecentExecutionStatus?: ExecutionStatus;
1474
1474
  }
1475
1475
  export interface RegistrationOutput {
1476
1476
  message?: string;
1477
1477
  result?: string;
1478
- status?: ExecutionStatus | string;
1478
+ status?: ExecutionStatus;
1479
1479
  }
1480
1480
  export interface MetadataCatalogDetail {
1481
- catalogType?: CatalogType | string;
1481
+ catalogType?: CatalogType;
1482
1482
  tableName?: string;
1483
1483
  tableRegistrationOutput?: RegistrationOutput;
1484
1484
  partitionRegistrationOutput?: RegistrationOutput;
@@ -1488,7 +1488,7 @@ export interface DescribeFlowResponse {
1488
1488
  description?: string;
1489
1489
  flowName?: string;
1490
1490
  kmsArn?: string;
1491
- flowStatus?: FlowStatus | string;
1491
+ flowStatus?: FlowStatus;
1492
1492
  flowStatusMessage?: string;
1493
1493
  sourceFlowConfig?: SourceFlowConfig;
1494
1494
  destinationFlowConfigList?: DestinationFlowConfig[];
@@ -1523,7 +1523,7 @@ export interface ExecutionResult {
1523
1523
  }
1524
1524
  export interface ExecutionRecord {
1525
1525
  executionId?: string;
1526
- executionStatus?: ExecutionStatus | string;
1526
+ executionStatus?: ExecutionStatus;
1527
1527
  executionResult?: ExecutionResult;
1528
1528
  startedAt?: Date;
1529
1529
  lastUpdatedAt?: Date;
@@ -1539,12 +1539,12 @@ export interface FlowDefinition {
1539
1539
  flowArn?: string;
1540
1540
  description?: string;
1541
1541
  flowName?: string;
1542
- flowStatus?: FlowStatus | string;
1543
- sourceConnectorType?: ConnectorType | string;
1542
+ flowStatus?: FlowStatus;
1543
+ sourceConnectorType?: ConnectorType;
1544
1544
  sourceConnectorLabel?: string;
1545
- destinationConnectorType?: ConnectorType | string;
1545
+ destinationConnectorType?: ConnectorType;
1546
1546
  destinationConnectorLabel?: string;
1547
- triggerType?: TriggerType | string;
1547
+ triggerType?: TriggerType;
1548
1548
  createdAt?: Date;
1549
1549
  lastUpdatedAt?: Date;
1550
1550
  createdBy?: string;
@@ -1554,7 +1554,7 @@ export interface FlowDefinition {
1554
1554
  }
1555
1555
  export interface ListConnectorEntitiesRequest {
1556
1556
  connectorProfileName?: string;
1557
- connectorType?: ConnectorType | string;
1557
+ connectorType?: ConnectorType;
1558
1558
  entitiesPath?: string;
1559
1559
  apiVersion?: string;
1560
1560
  maxResults?: number;
@@ -1589,7 +1589,7 @@ export interface ListTagsForResourceResponse {
1589
1589
  export interface RegisterConnectorRequest {
1590
1590
  connectorLabel?: string;
1591
1591
  description?: string;
1592
- connectorProvisioningType?: ConnectorProvisioningType | string;
1592
+ connectorProvisioningType?: ConnectorProvisioningType;
1593
1593
  connectorProvisioningConfig?: ConnectorProvisioningConfig;
1594
1594
  clientToken?: string;
1595
1595
  }
@@ -1598,7 +1598,7 @@ export interface RegisterConnectorResponse {
1598
1598
  }
1599
1599
  export interface ResetConnectorMetadataCacheRequest {
1600
1600
  connectorProfileName?: string;
1601
- connectorType?: ConnectorType | string;
1601
+ connectorType?: ConnectorType;
1602
1602
  connectorEntityName?: string;
1603
1603
  entitiesPath?: string;
1604
1604
  apiVersion?: string;
@@ -1610,7 +1610,7 @@ export interface StartFlowRequest {
1610
1610
  }
1611
1611
  export interface StartFlowResponse {
1612
1612
  flowArn?: string;
1613
- flowStatus?: FlowStatus | string;
1613
+ flowStatus?: FlowStatus;
1614
1614
  executionId?: string;
1615
1615
  }
1616
1616
  export interface StopFlowRequest {
@@ -1618,7 +1618,7 @@ export interface StopFlowRequest {
1618
1618
  }
1619
1619
  export interface StopFlowResponse {
1620
1620
  flowArn?: string;
1621
- flowStatus?: FlowStatus | string;
1621
+ flowStatus?: FlowStatus;
1622
1622
  }
1623
1623
  export declare class UnsupportedOperationException extends __BaseException {
1624
1624
  readonly name: "UnsupportedOperationException";
@@ -1644,7 +1644,7 @@ export interface UntagResourceRequest {
1644
1644
  export interface UntagResourceResponse {}
1645
1645
  export interface UpdateConnectorProfileRequest {
1646
1646
  connectorProfileName: string | undefined;
1647
- connectionMode: ConnectionMode | string | undefined;
1647
+ connectionMode: ConnectionMode | undefined;
1648
1648
  connectorProfileConfig: ConnectorProfileConfig | undefined;
1649
1649
  clientToken?: string;
1650
1650
  }
@@ -1671,7 +1671,7 @@ export interface UpdateFlowRequest {
1671
1671
  clientToken?: string;
1672
1672
  }
1673
1673
  export interface UpdateFlowResponse {
1674
- flowStatus?: FlowStatus | string;
1674
+ flowStatus?: FlowStatus;
1675
1675
  }
1676
1676
  export declare const AmplitudeConnectorProfileCredentialsFilterSensitiveLog: (
1677
1677
  obj: AmplitudeConnectorProfileCredentials
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appflow",
3
3
  "description": "AWS SDK for JavaScript Appflow Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0",