@aws-sdk/client-customer-profiles 3.100.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-customer-profiles
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class CustomerProfilesClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var CustomerProfilesClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -527,9 +527,7 @@ export interface Task {
527
527
  * <p>A map used to store task-related information. The service looks for particular
528
528
  * information based on the TaskType.</p>
529
529
  */
530
- TaskProperties?: {
531
- [key: string]: string;
532
- };
530
+ TaskProperties?: Record<string, string>;
533
531
  /**
534
532
  * <p>Specifies the particular task implementation that Amazon AppFlow performs.</p>
535
533
  */
@@ -1000,9 +998,7 @@ export interface CreateDomainRequest {
1000
998
  /**
1001
999
  * <p>The tags used to organize, track, or control access for this resource.</p>
1002
1000
  */
1003
- Tags?: {
1004
- [key: string]: string;
1005
- };
1001
+ Tags?: Record<string, string>;
1006
1002
  }
1007
1003
  export declare namespace CreateDomainRequest {
1008
1004
  /**
@@ -1079,9 +1075,7 @@ export interface CreateDomainResponse {
1079
1075
  /**
1080
1076
  * <p>The tags used to organize, track, or control access for this resource.</p>
1081
1077
  */
1082
- Tags?: {
1083
- [key: string]: string;
1084
- };
1078
+ Tags?: Record<string, string>;
1085
1079
  }
1086
1080
  export declare namespace CreateDomainResponse {
1087
1081
  /**
@@ -1131,9 +1125,7 @@ export interface CreateIntegrationWorkflowRequest {
1131
1125
  /**
1132
1126
  * <p>The tags used to organize, track, or control access for this resource.</p>
1133
1127
  */
1134
- Tags?: {
1135
- [key: string]: string;
1136
- };
1128
+ Tags?: Record<string, string>;
1137
1129
  }
1138
1130
  export declare namespace CreateIntegrationWorkflowRequest {
1139
1131
  /**
@@ -1258,9 +1250,7 @@ export interface CreateProfileRequest {
1258
1250
  /**
1259
1251
  * <p>A key value pair of attributes of a customer profile.</p>
1260
1252
  */
1261
- Attributes?: {
1262
- [key: string]: string;
1263
- };
1253
+ Attributes?: Record<string, string>;
1264
1254
  }
1265
1255
  export declare namespace CreateProfileRequest {
1266
1256
  /**
@@ -1615,9 +1605,7 @@ export interface GetDomainResponse {
1615
1605
  /**
1616
1606
  * <p>The tags used to organize, track, or control access for this resource.</p>
1617
1607
  */
1618
- Tags?: {
1619
- [key: string]: string;
1620
- };
1608
+ Tags?: Record<string, string>;
1621
1609
  }
1622
1610
  export declare namespace GetDomainResponse {
1623
1611
  /**
@@ -1834,17 +1822,13 @@ export interface GetIntegrationResponse {
1834
1822
  /**
1835
1823
  * <p>The tags used to organize, track, or control access for this resource.</p>
1836
1824
  */
1837
- Tags?: {
1838
- [key: string]: string;
1839
- };
1825
+ Tags?: Record<string, string>;
1840
1826
  /**
1841
1827
  * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
1842
1828
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
1843
1829
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
1844
1830
  */
1845
- ObjectTypeNames?: {
1846
- [key: string]: string;
1847
- };
1831
+ ObjectTypeNames?: Record<string, string>;
1848
1832
  /**
1849
1833
  * <p>Unique identifier for the workflow.</p>
1850
1834
  */
@@ -2048,15 +2032,11 @@ export interface GetProfileObjectTypeResponse {
2048
2032
  /**
2049
2033
  * <p>A map of the name and ObjectType field.</p>
2050
2034
  */
2051
- Fields?: {
2052
- [key: string]: ObjectTypeField;
2053
- };
2035
+ Fields?: Record<string, ObjectTypeField>;
2054
2036
  /**
2055
2037
  * <p>A list of unique keys that can be used to map data to the profile.</p>
2056
2038
  */
2057
- Keys?: {
2058
- [key: string]: ObjectTypeKey[];
2059
- };
2039
+ Keys?: Record<string, ObjectTypeKey[]>;
2060
2040
  /**
2061
2041
  * <p>The timestamp of when the domain was created.</p>
2062
2042
  */
@@ -2068,9 +2048,7 @@ export interface GetProfileObjectTypeResponse {
2068
2048
  /**
2069
2049
  * <p>The tags used to organize, track, or control access for this resource.</p>
2070
2050
  */
2071
- Tags?: {
2072
- [key: string]: string;
2073
- };
2051
+ Tags?: Record<string, string>;
2074
2052
  }
2075
2053
  export declare namespace GetProfileObjectTypeResponse {
2076
2054
  /**
@@ -2119,15 +2097,11 @@ export interface GetProfileObjectTypeTemplateResponse {
2119
2097
  /**
2120
2098
  * <p>A map of the name and ObjectType field.</p>
2121
2099
  */
2122
- Fields?: {
2123
- [key: string]: ObjectTypeField;
2124
- };
2100
+ Fields?: Record<string, ObjectTypeField>;
2125
2101
  /**
2126
2102
  * <p>A list of unique keys that can be used to map data to the profile.</p>
2127
2103
  */
2128
- Keys?: {
2129
- [key: string]: ObjectTypeKey[];
2130
- };
2104
+ Keys?: Record<string, ObjectTypeKey[]>;
2131
2105
  }
2132
2106
  export declare namespace GetProfileObjectTypeTemplateResponse {
2133
2107
  /**
@@ -2336,17 +2310,13 @@ export interface ListIntegrationItem {
2336
2310
  /**
2337
2311
  * <p>The tags used to organize, track, or control access for this resource.</p>
2338
2312
  */
2339
- Tags?: {
2340
- [key: string]: string;
2341
- };
2313
+ Tags?: Record<string, string>;
2342
2314
  /**
2343
2315
  * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
2344
2316
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
2345
2317
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
2346
2318
  */
2347
- ObjectTypeNames?: {
2348
- [key: string]: string;
2349
- };
2319
+ ObjectTypeNames?: Record<string, string>;
2350
2320
  /**
2351
2321
  * <p>Unique identifier for the workflow.</p>
2352
2322
  */
@@ -2409,9 +2379,7 @@ export interface ListDomainItem {
2409
2379
  /**
2410
2380
  * <p>The tags used to organize, track, or control access for this resource.</p>
2411
2381
  */
2412
- Tags?: {
2413
- [key: string]: string;
2414
- };
2382
+ Tags?: Record<string, string>;
2415
2383
  }
2416
2384
  export declare namespace ListDomainItem {
2417
2385
  /**
@@ -2730,9 +2698,7 @@ export interface ListProfileObjectTypeItem {
2730
2698
  /**
2731
2699
  * <p>The tags used to organize, track, or control access for this resource.</p>
2732
2700
  */
2733
- Tags?: {
2734
- [key: string]: string;
2735
- };
2701
+ Tags?: Record<string, string>;
2736
2702
  }
2737
2703
  export declare namespace ListProfileObjectTypeItem {
2738
2704
  /**
@@ -2827,9 +2793,7 @@ export interface ListTagsForResourceResponse {
2827
2793
  /**
2828
2794
  * <p>The tags used to organize, track, or control access for this resource.</p>
2829
2795
  */
2830
- tags?: {
2831
- [key: string]: string;
2832
- };
2796
+ tags?: Record<string, string>;
2833
2797
  }
2834
2798
  export declare namespace ListTagsForResourceResponse {
2835
2799
  /**
@@ -3012,9 +2976,7 @@ export interface FieldSourceProfileIds {
3012
2976
  /**
3013
2977
  * <p>A unique identifier for the attributes field to be merged.</p>
3014
2978
  */
3015
- Attributes?: {
3016
- [key: string]: string;
3017
- };
2979
+ Attributes?: Record<string, string>;
3018
2980
  }
3019
2981
  export declare namespace FieldSourceProfileIds {
3020
2982
  /**
@@ -3076,9 +3038,7 @@ export interface PutIntegrationRequest {
3076
3038
  /**
3077
3039
  * <p>The tags used to organize, track, or control access for this resource.</p>
3078
3040
  */
3079
- Tags?: {
3080
- [key: string]: string;
3081
- };
3041
+ Tags?: Record<string, string>;
3082
3042
  /**
3083
3043
  * <p>The configuration that controls how Customer Profiles retrieves data from the
3084
3044
  * source.</p>
@@ -3089,9 +3049,7 @@ export interface PutIntegrationRequest {
3089
3049
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
3090
3050
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
3091
3051
  */
3092
- ObjectTypeNames?: {
3093
- [key: string]: string;
3094
- };
3052
+ ObjectTypeNames?: Record<string, string>;
3095
3053
  }
3096
3054
  export declare namespace PutIntegrationRequest {
3097
3055
  /**
@@ -3123,17 +3081,13 @@ export interface PutIntegrationResponse {
3123
3081
  /**
3124
3082
  * <p>The tags used to organize, track, or control access for this resource.</p>
3125
3083
  */
3126
- Tags?: {
3127
- [key: string]: string;
3128
- };
3084
+ Tags?: Record<string, string>;
3129
3085
  /**
3130
3086
  * <p>A map in which each key is an event type from an external application such as Segment or Shopify, and each value is an <code>ObjectTypeName</code> (template) used to ingest the event.
3131
3087
  * It supports the following event types: <code>SegmentIdentify</code>, <code>ShopifyCreateCustomers</code>, <code>ShopifyUpdateCustomers</code>, <code>ShopifyCreateDraftOrders</code>,
3132
3088
  * <code>ShopifyUpdateDraftOrders</code>, <code>ShopifyCreateOrders</code>, and <code>ShopifyUpdatedOrders</code>.</p>
3133
3089
  */
3134
- ObjectTypeNames?: {
3135
- [key: string]: string;
3136
- };
3090
+ ObjectTypeNames?: Record<string, string>;
3137
3091
  /**
3138
3092
  * <p>Unique identifier for the workflow.</p>
3139
3093
  */
@@ -3219,21 +3173,15 @@ export interface PutProfileObjectTypeRequest {
3219
3173
  /**
3220
3174
  * <p>A map of the name and ObjectType field.</p>
3221
3175
  */
3222
- Fields?: {
3223
- [key: string]: ObjectTypeField;
3224
- };
3176
+ Fields?: Record<string, ObjectTypeField>;
3225
3177
  /**
3226
3178
  * <p>A list of unique keys that can be used to map data to the profile.</p>
3227
3179
  */
3228
- Keys?: {
3229
- [key: string]: ObjectTypeKey[];
3230
- };
3180
+ Keys?: Record<string, ObjectTypeKey[]>;
3231
3181
  /**
3232
3182
  * <p>The tags used to organize, track, or control access for this resource.</p>
3233
3183
  */
3234
- Tags?: {
3235
- [key: string]: string;
3236
- };
3184
+ Tags?: Record<string, string>;
3237
3185
  }
3238
3186
  export declare namespace PutProfileObjectTypeRequest {
3239
3187
  /**
@@ -3280,15 +3228,11 @@ export interface PutProfileObjectTypeResponse {
3280
3228
  /**
3281
3229
  * <p>A map of the name and ObjectType field.</p>
3282
3230
  */
3283
- Fields?: {
3284
- [key: string]: ObjectTypeField;
3285
- };
3231
+ Fields?: Record<string, ObjectTypeField>;
3286
3232
  /**
3287
3233
  * <p>A list of unique keys that can be used to map data to the profile.</p>
3288
3234
  */
3289
- Keys?: {
3290
- [key: string]: ObjectTypeKey[];
3291
- };
3235
+ Keys?: Record<string, ObjectTypeKey[]>;
3292
3236
  /**
3293
3237
  * <p>The timestamp of when the domain was created.</p>
3294
3238
  */
@@ -3300,9 +3244,7 @@ export interface PutProfileObjectTypeResponse {
3300
3244
  /**
3301
3245
  * <p>The tags used to organize, track, or control access for this resource.</p>
3302
3246
  */
3303
- Tags?: {
3304
- [key: string]: string;
3305
- };
3247
+ Tags?: Record<string, string>;
3306
3248
  }
3307
3249
  export declare namespace PutProfileObjectTypeResponse {
3308
3250
  /**
@@ -3437,9 +3379,7 @@ export interface Profile {
3437
3379
  /**
3438
3380
  * <p>A key value pair of attributes of a customer profile.</p>
3439
3381
  */
3440
- Attributes?: {
3441
- [key: string]: string;
3442
- };
3382
+ Attributes?: Record<string, string>;
3443
3383
  }
3444
3384
  export declare namespace Profile {
3445
3385
  /**
@@ -3471,9 +3411,7 @@ export interface TagResourceRequest {
3471
3411
  /**
3472
3412
  * <p>The tags used to organize, track, or control access for this resource.</p>
3473
3413
  */
3474
- tags: {
3475
- [key: string]: string;
3476
- } | undefined;
3414
+ tags: Record<string, string> | undefined;
3477
3415
  }
3478
3416
  export declare namespace TagResourceRequest {
3479
3417
  /**
@@ -3550,9 +3488,7 @@ export interface UpdateDomainRequest {
3550
3488
  /**
3551
3489
  * <p>The tags used to organize, track, or control access for this resource.</p>
3552
3490
  */
3553
- Tags?: {
3554
- [key: string]: string;
3555
- };
3491
+ Tags?: Record<string, string>;
3556
3492
  }
3557
3493
  export declare namespace UpdateDomainRequest {
3558
3494
  /**
@@ -3601,9 +3537,7 @@ export interface UpdateDomainResponse {
3601
3537
  /**
3602
3538
  * <p>The tags used to organize, track, or control access for this resource.</p>
3603
3539
  */
3604
- Tags?: {
3605
- [key: string]: string;
3606
- };
3540
+ Tags?: Record<string, string>;
3607
3541
  }
3608
3542
  export declare namespace UpdateDomainResponse {
3609
3543
  /**
@@ -3757,9 +3691,7 @@ export interface UpdateProfileRequest {
3757
3691
  /**
3758
3692
  * <p>A key value pair of attributes of a customer profile.</p>
3759
3693
  */
3760
- Attributes?: {
3761
- [key: string]: string;
3762
- };
3694
+ Attributes?: Record<string, string>;
3763
3695
  }
3764
3696
  export declare namespace UpdateProfileRequest {
3765
3697
  /**
@@ -354,9 +354,7 @@ export interface Task {
354
354
 
355
355
  SourceFields: string[] | undefined;
356
356
 
357
- TaskProperties?: {
358
- [key: string]: string;
359
- };
357
+ TaskProperties?: Record<string, string>;
360
358
 
361
359
  TaskType: TaskType | string | undefined;
362
360
  }
@@ -606,9 +604,7 @@ export interface CreateDomainRequest {
606
604
 
607
605
  Matching?: MatchingRequest;
608
606
 
609
- Tags?: {
610
- [key: string]: string;
611
- };
607
+ Tags?: Record<string, string>;
612
608
  }
613
609
  export declare namespace CreateDomainRequest {
614
610
 
@@ -645,9 +641,7 @@ export interface CreateDomainResponse {
645
641
 
646
642
  LastUpdatedAt: Date | undefined;
647
643
 
648
- Tags?: {
649
- [key: string]: string;
650
- };
644
+ Tags?: Record<string, string>;
651
645
  }
652
646
  export declare namespace CreateDomainResponse {
653
647
 
@@ -677,9 +671,7 @@ export interface CreateIntegrationWorkflowRequest {
677
671
 
678
672
  RoleArn: string | undefined;
679
673
 
680
- Tags?: {
681
- [key: string]: string;
682
- };
674
+ Tags?: Record<string, string>;
683
675
  }
684
676
  export declare namespace CreateIntegrationWorkflowRequest {
685
677
 
@@ -749,9 +741,7 @@ export interface CreateProfileRequest {
749
741
 
750
742
  BillingAddress?: Address;
751
743
 
752
- Attributes?: {
753
- [key: string]: string;
754
- };
744
+ Attributes?: Record<string, string>;
755
745
  }
756
746
  export declare namespace CreateProfileRequest {
757
747
 
@@ -962,9 +952,7 @@ export interface GetDomainResponse {
962
952
 
963
953
  LastUpdatedAt: Date | undefined;
964
954
 
965
- Tags?: {
966
- [key: string]: string;
967
- };
955
+ Tags?: Record<string, string>;
968
956
  }
969
957
  export declare namespace GetDomainResponse {
970
958
 
@@ -1072,13 +1060,9 @@ export interface GetIntegrationResponse {
1072
1060
 
1073
1061
  LastUpdatedAt: Date | undefined;
1074
1062
 
1075
- Tags?: {
1076
- [key: string]: string;
1077
- };
1063
+ Tags?: Record<string, string>;
1078
1064
 
1079
- ObjectTypeNames?: {
1080
- [key: string]: string;
1081
- };
1065
+ ObjectTypeNames?: Record<string, string>;
1082
1066
 
1083
1067
  WorkflowId?: string;
1084
1068
  }
@@ -1192,21 +1176,15 @@ export interface GetProfileObjectTypeResponse {
1192
1176
 
1193
1177
  SourceLastUpdatedTimestampFormat?: string;
1194
1178
 
1195
- Fields?: {
1196
- [key: string]: ObjectTypeField;
1197
- };
1179
+ Fields?: Record<string, ObjectTypeField>;
1198
1180
 
1199
- Keys?: {
1200
- [key: string]: ObjectTypeKey[];
1201
- };
1181
+ Keys?: Record<string, ObjectTypeKey[]>;
1202
1182
 
1203
1183
  CreatedAt?: Date;
1204
1184
 
1205
1185
  LastUpdatedAt?: Date;
1206
1186
 
1207
- Tags?: {
1208
- [key: string]: string;
1209
- };
1187
+ Tags?: Record<string, string>;
1210
1188
  }
1211
1189
  export declare namespace GetProfileObjectTypeResponse {
1212
1190
 
@@ -1232,13 +1210,9 @@ export interface GetProfileObjectTypeTemplateResponse {
1232
1210
 
1233
1211
  SourceLastUpdatedTimestampFormat?: string;
1234
1212
 
1235
- Fields?: {
1236
- [key: string]: ObjectTypeField;
1237
- };
1213
+ Fields?: Record<string, ObjectTypeField>;
1238
1214
 
1239
- Keys?: {
1240
- [key: string]: ObjectTypeKey[];
1241
- };
1215
+ Keys?: Record<string, ObjectTypeKey[]>;
1242
1216
  }
1243
1217
  export declare namespace GetProfileObjectTypeTemplateResponse {
1244
1218
 
@@ -1358,13 +1332,9 @@ export interface ListIntegrationItem {
1358
1332
 
1359
1333
  LastUpdatedAt: Date | undefined;
1360
1334
 
1361
- Tags?: {
1362
- [key: string]: string;
1363
- };
1335
+ Tags?: Record<string, string>;
1364
1336
 
1365
- ObjectTypeNames?: {
1366
- [key: string]: string;
1367
- };
1337
+ ObjectTypeNames?: Record<string, string>;
1368
1338
 
1369
1339
  WorkflowId?: string;
1370
1340
  }
@@ -1401,9 +1371,7 @@ export interface ListDomainItem {
1401
1371
 
1402
1372
  LastUpdatedAt: Date | undefined;
1403
1373
 
1404
- Tags?: {
1405
- [key: string]: string;
1406
- };
1374
+ Tags?: Record<string, string>;
1407
1375
  }
1408
1376
  export declare namespace ListDomainItem {
1409
1377
 
@@ -1563,9 +1531,7 @@ export interface ListProfileObjectTypeItem {
1563
1531
 
1564
1532
  LastUpdatedAt?: Date;
1565
1533
 
1566
- Tags?: {
1567
- [key: string]: string;
1568
- };
1534
+ Tags?: Record<string, string>;
1569
1535
  }
1570
1536
  export declare namespace ListProfileObjectTypeItem {
1571
1537
 
@@ -1624,9 +1590,7 @@ export declare namespace ListTagsForResourceRequest {
1624
1590
  }
1625
1591
  export interface ListTagsForResourceResponse {
1626
1592
 
1627
- tags?: {
1628
- [key: string]: string;
1629
- };
1593
+ tags?: Record<string, string>;
1630
1594
  }
1631
1595
  export declare namespace ListTagsForResourceResponse {
1632
1596
 
@@ -1724,9 +1688,7 @@ export interface FieldSourceProfileIds {
1724
1688
 
1725
1689
  BillingAddress?: string;
1726
1690
 
1727
- Attributes?: {
1728
- [key: string]: string;
1729
- };
1691
+ Attributes?: Record<string, string>;
1730
1692
  }
1731
1693
  export declare namespace FieldSourceProfileIds {
1732
1694
 
@@ -1762,15 +1724,11 @@ export interface PutIntegrationRequest {
1762
1724
 
1763
1725
  ObjectTypeName?: string;
1764
1726
 
1765
- Tags?: {
1766
- [key: string]: string;
1767
- };
1727
+ Tags?: Record<string, string>;
1768
1728
 
1769
1729
  FlowDefinition?: FlowDefinition;
1770
1730
 
1771
- ObjectTypeNames?: {
1772
- [key: string]: string;
1773
- };
1731
+ ObjectTypeNames?: Record<string, string>;
1774
1732
  }
1775
1733
  export declare namespace PutIntegrationRequest {
1776
1734
 
@@ -1788,13 +1746,9 @@ export interface PutIntegrationResponse {
1788
1746
 
1789
1747
  LastUpdatedAt: Date | undefined;
1790
1748
 
1791
- Tags?: {
1792
- [key: string]: string;
1793
- };
1749
+ Tags?: Record<string, string>;
1794
1750
 
1795
- ObjectTypeNames?: {
1796
- [key: string]: string;
1797
- };
1751
+ ObjectTypeNames?: Record<string, string>;
1798
1752
 
1799
1753
  WorkflowId?: string;
1800
1754
  }
@@ -1840,17 +1794,11 @@ export interface PutProfileObjectTypeRequest {
1840
1794
 
1841
1795
  SourceLastUpdatedTimestampFormat?: string;
1842
1796
 
1843
- Fields?: {
1844
- [key: string]: ObjectTypeField;
1845
- };
1797
+ Fields?: Record<string, ObjectTypeField>;
1846
1798
 
1847
- Keys?: {
1848
- [key: string]: ObjectTypeKey[];
1849
- };
1799
+ Keys?: Record<string, ObjectTypeKey[]>;
1850
1800
 
1851
- Tags?: {
1852
- [key: string]: string;
1853
- };
1801
+ Tags?: Record<string, string>;
1854
1802
  }
1855
1803
  export declare namespace PutProfileObjectTypeRequest {
1856
1804
 
@@ -1872,21 +1820,15 @@ export interface PutProfileObjectTypeResponse {
1872
1820
 
1873
1821
  SourceLastUpdatedTimestampFormat?: string;
1874
1822
 
1875
- Fields?: {
1876
- [key: string]: ObjectTypeField;
1877
- };
1823
+ Fields?: Record<string, ObjectTypeField>;
1878
1824
 
1879
- Keys?: {
1880
- [key: string]: ObjectTypeKey[];
1881
- };
1825
+ Keys?: Record<string, ObjectTypeKey[]>;
1882
1826
 
1883
1827
  CreatedAt?: Date;
1884
1828
 
1885
1829
  LastUpdatedAt?: Date;
1886
1830
 
1887
- Tags?: {
1888
- [key: string]: string;
1889
- };
1831
+ Tags?: Record<string, string>;
1890
1832
  }
1891
1833
  export declare namespace PutProfileObjectTypeResponse {
1892
1834
 
@@ -1953,9 +1895,7 @@ export interface Profile {
1953
1895
 
1954
1896
  BillingAddress?: Address;
1955
1897
 
1956
- Attributes?: {
1957
- [key: string]: string;
1958
- };
1898
+ Attributes?: Record<string, string>;
1959
1899
  }
1960
1900
  export declare namespace Profile {
1961
1901
 
@@ -1975,9 +1915,7 @@ export interface TagResourceRequest {
1975
1915
 
1976
1916
  resourceArn: string | undefined;
1977
1917
 
1978
- tags: {
1979
- [key: string]: string;
1980
- } | undefined;
1918
+ tags: Record<string, string> | undefined;
1981
1919
  }
1982
1920
  export declare namespace TagResourceRequest {
1983
1921
 
@@ -2017,9 +1955,7 @@ export interface UpdateDomainRequest {
2017
1955
 
2018
1956
  Matching?: MatchingRequest;
2019
1957
 
2020
- Tags?: {
2021
- [key: string]: string;
2022
- };
1958
+ Tags?: Record<string, string>;
2023
1959
  }
2024
1960
  export declare namespace UpdateDomainRequest {
2025
1961
 
@@ -2041,9 +1977,7 @@ export interface UpdateDomainResponse {
2041
1977
 
2042
1978
  LastUpdatedAt: Date | undefined;
2043
1979
 
2044
- Tags?: {
2045
- [key: string]: string;
2046
- };
1980
+ Tags?: Record<string, string>;
2047
1981
  }
2048
1982
  export declare namespace UpdateDomainResponse {
2049
1983
 
@@ -2122,9 +2056,7 @@ export interface UpdateProfileRequest {
2122
2056
 
2123
2057
  BillingAddress?: UpdateAddress;
2124
2058
 
2125
- Attributes?: {
2126
- [key: string]: string;
2127
- };
2059
+ Attributes?: Record<string, string>;
2128
2060
  }
2129
2061
  export declare namespace UpdateProfileRequest {
2130
2062
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-customer-profiles",
3
3
  "description": "AWS SDK for JavaScript Customer Profiles Client for Node.js, Browser and React Native",
4
- "version": "3.100.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.100.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.100.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",