@aws-sdk/client-vpc-lattice 3.925.0 → 3.927.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.
Files changed (44) hide show
  1. package/README.md +32 -0
  2. package/dist-cjs/index.js +250 -0
  3. package/dist-es/VPCLattice.js +8 -0
  4. package/dist-es/commands/DeleteDomainVerificationCommand.js +22 -0
  5. package/dist-es/commands/GetDomainVerificationCommand.js +22 -0
  6. package/dist-es/commands/ListDomainVerificationsCommand.js +22 -0
  7. package/dist-es/commands/StartDomainVerificationCommand.js +22 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/models/models_0.js +11 -0
  10. package/dist-es/pagination/ListDomainVerificationsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_restJson1.js +158 -0
  13. package/dist-types/VPCLattice.d.ts +29 -0
  14. package/dist-types/VPCLatticeClient.d.ts +6 -2
  15. package/dist-types/commands/CreateResourceConfigurationCommand.d.ts +7 -0
  16. package/dist-types/commands/CreateServiceNetworkResourceAssociationCommand.d.ts +2 -0
  17. package/dist-types/commands/CreateServiceNetworkVpcAssociationCommand.d.ts +14 -0
  18. package/dist-types/commands/DeleteDomainVerificationCommand.d.ts +87 -0
  19. package/dist-types/commands/GetDomainVerificationCommand.d.ts +101 -0
  20. package/dist-types/commands/GetResourceConfigurationCommand.d.ts +4 -0
  21. package/dist-types/commands/GetServiceNetworkResourceAssociationCommand.d.ts +2 -0
  22. package/dist-types/commands/GetServiceNetworkVpcAssociationCommand.d.ts +7 -0
  23. package/dist-types/commands/ListDomainVerificationsCommand.d.ts +107 -0
  24. package/dist-types/commands/ListResourceConfigurationsCommand.d.ts +4 -0
  25. package/dist-types/commands/ListServiceNetworkResourceAssociationsCommand.d.ts +1 -0
  26. package/dist-types/commands/ListServiceNetworkVpcAssociationsCommand.d.ts +7 -0
  27. package/dist-types/commands/StartDomainVerificationCommand.d.ts +103 -0
  28. package/dist-types/commands/index.d.ts +4 -0
  29. package/dist-types/models/models_0.d.ts +395 -0
  30. package/dist-types/pagination/ListDomainVerificationsPaginator.d.ts +7 -0
  31. package/dist-types/pagination/index.d.ts +1 -0
  32. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  33. package/dist-types/ts3.4/VPCLattice.d.ts +69 -0
  34. package/dist-types/ts3.4/VPCLatticeClient.d.ts +24 -0
  35. package/dist-types/ts3.4/commands/DeleteDomainVerificationCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/GetDomainVerificationCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/ListDomainVerificationsCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/StartDomainVerificationCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +98 -0
  41. package/dist-types/ts3.4/pagination/ListDomainVerificationsPaginator.d.ts +11 -0
  42. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  44. package/package.json +5 -5
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_GetDomainVerificationCommand, se_GetDomainVerificationCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class GetDomainVerificationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("MercuryControlPlane", "GetDomainVerification", {})
17
+ .n("VPCLatticeClient", "GetDomainVerificationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_GetDomainVerificationCommand)
20
+ .de(de_GetDomainVerificationCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_ListDomainVerificationsCommand, se_ListDomainVerificationsCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class ListDomainVerificationsCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("MercuryControlPlane", "ListDomainVerifications", {})
17
+ .n("VPCLatticeClient", "ListDomainVerificationsCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_ListDomainVerificationsCommand)
20
+ .de(de_ListDomainVerificationsCommand)
21
+ .build() {
22
+ }
@@ -0,0 +1,22 @@
1
+ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
+ import { getSerdePlugin } from "@smithy/middleware-serde";
3
+ import { Command as $Command } from "@smithy/smithy-client";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { de_StartDomainVerificationCommand, se_StartDomainVerificationCommand } from "../protocols/Aws_restJson1";
6
+ export { $Command };
7
+ export class StartDomainVerificationCommand extends $Command
8
+ .classBuilder()
9
+ .ep(commonParams)
10
+ .m(function (Command, cs, config, o) {
11
+ return [
12
+ getSerdePlugin(config, this.serialize, this.deserialize),
13
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
+ ];
15
+ })
16
+ .s("MercuryControlPlane", "StartDomainVerification", {})
17
+ .n("VPCLatticeClient", "StartDomainVerificationCommand")
18
+ .f(void 0, void 0)
19
+ .ser(se_StartDomainVerificationCommand)
20
+ .de(de_StartDomainVerificationCommand)
21
+ .build() {
22
+ }
@@ -12,6 +12,7 @@ export * from "./CreateServiceNetworkVpcAssociationCommand";
12
12
  export * from "./CreateTargetGroupCommand";
13
13
  export * from "./DeleteAccessLogSubscriptionCommand";
14
14
  export * from "./DeleteAuthPolicyCommand";
15
+ export * from "./DeleteDomainVerificationCommand";
15
16
  export * from "./DeleteListenerCommand";
16
17
  export * from "./DeleteResourceConfigurationCommand";
17
18
  export * from "./DeleteResourceEndpointAssociationCommand";
@@ -27,6 +28,7 @@ export * from "./DeleteTargetGroupCommand";
27
28
  export * from "./DeregisterTargetsCommand";
28
29
  export * from "./GetAccessLogSubscriptionCommand";
29
30
  export * from "./GetAuthPolicyCommand";
31
+ export * from "./GetDomainVerificationCommand";
30
32
  export * from "./GetListenerCommand";
31
33
  export * from "./GetResourceConfigurationCommand";
32
34
  export * from "./GetResourceGatewayCommand";
@@ -39,6 +41,7 @@ export * from "./GetServiceNetworkServiceAssociationCommand";
39
41
  export * from "./GetServiceNetworkVpcAssociationCommand";
40
42
  export * from "./GetTargetGroupCommand";
41
43
  export * from "./ListAccessLogSubscriptionsCommand";
44
+ export * from "./ListDomainVerificationsCommand";
42
45
  export * from "./ListListenersCommand";
43
46
  export * from "./ListResourceConfigurationsCommand";
44
47
  export * from "./ListResourceEndpointAssociationsCommand";
@@ -56,6 +59,7 @@ export * from "./ListTargetsCommand";
56
59
  export * from "./PutAuthPolicyCommand";
57
60
  export * from "./PutResourcePolicyCommand";
58
61
  export * from "./RegisterTargetsCommand";
62
+ export * from "./StartDomainVerificationCommand";
59
63
  export * from "./TagResourceCommand";
60
64
  export * from "./UntagResourceCommand";
61
65
  export * from "./UpdateAccessLogSubscriptionCommand";
@@ -249,6 +249,12 @@ export const ServiceNetworkServiceAssociationStatus = {
249
249
  DELETE_FAILED: "DELETE_FAILED",
250
250
  DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
251
251
  };
252
+ export const PrivateDnsPreference = {
253
+ ALL_DOMAINS: "ALL_DOMAINS",
254
+ SPECIFIED_DOMAINS_ONLY: "SPECIFIED_DOMAINS_ONLY",
255
+ VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS: "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS",
256
+ VERIFIED_DOMAINS_ONLY: "VERIFIED_DOMAINS_ONLY",
257
+ };
252
258
  export const ServiceNetworkVpcAssociationStatus = {
253
259
  ACTIVE: "ACTIVE",
254
260
  CREATE_FAILED: "CREATE_FAILED",
@@ -301,6 +307,11 @@ export const TargetGroupStatus = {
301
307
  DELETE_FAILED: "DELETE_FAILED",
302
308
  DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
303
309
  };
310
+ export const VerificationStatus = {
311
+ PENDING: "PENDING",
312
+ VERIFICATION_TIMED_OUT: "VERIFICATION_TIMED_OUT",
313
+ VERIFIED: "VERIFIED",
314
+ };
304
315
  export const TargetStatus = {
305
316
  DRAINING: "DRAINING",
306
317
  HEALTHY: "HEALTHY",
@@ -0,0 +1,4 @@
1
+ import { createPaginator } from "@smithy/core";
2
+ import { ListDomainVerificationsCommand, } from "../commands/ListDomainVerificationsCommand";
3
+ import { VPCLatticeClient } from "../VPCLatticeClient";
4
+ export const paginateListDomainVerifications = createPaginator(VPCLatticeClient, ListDomainVerificationsCommand, "nextToken", "nextToken", "maxResults");
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListAccessLogSubscriptionsPaginator";
3
+ export * from "./ListDomainVerificationsPaginator";
3
4
  export * from "./ListListenersPaginator";
4
5
  export * from "./ListResourceConfigurationsPaginator";
5
6
  export * from "./ListResourceEndpointAssociationsPaginator";
@@ -65,6 +65,9 @@ export const se_CreateResourceConfigurationCommand = async (input, context) => {
65
65
  body = JSON.stringify(take(input, {
66
66
  allowAssociationToShareableServiceNetwork: [],
67
67
  clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
68
+ customDomainName: [],
69
+ domainVerificationIdentifier: [],
70
+ groupDomain: [],
68
71
  name: [],
69
72
  portRanges: (_) => _json(_),
70
73
  protocol: [],
@@ -161,6 +164,7 @@ export const se_CreateServiceNetworkResourceAssociationCommand = async (input, c
161
164
  let body;
162
165
  body = JSON.stringify(take(input, {
163
166
  clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
167
+ privateDnsEnabled: [],
164
168
  resourceConfigurationIdentifier: [],
165
169
  serviceNetworkIdentifier: [],
166
170
  tags: (_) => _json(_),
@@ -193,6 +197,8 @@ export const se_CreateServiceNetworkVpcAssociationCommand = async (input, contex
193
197
  let body;
194
198
  body = JSON.stringify(take(input, {
195
199
  clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
200
+ dnsOptions: (_) => _json(_),
201
+ privateDnsEnabled: [],
196
202
  securityGroupIds: (_) => _json(_),
197
203
  serviceNetworkIdentifier: [],
198
204
  tags: (_) => _json(_),
@@ -236,6 +242,15 @@ export const se_DeleteAuthPolicyCommand = async (input, context) => {
236
242
  b.m("DELETE").h(headers).b(body);
237
243
  return b.build();
238
244
  };
245
+ export const se_DeleteDomainVerificationCommand = async (input, context) => {
246
+ const b = rb(input, context);
247
+ const headers = {};
248
+ b.bp("/domainverifications/{domainVerificationIdentifier}");
249
+ b.p("domainVerificationIdentifier", () => input.domainVerificationIdentifier, "{domainVerificationIdentifier}", false);
250
+ let body;
251
+ b.m("DELETE").h(headers).b(body);
252
+ return b.build();
253
+ };
239
254
  export const se_DeleteListenerCommand = async (input, context) => {
240
255
  const b = rb(input, context);
241
256
  const headers = {};
@@ -379,6 +394,15 @@ export const se_GetAuthPolicyCommand = async (input, context) => {
379
394
  b.m("GET").h(headers).b(body);
380
395
  return b.build();
381
396
  };
397
+ export const se_GetDomainVerificationCommand = async (input, context) => {
398
+ const b = rb(input, context);
399
+ const headers = {};
400
+ b.bp("/domainverifications/{domainVerificationIdentifier}");
401
+ b.p("domainVerificationIdentifier", () => input.domainVerificationIdentifier, "{domainVerificationIdentifier}", false);
402
+ let body;
403
+ b.m("GET").h(headers).b(body);
404
+ return b.build();
405
+ };
382
406
  export const se_GetListenerCommand = async (input, context) => {
383
407
  const b = rb(input, context);
384
408
  const headers = {};
@@ -494,6 +518,18 @@ export const se_ListAccessLogSubscriptionsCommand = async (input, context) => {
494
518
  b.m("GET").h(headers).q(query).b(body);
495
519
  return b.build();
496
520
  };
521
+ export const se_ListDomainVerificationsCommand = async (input, context) => {
522
+ const b = rb(input, context);
523
+ const headers = {};
524
+ b.bp("/domainverifications");
525
+ const query = map({
526
+ [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
527
+ [_nT]: [, input[_nT]],
528
+ });
529
+ let body;
530
+ b.m("GET").h(headers).q(query).b(body);
531
+ return b.build();
532
+ };
497
533
  export const se_ListListenersCommand = async (input, context) => {
498
534
  const b = rb(input, context);
499
535
  const headers = {};
@@ -514,6 +550,7 @@ export const se_ListResourceConfigurationsCommand = async (input, context) => {
514
550
  const query = map({
515
551
  [_rGI]: [, input[_rGI]],
516
552
  [_rCGI]: [, input[_rCGI]],
553
+ [_dVI]: [, input[_dVI]],
517
554
  [_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
518
555
  [_nT]: [, input[_nT]],
519
556
  });
@@ -726,6 +763,21 @@ export const se_RegisterTargetsCommand = async (input, context) => {
726
763
  b.m("POST").h(headers).b(body);
727
764
  return b.build();
728
765
  };
766
+ export const se_StartDomainVerificationCommand = async (input, context) => {
767
+ const b = rb(input, context);
768
+ const headers = {
769
+ "content-type": "application/json",
770
+ };
771
+ b.bp("/domainverifications");
772
+ let body;
773
+ body = JSON.stringify(take(input, {
774
+ clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
775
+ domainName: [],
776
+ tags: (_) => _json(_),
777
+ }));
778
+ b.m("POST").h(headers).b(body);
779
+ return b.build();
780
+ };
729
781
  export const se_TagResourceCommand = async (input, context) => {
730
782
  const b = rb(input, context);
731
783
  const headers = {
@@ -953,7 +1005,11 @@ export const de_CreateResourceConfigurationCommand = async (output, context) =>
953
1005
  allowAssociationToShareableServiceNetwork: __expectBoolean,
954
1006
  arn: __expectString,
955
1007
  createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1008
+ customDomainName: __expectString,
1009
+ domainVerificationArn: __expectString,
1010
+ domainVerificationId: __expectString,
956
1011
  failureReason: __expectString,
1012
+ groupDomain: __expectString,
957
1013
  id: __expectString,
958
1014
  name: __expectString,
959
1015
  portRanges: _json,
@@ -1059,6 +1115,7 @@ export const de_CreateServiceNetworkResourceAssociationCommand = async (output,
1059
1115
  arn: __expectString,
1060
1116
  createdBy: __expectString,
1061
1117
  id: __expectString,
1118
+ privateDnsEnabled: __expectBoolean,
1062
1119
  status: __expectString,
1063
1120
  });
1064
1121
  Object.assign(contents, doc);
@@ -1094,7 +1151,9 @@ export const de_CreateServiceNetworkVpcAssociationCommand = async (output, conte
1094
1151
  const doc = take(data, {
1095
1152
  arn: __expectString,
1096
1153
  createdBy: __expectString,
1154
+ dnsOptions: _json,
1097
1155
  id: __expectString,
1156
+ privateDnsEnabled: __expectBoolean,
1098
1157
  securityGroupIds: _json,
1099
1158
  status: __expectString,
1100
1159
  });
@@ -1140,6 +1199,16 @@ export const de_DeleteAuthPolicyCommand = async (output, context) => {
1140
1199
  await collectBody(output.body, context);
1141
1200
  return contents;
1142
1201
  };
1202
+ export const de_DeleteDomainVerificationCommand = async (output, context) => {
1203
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1204
+ return de_CommandError(output, context);
1205
+ }
1206
+ const contents = map({
1207
+ $metadata: deserializeMetadata(output),
1208
+ });
1209
+ await collectBody(output.body, context);
1210
+ return contents;
1211
+ };
1143
1212
  export const de_DeleteListenerCommand = async (output, context) => {
1144
1213
  if (output.statusCode !== 204 && output.statusCode >= 300) {
1145
1214
  return de_CommandError(output, context);
@@ -1359,6 +1428,27 @@ export const de_GetAuthPolicyCommand = async (output, context) => {
1359
1428
  Object.assign(contents, doc);
1360
1429
  return contents;
1361
1430
  };
1431
+ export const de_GetDomainVerificationCommand = async (output, context) => {
1432
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1433
+ return de_CommandError(output, context);
1434
+ }
1435
+ const contents = map({
1436
+ $metadata: deserializeMetadata(output),
1437
+ });
1438
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
1439
+ const doc = take(data, {
1440
+ arn: __expectString,
1441
+ createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1442
+ domainName: __expectString,
1443
+ id: __expectString,
1444
+ lastVerifiedTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1445
+ status: __expectString,
1446
+ tags: _json,
1447
+ txtMethodConfig: _json,
1448
+ });
1449
+ Object.assign(contents, doc);
1450
+ return contents;
1451
+ };
1362
1452
  export const de_GetListenerCommand = async (output, context) => {
1363
1453
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1364
1454
  return de_CommandError(output, context);
@@ -1396,7 +1486,11 @@ export const de_GetResourceConfigurationCommand = async (output, context) => {
1396
1486
  arn: __expectString,
1397
1487
  createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1398
1488
  customDomainName: __expectString,
1489
+ domainVerificationArn: __expectString,
1490
+ domainVerificationId: __expectString,
1491
+ domainVerificationStatus: __expectString,
1399
1492
  failureReason: __expectString,
1493
+ groupDomain: __expectString,
1400
1494
  id: __expectString,
1401
1495
  lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1402
1496
  name: __expectString,
@@ -1531,11 +1625,13 @@ export const de_GetServiceNetworkResourceAssociationCommand = async (output, con
1531
1625
  createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1532
1626
  createdBy: __expectString,
1533
1627
  dnsEntry: _json,
1628
+ domainVerificationStatus: __expectString,
1534
1629
  failureCode: __expectString,
1535
1630
  failureReason: __expectString,
1536
1631
  id: __expectString,
1537
1632
  isManagedAssociation: __expectBoolean,
1538
1633
  lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1634
+ privateDnsEnabled: __expectBoolean,
1539
1635
  privateDnsEntry: _json,
1540
1636
  resourceConfigurationArn: __expectString,
1541
1637
  resourceConfigurationId: __expectString,
@@ -1588,10 +1684,12 @@ export const de_GetServiceNetworkVpcAssociationCommand = async (output, context)
1588
1684
  arn: __expectString,
1589
1685
  createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1590
1686
  createdBy: __expectString,
1687
+ dnsOptions: _json,
1591
1688
  failureCode: __expectString,
1592
1689
  failureMessage: __expectString,
1593
1690
  id: __expectString,
1594
1691
  lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
1692
+ privateDnsEnabled: __expectBoolean,
1595
1693
  securityGroupIds: _json,
1596
1694
  serviceNetworkArn: __expectString,
1597
1695
  serviceNetworkId: __expectString,
@@ -1641,6 +1739,21 @@ export const de_ListAccessLogSubscriptionsCommand = async (output, context) => {
1641
1739
  Object.assign(contents, doc);
1642
1740
  return contents;
1643
1741
  };
1742
+ export const de_ListDomainVerificationsCommand = async (output, context) => {
1743
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
1744
+ return de_CommandError(output, context);
1745
+ }
1746
+ const contents = map({
1747
+ $metadata: deserializeMetadata(output),
1748
+ });
1749
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
1750
+ const doc = take(data, {
1751
+ items: (_) => de_DomainVerificationList(_, context),
1752
+ nextToken: __expectString,
1753
+ });
1754
+ Object.assign(contents, doc);
1755
+ return contents;
1756
+ };
1644
1757
  export const de_ListListenersCommand = async (output, context) => {
1645
1758
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1646
1759
  return de_CommandError(output, context);
@@ -1890,6 +2003,24 @@ export const de_RegisterTargetsCommand = async (output, context) => {
1890
2003
  Object.assign(contents, doc);
1891
2004
  return contents;
1892
2005
  };
2006
+ export const de_StartDomainVerificationCommand = async (output, context) => {
2007
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
2008
+ return de_CommandError(output, context);
2009
+ }
2010
+ const contents = map({
2011
+ $metadata: deserializeMetadata(output),
2012
+ });
2013
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
2014
+ const doc = take(data, {
2015
+ arn: __expectString,
2016
+ domainName: __expectString,
2017
+ id: __expectString,
2018
+ status: __expectString,
2019
+ txtMethodConfig: _json,
2020
+ });
2021
+ Object.assign(contents, doc);
2022
+ return contents;
2023
+ };
1893
2024
  export const de_TagResourceCommand = async (output, context) => {
1894
2025
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1895
2026
  return de_CommandError(output, context);
@@ -2252,6 +2383,26 @@ const de_AccessLogSubscriptionSummary = (output, context) => {
2252
2383
  serviceNetworkLogType: __expectString,
2253
2384
  });
2254
2385
  };
2386
+ const de_DomainVerificationList = (output, context) => {
2387
+ const retVal = (output || [])
2388
+ .filter((e) => e != null)
2389
+ .map((entry) => {
2390
+ return de_DomainVerificationSummary(entry, context);
2391
+ });
2392
+ return retVal;
2393
+ };
2394
+ const de_DomainVerificationSummary = (output, context) => {
2395
+ return take(output, {
2396
+ arn: __expectString,
2397
+ createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
2398
+ domainName: __expectString,
2399
+ id: __expectString,
2400
+ lastVerifiedTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
2401
+ status: __expectString,
2402
+ tags: _json,
2403
+ txtMethodConfig: _json,
2404
+ });
2405
+ };
2255
2406
  const de_ListenerSummary = (output, context) => {
2256
2407
  return take(output, {
2257
2408
  arn: __expectString,
@@ -2276,6 +2427,9 @@ const de_ResourceConfigurationSummary = (output, context) => {
2276
2427
  amazonManaged: __expectBoolean,
2277
2428
  arn: __expectString,
2278
2429
  createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
2430
+ customDomainName: __expectString,
2431
+ domainVerificationId: __expectString,
2432
+ groupDomain: __expectString,
2279
2433
  id: __expectString,
2280
2434
  lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
2281
2435
  name: __expectString,
@@ -2400,6 +2554,7 @@ const de_ServiceNetworkResourceAssociationSummary = (output, context) => {
2400
2554
  failureCode: __expectString,
2401
2555
  id: __expectString,
2402
2556
  isManagedAssociation: __expectBoolean,
2557
+ privateDnsEnabled: __expectBoolean,
2403
2558
  privateDnsEntry: _json,
2404
2559
  resourceConfigurationArn: __expectString,
2405
2560
  resourceConfigurationId: __expectString,
@@ -2460,8 +2615,10 @@ const de_ServiceNetworkVpcAssociationSummary = (output, context) => {
2460
2615
  arn: __expectString,
2461
2616
  createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
2462
2617
  createdBy: __expectString,
2618
+ dnsOptions: _json,
2463
2619
  id: __expectString,
2464
2620
  lastUpdatedAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
2621
+ privateDnsEnabled: __expectBoolean,
2465
2622
  serviceNetworkArn: __expectString,
2466
2623
  serviceNetworkId: __expectString,
2467
2624
  serviceNetworkName: __expectString,
@@ -2521,6 +2678,7 @@ const deserializeMetadata = (output) => ({
2521
2678
  cfId: output.headers["x-amz-cf-id"],
2522
2679
  });
2523
2680
  const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
2681
+ const _dVI = "domainVerificationIdentifier";
2524
2682
  const _iC = "includeChildren";
2525
2683
  const _mR = "maxResults";
2526
2684
  const _nT = "nextToken";
@@ -13,6 +13,7 @@ import { CreateServiceNetworkVpcAssociationCommandInput, CreateServiceNetworkVpc
13
13
  import { CreateTargetGroupCommandInput, CreateTargetGroupCommandOutput } from "./commands/CreateTargetGroupCommand";
14
14
  import { DeleteAccessLogSubscriptionCommandInput, DeleteAccessLogSubscriptionCommandOutput } from "./commands/DeleteAccessLogSubscriptionCommand";
15
15
  import { DeleteAuthPolicyCommandInput, DeleteAuthPolicyCommandOutput } from "./commands/DeleteAuthPolicyCommand";
16
+ import { DeleteDomainVerificationCommandInput, DeleteDomainVerificationCommandOutput } from "./commands/DeleteDomainVerificationCommand";
16
17
  import { DeleteListenerCommandInput, DeleteListenerCommandOutput } from "./commands/DeleteListenerCommand";
17
18
  import { DeleteResourceConfigurationCommandInput, DeleteResourceConfigurationCommandOutput } from "./commands/DeleteResourceConfigurationCommand";
18
19
  import { DeleteResourceEndpointAssociationCommandInput, DeleteResourceEndpointAssociationCommandOutput } from "./commands/DeleteResourceEndpointAssociationCommand";
@@ -28,6 +29,7 @@ import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from ".
28
29
  import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "./commands/DeregisterTargetsCommand";
29
30
  import { GetAccessLogSubscriptionCommandInput, GetAccessLogSubscriptionCommandOutput } from "./commands/GetAccessLogSubscriptionCommand";
30
31
  import { GetAuthPolicyCommandInput, GetAuthPolicyCommandOutput } from "./commands/GetAuthPolicyCommand";
32
+ import { GetDomainVerificationCommandInput, GetDomainVerificationCommandOutput } from "./commands/GetDomainVerificationCommand";
31
33
  import { GetListenerCommandInput, GetListenerCommandOutput } from "./commands/GetListenerCommand";
32
34
  import { GetResourceConfigurationCommandInput, GetResourceConfigurationCommandOutput } from "./commands/GetResourceConfigurationCommand";
33
35
  import { GetResourceGatewayCommandInput, GetResourceGatewayCommandOutput } from "./commands/GetResourceGatewayCommand";
@@ -40,6 +42,7 @@ import { GetServiceNetworkServiceAssociationCommandInput, GetServiceNetworkServi
40
42
  import { GetServiceNetworkVpcAssociationCommandInput, GetServiceNetworkVpcAssociationCommandOutput } from "./commands/GetServiceNetworkVpcAssociationCommand";
41
43
  import { GetTargetGroupCommandInput, GetTargetGroupCommandOutput } from "./commands/GetTargetGroupCommand";
42
44
  import { ListAccessLogSubscriptionsCommandInput, ListAccessLogSubscriptionsCommandOutput } from "./commands/ListAccessLogSubscriptionsCommand";
45
+ import { ListDomainVerificationsCommandInput, ListDomainVerificationsCommandOutput } from "./commands/ListDomainVerificationsCommand";
43
46
  import { ListListenersCommandInput, ListListenersCommandOutput } from "./commands/ListListenersCommand";
44
47
  import { ListResourceConfigurationsCommandInput, ListResourceConfigurationsCommandOutput } from "./commands/ListResourceConfigurationsCommand";
45
48
  import { ListResourceEndpointAssociationsCommandInput, ListResourceEndpointAssociationsCommandOutput } from "./commands/ListResourceEndpointAssociationsCommand";
@@ -57,6 +60,7 @@ import { ListTargetsCommandInput, ListTargetsCommandOutput } from "./commands/Li
57
60
  import { PutAuthPolicyCommandInput, PutAuthPolicyCommandOutput } from "./commands/PutAuthPolicyCommand";
58
61
  import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
59
62
  import { RegisterTargetsCommandInput, RegisterTargetsCommandOutput } from "./commands/RegisterTargetsCommand";
63
+ import { StartDomainVerificationCommandInput, StartDomainVerificationCommandOutput } from "./commands/StartDomainVerificationCommand";
60
64
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
61
65
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
62
66
  import { UpdateAccessLogSubscriptionCommandInput, UpdateAccessLogSubscriptionCommandOutput } from "./commands/UpdateAccessLogSubscriptionCommand";
@@ -154,6 +158,12 @@ export interface VPCLattice {
154
158
  deleteAuthPolicy(args: DeleteAuthPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteAuthPolicyCommandOutput>;
155
159
  deleteAuthPolicy(args: DeleteAuthPolicyCommandInput, cb: (err: any, data?: DeleteAuthPolicyCommandOutput) => void): void;
156
160
  deleteAuthPolicy(args: DeleteAuthPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteAuthPolicyCommandOutput) => void): void;
161
+ /**
162
+ * @see {@link DeleteDomainVerificationCommand}
163
+ */
164
+ deleteDomainVerification(args: DeleteDomainVerificationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainVerificationCommandOutput>;
165
+ deleteDomainVerification(args: DeleteDomainVerificationCommandInput, cb: (err: any, data?: DeleteDomainVerificationCommandOutput) => void): void;
166
+ deleteDomainVerification(args: DeleteDomainVerificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainVerificationCommandOutput) => void): void;
157
167
  /**
158
168
  * @see {@link DeleteListenerCommand}
159
169
  */
@@ -244,6 +254,12 @@ export interface VPCLattice {
244
254
  getAuthPolicy(args: GetAuthPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetAuthPolicyCommandOutput>;
245
255
  getAuthPolicy(args: GetAuthPolicyCommandInput, cb: (err: any, data?: GetAuthPolicyCommandOutput) => void): void;
246
256
  getAuthPolicy(args: GetAuthPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAuthPolicyCommandOutput) => void): void;
257
+ /**
258
+ * @see {@link GetDomainVerificationCommand}
259
+ */
260
+ getDomainVerification(args: GetDomainVerificationCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainVerificationCommandOutput>;
261
+ getDomainVerification(args: GetDomainVerificationCommandInput, cb: (err: any, data?: GetDomainVerificationCommandOutput) => void): void;
262
+ getDomainVerification(args: GetDomainVerificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainVerificationCommandOutput) => void): void;
247
263
  /**
248
264
  * @see {@link GetListenerCommand}
249
265
  */
@@ -316,6 +332,13 @@ export interface VPCLattice {
316
332
  listAccessLogSubscriptions(args: ListAccessLogSubscriptionsCommandInput, options?: __HttpHandlerOptions): Promise<ListAccessLogSubscriptionsCommandOutput>;
317
333
  listAccessLogSubscriptions(args: ListAccessLogSubscriptionsCommandInput, cb: (err: any, data?: ListAccessLogSubscriptionsCommandOutput) => void): void;
318
334
  listAccessLogSubscriptions(args: ListAccessLogSubscriptionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListAccessLogSubscriptionsCommandOutput) => void): void;
335
+ /**
336
+ * @see {@link ListDomainVerificationsCommand}
337
+ */
338
+ listDomainVerifications(): Promise<ListDomainVerificationsCommandOutput>;
339
+ listDomainVerifications(args: ListDomainVerificationsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainVerificationsCommandOutput>;
340
+ listDomainVerifications(args: ListDomainVerificationsCommandInput, cb: (err: any, data?: ListDomainVerificationsCommandOutput) => void): void;
341
+ listDomainVerifications(args: ListDomainVerificationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainVerificationsCommandOutput) => void): void;
319
342
  /**
320
343
  * @see {@link ListListenersCommand}
321
344
  */
@@ -426,6 +449,12 @@ export interface VPCLattice {
426
449
  registerTargets(args: RegisterTargetsCommandInput, options?: __HttpHandlerOptions): Promise<RegisterTargetsCommandOutput>;
427
450
  registerTargets(args: RegisterTargetsCommandInput, cb: (err: any, data?: RegisterTargetsCommandOutput) => void): void;
428
451
  registerTargets(args: RegisterTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterTargetsCommandOutput) => void): void;
452
+ /**
453
+ * @see {@link StartDomainVerificationCommand}
454
+ */
455
+ startDomainVerification(args: StartDomainVerificationCommandInput, options?: __HttpHandlerOptions): Promise<StartDomainVerificationCommandOutput>;
456
+ startDomainVerification(args: StartDomainVerificationCommandInput, cb: (err: any, data?: StartDomainVerificationCommandOutput) => void): void;
457
+ startDomainVerification(args: StartDomainVerificationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDomainVerificationCommandOutput) => void): void;
429
458
  /**
430
459
  * @see {@link TagResourceCommand}
431
460
  */
@@ -21,6 +21,7 @@ import { CreateServiceNetworkVpcAssociationCommandInput, CreateServiceNetworkVpc
21
21
  import { CreateTargetGroupCommandInput, CreateTargetGroupCommandOutput } from "./commands/CreateTargetGroupCommand";
22
22
  import { DeleteAccessLogSubscriptionCommandInput, DeleteAccessLogSubscriptionCommandOutput } from "./commands/DeleteAccessLogSubscriptionCommand";
23
23
  import { DeleteAuthPolicyCommandInput, DeleteAuthPolicyCommandOutput } from "./commands/DeleteAuthPolicyCommand";
24
+ import { DeleteDomainVerificationCommandInput, DeleteDomainVerificationCommandOutput } from "./commands/DeleteDomainVerificationCommand";
24
25
  import { DeleteListenerCommandInput, DeleteListenerCommandOutput } from "./commands/DeleteListenerCommand";
25
26
  import { DeleteResourceConfigurationCommandInput, DeleteResourceConfigurationCommandOutput } from "./commands/DeleteResourceConfigurationCommand";
26
27
  import { DeleteResourceEndpointAssociationCommandInput, DeleteResourceEndpointAssociationCommandOutput } from "./commands/DeleteResourceEndpointAssociationCommand";
@@ -36,6 +37,7 @@ import { DeleteTargetGroupCommandInput, DeleteTargetGroupCommandOutput } from ".
36
37
  import { DeregisterTargetsCommandInput, DeregisterTargetsCommandOutput } from "./commands/DeregisterTargetsCommand";
37
38
  import { GetAccessLogSubscriptionCommandInput, GetAccessLogSubscriptionCommandOutput } from "./commands/GetAccessLogSubscriptionCommand";
38
39
  import { GetAuthPolicyCommandInput, GetAuthPolicyCommandOutput } from "./commands/GetAuthPolicyCommand";
40
+ import { GetDomainVerificationCommandInput, GetDomainVerificationCommandOutput } from "./commands/GetDomainVerificationCommand";
39
41
  import { GetListenerCommandInput, GetListenerCommandOutput } from "./commands/GetListenerCommand";
40
42
  import { GetResourceConfigurationCommandInput, GetResourceConfigurationCommandOutput } from "./commands/GetResourceConfigurationCommand";
41
43
  import { GetResourceGatewayCommandInput, GetResourceGatewayCommandOutput } from "./commands/GetResourceGatewayCommand";
@@ -48,6 +50,7 @@ import { GetServiceNetworkServiceAssociationCommandInput, GetServiceNetworkServi
48
50
  import { GetServiceNetworkVpcAssociationCommandInput, GetServiceNetworkVpcAssociationCommandOutput } from "./commands/GetServiceNetworkVpcAssociationCommand";
49
51
  import { GetTargetGroupCommandInput, GetTargetGroupCommandOutput } from "./commands/GetTargetGroupCommand";
50
52
  import { ListAccessLogSubscriptionsCommandInput, ListAccessLogSubscriptionsCommandOutput } from "./commands/ListAccessLogSubscriptionsCommand";
53
+ import { ListDomainVerificationsCommandInput, ListDomainVerificationsCommandOutput } from "./commands/ListDomainVerificationsCommand";
51
54
  import { ListListenersCommandInput, ListListenersCommandOutput } from "./commands/ListListenersCommand";
52
55
  import { ListResourceConfigurationsCommandInput, ListResourceConfigurationsCommandOutput } from "./commands/ListResourceConfigurationsCommand";
53
56
  import { ListResourceEndpointAssociationsCommandInput, ListResourceEndpointAssociationsCommandOutput } from "./commands/ListResourceEndpointAssociationsCommand";
@@ -65,6 +68,7 @@ import { ListTargetsCommandInput, ListTargetsCommandOutput } from "./commands/Li
65
68
  import { PutAuthPolicyCommandInput, PutAuthPolicyCommandOutput } from "./commands/PutAuthPolicyCommand";
66
69
  import { PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput } from "./commands/PutResourcePolicyCommand";
67
70
  import { RegisterTargetsCommandInput, RegisterTargetsCommandOutput } from "./commands/RegisterTargetsCommand";
71
+ import { StartDomainVerificationCommandInput, StartDomainVerificationCommandOutput } from "./commands/StartDomainVerificationCommand";
68
72
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
69
73
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
70
74
  import { UpdateAccessLogSubscriptionCommandInput, UpdateAccessLogSubscriptionCommandOutput } from "./commands/UpdateAccessLogSubscriptionCommand";
@@ -82,11 +86,11 @@ export { __Client };
82
86
  /**
83
87
  * @public
84
88
  */
85
- export type ServiceInputTypes = BatchUpdateRuleCommandInput | CreateAccessLogSubscriptionCommandInput | CreateListenerCommandInput | CreateResourceConfigurationCommandInput | CreateResourceGatewayCommandInput | CreateRuleCommandInput | CreateServiceCommandInput | CreateServiceNetworkCommandInput | CreateServiceNetworkResourceAssociationCommandInput | CreateServiceNetworkServiceAssociationCommandInput | CreateServiceNetworkVpcAssociationCommandInput | CreateTargetGroupCommandInput | DeleteAccessLogSubscriptionCommandInput | DeleteAuthPolicyCommandInput | DeleteListenerCommandInput | DeleteResourceConfigurationCommandInput | DeleteResourceEndpointAssociationCommandInput | DeleteResourceGatewayCommandInput | DeleteResourcePolicyCommandInput | DeleteRuleCommandInput | DeleteServiceCommandInput | DeleteServiceNetworkCommandInput | DeleteServiceNetworkResourceAssociationCommandInput | DeleteServiceNetworkServiceAssociationCommandInput | DeleteServiceNetworkVpcAssociationCommandInput | DeleteTargetGroupCommandInput | DeregisterTargetsCommandInput | GetAccessLogSubscriptionCommandInput | GetAuthPolicyCommandInput | GetListenerCommandInput | GetResourceConfigurationCommandInput | GetResourceGatewayCommandInput | GetResourcePolicyCommandInput | GetRuleCommandInput | GetServiceCommandInput | GetServiceNetworkCommandInput | GetServiceNetworkResourceAssociationCommandInput | GetServiceNetworkServiceAssociationCommandInput | GetServiceNetworkVpcAssociationCommandInput | GetTargetGroupCommandInput | ListAccessLogSubscriptionsCommandInput | ListListenersCommandInput | ListResourceConfigurationsCommandInput | ListResourceEndpointAssociationsCommandInput | ListResourceGatewaysCommandInput | ListRulesCommandInput | ListServiceNetworkResourceAssociationsCommandInput | ListServiceNetworkServiceAssociationsCommandInput | ListServiceNetworkVpcAssociationsCommandInput | ListServiceNetworkVpcEndpointAssociationsCommandInput | ListServiceNetworksCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListTargetGroupsCommandInput | ListTargetsCommandInput | PutAuthPolicyCommandInput | PutResourcePolicyCommandInput | RegisterTargetsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessLogSubscriptionCommandInput | UpdateListenerCommandInput | UpdateResourceConfigurationCommandInput | UpdateResourceGatewayCommandInput | UpdateRuleCommandInput | UpdateServiceCommandInput | UpdateServiceNetworkCommandInput | UpdateServiceNetworkVpcAssociationCommandInput | UpdateTargetGroupCommandInput;
89
+ export type ServiceInputTypes = BatchUpdateRuleCommandInput | CreateAccessLogSubscriptionCommandInput | CreateListenerCommandInput | CreateResourceConfigurationCommandInput | CreateResourceGatewayCommandInput | CreateRuleCommandInput | CreateServiceCommandInput | CreateServiceNetworkCommandInput | CreateServiceNetworkResourceAssociationCommandInput | CreateServiceNetworkServiceAssociationCommandInput | CreateServiceNetworkVpcAssociationCommandInput | CreateTargetGroupCommandInput | DeleteAccessLogSubscriptionCommandInput | DeleteAuthPolicyCommandInput | DeleteDomainVerificationCommandInput | DeleteListenerCommandInput | DeleteResourceConfigurationCommandInput | DeleteResourceEndpointAssociationCommandInput | DeleteResourceGatewayCommandInput | DeleteResourcePolicyCommandInput | DeleteRuleCommandInput | DeleteServiceCommandInput | DeleteServiceNetworkCommandInput | DeleteServiceNetworkResourceAssociationCommandInput | DeleteServiceNetworkServiceAssociationCommandInput | DeleteServiceNetworkVpcAssociationCommandInput | DeleteTargetGroupCommandInput | DeregisterTargetsCommandInput | GetAccessLogSubscriptionCommandInput | GetAuthPolicyCommandInput | GetDomainVerificationCommandInput | GetListenerCommandInput | GetResourceConfigurationCommandInput | GetResourceGatewayCommandInput | GetResourcePolicyCommandInput | GetRuleCommandInput | GetServiceCommandInput | GetServiceNetworkCommandInput | GetServiceNetworkResourceAssociationCommandInput | GetServiceNetworkServiceAssociationCommandInput | GetServiceNetworkVpcAssociationCommandInput | GetTargetGroupCommandInput | ListAccessLogSubscriptionsCommandInput | ListDomainVerificationsCommandInput | ListListenersCommandInput | ListResourceConfigurationsCommandInput | ListResourceEndpointAssociationsCommandInput | ListResourceGatewaysCommandInput | ListRulesCommandInput | ListServiceNetworkResourceAssociationsCommandInput | ListServiceNetworkServiceAssociationsCommandInput | ListServiceNetworkVpcAssociationsCommandInput | ListServiceNetworkVpcEndpointAssociationsCommandInput | ListServiceNetworksCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListTargetGroupsCommandInput | ListTargetsCommandInput | PutAuthPolicyCommandInput | PutResourcePolicyCommandInput | RegisterTargetsCommandInput | StartDomainVerificationCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateAccessLogSubscriptionCommandInput | UpdateListenerCommandInput | UpdateResourceConfigurationCommandInput | UpdateResourceGatewayCommandInput | UpdateRuleCommandInput | UpdateServiceCommandInput | UpdateServiceNetworkCommandInput | UpdateServiceNetworkVpcAssociationCommandInput | UpdateTargetGroupCommandInput;
86
90
  /**
87
91
  * @public
88
92
  */
89
- export type ServiceOutputTypes = BatchUpdateRuleCommandOutput | CreateAccessLogSubscriptionCommandOutput | CreateListenerCommandOutput | CreateResourceConfigurationCommandOutput | CreateResourceGatewayCommandOutput | CreateRuleCommandOutput | CreateServiceCommandOutput | CreateServiceNetworkCommandOutput | CreateServiceNetworkResourceAssociationCommandOutput | CreateServiceNetworkServiceAssociationCommandOutput | CreateServiceNetworkVpcAssociationCommandOutput | CreateTargetGroupCommandOutput | DeleteAccessLogSubscriptionCommandOutput | DeleteAuthPolicyCommandOutput | DeleteListenerCommandOutput | DeleteResourceConfigurationCommandOutput | DeleteResourceEndpointAssociationCommandOutput | DeleteResourceGatewayCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRuleCommandOutput | DeleteServiceCommandOutput | DeleteServiceNetworkCommandOutput | DeleteServiceNetworkResourceAssociationCommandOutput | DeleteServiceNetworkServiceAssociationCommandOutput | DeleteServiceNetworkVpcAssociationCommandOutput | DeleteTargetGroupCommandOutput | DeregisterTargetsCommandOutput | GetAccessLogSubscriptionCommandOutput | GetAuthPolicyCommandOutput | GetListenerCommandOutput | GetResourceConfigurationCommandOutput | GetResourceGatewayCommandOutput | GetResourcePolicyCommandOutput | GetRuleCommandOutput | GetServiceCommandOutput | GetServiceNetworkCommandOutput | GetServiceNetworkResourceAssociationCommandOutput | GetServiceNetworkServiceAssociationCommandOutput | GetServiceNetworkVpcAssociationCommandOutput | GetTargetGroupCommandOutput | ListAccessLogSubscriptionsCommandOutput | ListListenersCommandOutput | ListResourceConfigurationsCommandOutput | ListResourceEndpointAssociationsCommandOutput | ListResourceGatewaysCommandOutput | ListRulesCommandOutput | ListServiceNetworkResourceAssociationsCommandOutput | ListServiceNetworkServiceAssociationsCommandOutput | ListServiceNetworkVpcAssociationsCommandOutput | ListServiceNetworkVpcEndpointAssociationsCommandOutput | ListServiceNetworksCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListTargetGroupsCommandOutput | ListTargetsCommandOutput | PutAuthPolicyCommandOutput | PutResourcePolicyCommandOutput | RegisterTargetsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessLogSubscriptionCommandOutput | UpdateListenerCommandOutput | UpdateResourceConfigurationCommandOutput | UpdateResourceGatewayCommandOutput | UpdateRuleCommandOutput | UpdateServiceCommandOutput | UpdateServiceNetworkCommandOutput | UpdateServiceNetworkVpcAssociationCommandOutput | UpdateTargetGroupCommandOutput;
93
+ export type ServiceOutputTypes = BatchUpdateRuleCommandOutput | CreateAccessLogSubscriptionCommandOutput | CreateListenerCommandOutput | CreateResourceConfigurationCommandOutput | CreateResourceGatewayCommandOutput | CreateRuleCommandOutput | CreateServiceCommandOutput | CreateServiceNetworkCommandOutput | CreateServiceNetworkResourceAssociationCommandOutput | CreateServiceNetworkServiceAssociationCommandOutput | CreateServiceNetworkVpcAssociationCommandOutput | CreateTargetGroupCommandOutput | DeleteAccessLogSubscriptionCommandOutput | DeleteAuthPolicyCommandOutput | DeleteDomainVerificationCommandOutput | DeleteListenerCommandOutput | DeleteResourceConfigurationCommandOutput | DeleteResourceEndpointAssociationCommandOutput | DeleteResourceGatewayCommandOutput | DeleteResourcePolicyCommandOutput | DeleteRuleCommandOutput | DeleteServiceCommandOutput | DeleteServiceNetworkCommandOutput | DeleteServiceNetworkResourceAssociationCommandOutput | DeleteServiceNetworkServiceAssociationCommandOutput | DeleteServiceNetworkVpcAssociationCommandOutput | DeleteTargetGroupCommandOutput | DeregisterTargetsCommandOutput | GetAccessLogSubscriptionCommandOutput | GetAuthPolicyCommandOutput | GetDomainVerificationCommandOutput | GetListenerCommandOutput | GetResourceConfigurationCommandOutput | GetResourceGatewayCommandOutput | GetResourcePolicyCommandOutput | GetRuleCommandOutput | GetServiceCommandOutput | GetServiceNetworkCommandOutput | GetServiceNetworkResourceAssociationCommandOutput | GetServiceNetworkServiceAssociationCommandOutput | GetServiceNetworkVpcAssociationCommandOutput | GetTargetGroupCommandOutput | ListAccessLogSubscriptionsCommandOutput | ListDomainVerificationsCommandOutput | ListListenersCommandOutput | ListResourceConfigurationsCommandOutput | ListResourceEndpointAssociationsCommandOutput | ListResourceGatewaysCommandOutput | ListRulesCommandOutput | ListServiceNetworkResourceAssociationsCommandOutput | ListServiceNetworkServiceAssociationsCommandOutput | ListServiceNetworkVpcAssociationsCommandOutput | ListServiceNetworkVpcEndpointAssociationsCommandOutput | ListServiceNetworksCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListTargetGroupsCommandOutput | ListTargetsCommandOutput | PutAuthPolicyCommandOutput | PutResourcePolicyCommandOutput | RegisterTargetsCommandOutput | StartDomainVerificationCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateAccessLogSubscriptionCommandOutput | UpdateListenerCommandOutput | UpdateResourceConfigurationCommandOutput | UpdateResourceGatewayCommandOutput | UpdateRuleCommandOutput | UpdateServiceCommandOutput | UpdateServiceNetworkCommandOutput | UpdateServiceNetworkVpcAssociationCommandOutput | UpdateTargetGroupCommandOutput;
90
94
  /**
91
95
  * @public
92
96
  */
@@ -58,6 +58,9 @@ declare const CreateResourceConfigurationCommand_base: {
58
58
  * },
59
59
  * },
60
60
  * allowAssociationToShareableServiceNetwork: true || false,
61
+ * customDomainName: "STRING_VALUE",
62
+ * groupDomain: "STRING_VALUE",
63
+ * domainVerificationIdentifier: "STRING_VALUE",
61
64
  * clientToken: "STRING_VALUE",
62
65
  * tags: { // TagMap
63
66
  * "<keys>": "STRING_VALUE",
@@ -92,6 +95,10 @@ declare const CreateResourceConfigurationCommand_base: {
92
95
  * // allowAssociationToShareableServiceNetwork: true || false,
93
96
  * // createdAt: new Date("TIMESTAMP"),
94
97
  * // failureReason: "STRING_VALUE",
98
+ * // customDomainName: "STRING_VALUE",
99
+ * // domainVerificationId: "STRING_VALUE",
100
+ * // groupDomain: "STRING_VALUE",
101
+ * // domainVerificationArn: "STRING_VALUE",
95
102
  * // };
96
103
  *
97
104
  * ```