@aws-sdk/client-appflow 3.99.0 → 3.105.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.
@@ -728,9 +728,7 @@ export interface ConnectorEntityField {
728
728
 
729
729
  destinationProperties?: DestinationFieldProperties;
730
730
 
731
- customProperties?: {
732
- [key: string]: string;
733
- };
731
+ customProperties?: Record<string, string>;
734
732
  }
735
733
  export declare namespace ConnectorEntityField {
736
734
 
@@ -1049,9 +1047,7 @@ export interface OAuth2Properties {
1049
1047
 
1050
1048
  oAuth2GrantType: OAuth2GrantType | string | undefined;
1051
1049
 
1052
- tokenUrlCustomProperties?: {
1053
- [key: string]: string;
1054
- };
1050
+ tokenUrlCustomProperties?: Record<string, string>;
1055
1051
  }
1056
1052
  export declare namespace OAuth2Properties {
1057
1053
 
@@ -1060,9 +1056,7 @@ export declare namespace OAuth2Properties {
1060
1056
 
1061
1057
  export interface CustomConnectorProfileProperties {
1062
1058
 
1063
- profileProperties?: {
1064
- [key: string]: string;
1065
- };
1059
+ profileProperties?: Record<string, string>;
1066
1060
 
1067
1061
  oAuth2Properties?: OAuth2Properties;
1068
1062
  }
@@ -1351,9 +1345,7 @@ export interface CustomAuthCredentials {
1351
1345
 
1352
1346
  customAuthenticationType: string | undefined;
1353
1347
 
1354
- credentialsMap?: {
1355
- [key: string]: string;
1356
- };
1348
+ credentialsMap?: Record<string, string>;
1357
1349
  }
1358
1350
  export declare namespace CustomAuthCredentials {
1359
1351
 
@@ -1740,9 +1732,7 @@ export interface CustomConnectorDestinationProperties {
1740
1732
 
1741
1733
  idFieldNames?: string[];
1742
1734
 
1743
- customProperties?: {
1744
- [key: string]: string;
1745
- };
1735
+ customProperties?: Record<string, string>;
1746
1736
  }
1747
1737
  export declare namespace CustomConnectorDestinationProperties {
1748
1738
 
@@ -1850,6 +1840,8 @@ export interface S3OutputFormatConfig {
1850
1840
  prefixConfig?: PrefixConfig;
1851
1841
 
1852
1842
  aggregationConfig?: AggregationConfig;
1843
+
1844
+ preserveSourceDataTyping?: boolean;
1853
1845
  }
1854
1846
  export declare namespace S3OutputFormatConfig {
1855
1847
 
@@ -2029,9 +2021,7 @@ export interface CustomConnectorSourceProperties {
2029
2021
 
2030
2022
  entityName: string | undefined;
2031
2023
 
2032
- customProperties?: {
2033
- [key: string]: string;
2034
- };
2024
+ customProperties?: Record<string, string>;
2035
2025
  }
2036
2026
  export declare namespace CustomConnectorSourceProperties {
2037
2027
 
@@ -2287,9 +2277,7 @@ export interface Task {
2287
2277
 
2288
2278
  taskType: TaskType | string | undefined;
2289
2279
 
2290
- taskProperties?: {
2291
- [key: string]: string;
2292
- };
2280
+ taskProperties?: Record<string, string>;
2293
2281
  }
2294
2282
  export declare namespace Task {
2295
2283
 
@@ -2315,6 +2303,8 @@ export interface ScheduledTriggerProperties {
2315
2303
  scheduleOffset?: number;
2316
2304
 
2317
2305
  firstExecutionFrom?: Date;
2306
+
2307
+ flowErrorDeactivationThreshold?: number;
2318
2308
  }
2319
2309
  export declare namespace ScheduledTriggerProperties {
2320
2310
 
@@ -2356,9 +2346,7 @@ export interface CreateFlowRequest {
2356
2346
 
2357
2347
  tasks: Task[] | undefined;
2358
2348
 
2359
- tags?: {
2360
- [key: string]: string;
2361
- };
2349
+ tags?: Record<string, string>;
2362
2350
  }
2363
2351
  export declare namespace CreateFlowRequest {
2364
2352
 
@@ -2501,9 +2489,7 @@ export declare namespace DescribeConnectorsRequest {
2501
2489
  }
2502
2490
  export interface DescribeConnectorsResponse {
2503
2491
 
2504
- connectorConfigurations?: {
2505
- [key: string]: ConnectorConfiguration;
2506
- };
2492
+ connectorConfigurations?: Record<string, ConnectorConfiguration>;
2507
2493
 
2508
2494
  connectors?: ConnectorDetail[];
2509
2495
 
@@ -2571,9 +2557,7 @@ export interface DescribeFlowResponse {
2571
2557
 
2572
2558
  lastUpdatedBy?: string;
2573
2559
 
2574
- tags?: {
2575
- [key: string]: string;
2576
- };
2560
+ tags?: Record<string, string>;
2577
2561
  }
2578
2562
  export declare namespace DescribeFlowResponse {
2579
2563
 
@@ -2677,9 +2661,7 @@ export interface FlowDefinition {
2677
2661
 
2678
2662
  lastUpdatedBy?: string;
2679
2663
 
2680
- tags?: {
2681
- [key: string]: string;
2682
- };
2664
+ tags?: Record<string, string>;
2683
2665
 
2684
2666
  lastRunExecutionDetails?: ExecutionDetails;
2685
2667
  }
@@ -2703,9 +2685,7 @@ export declare namespace ListConnectorEntitiesRequest {
2703
2685
  }
2704
2686
  export interface ListConnectorEntitiesResponse {
2705
2687
 
2706
- connectorEntityMap: {
2707
- [key: string]: ConnectorEntity[];
2708
- } | undefined;
2688
+ connectorEntityMap: Record<string, ConnectorEntity[]> | undefined;
2709
2689
  }
2710
2690
  export declare namespace ListConnectorEntitiesResponse {
2711
2691
 
@@ -2761,9 +2741,7 @@ export declare namespace ListTagsForResourceRequest {
2761
2741
  }
2762
2742
  export interface ListTagsForResourceResponse {
2763
2743
 
2764
- tags?: {
2765
- [key: string]: string;
2766
- };
2744
+ tags?: Record<string, string>;
2767
2745
  }
2768
2746
  export declare namespace ListTagsForResourceResponse {
2769
2747
 
@@ -2847,9 +2825,7 @@ export interface TagResourceRequest {
2847
2825
 
2848
2826
  resourceArn: string | undefined;
2849
2827
 
2850
- tags: {
2851
- [key: string]: string;
2852
- } | undefined;
2828
+ tags: Record<string, string> | undefined;
2853
2829
  }
2854
2830
  export declare namespace TagResourceRequest {
2855
2831
 
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.99.0",
4
+ "version": "3.105.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",
@@ -18,15 +18,16 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.99.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.99.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",