@aws-sdk/client-datazone 3.908.0 → 3.910.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.
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ruleSet = void 0;
4
4
  const r = "argv", s = "ref";
5
- const a = false, b = true, c = "isSet", d = "booleanEquals", e = "error", f = "endpoint", g = "tree", h = "PartitionResult", i = "getAttr", j = { "required": false, "type": "String" }, k = { [s]: "Endpoint" }, l = {}, m = { [s]: h }, n = { [e]: "FIPS is enabled but this partition does not support FIPS", "type": e }, o = [{ "fn": d, [r]: [{ [s]: "UseFIPS" }, true] }], p = [{ [s]: "Region" }], q = [{ "fn": d, [r]: [{ "fn": i, [r]: [m, "supportsFIPS"] }, true] }];
6
- const _data = { version: "1.0", parameters: { Region: j, UseFIPS: { required: b, default: a, type: "Boolean" }, Endpoint: j }, rules: [{ conditions: [{ fn: c, [r]: [k] }], rules: [{ conditions: o, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: e }, { endpoint: { url: k, properties: l, headers: l }, type: f }], type: g }, { conditions: [{ fn: c, [r]: p }], rules: [{ conditions: [{ fn: "aws.partition", [r]: p, assign: h }], rules: [{ conditions: [{ fn: d, [r]: [b, { fn: i, [r]: [m, "supportsDualStack"] }] }], rules: [{ conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, { conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }], type: g }, { error: "Invalid Configuration: Missing Region", type: e }] };
5
+ const a = false, b = true, c = "isSet", d = "booleanEquals", e = "error", f = "endpoint", g = "tree", h = "PartitionResult", i = "getAttr", j = { "required": false, "type": "string" }, k = { [s]: "Endpoint" }, l = {}, m = { [s]: h }, n = { [e]: "FIPS is enabled but this partition does not support FIPS", "type": e }, o = [{ "fn": d, [r]: [{ [s]: "UseFIPS" }, true] }], p = [{ [s]: "Region" }], q = [{ "fn": d, [r]: [{ "fn": i, [r]: [m, "supportsFIPS"] }, true] }];
6
+ const _data = { version: "1.0", parameters: { Region: j, UseFIPS: { required: b, default: a, type: "boolean" }, Endpoint: j }, rules: [{ conditions: [{ fn: c, [r]: [k] }], rules: [{ conditions: o, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: e }, { endpoint: { url: k, properties: l, headers: l }, type: f }], type: g }, { conditions: [{ fn: c, [r]: p }], rules: [{ conditions: [{ fn: "aws.partition", [r]: p, assign: h }], rules: [{ conditions: [{ fn: d, [r]: [b, { fn: i, [r]: [m, "supportsDualStack"] }] }], rules: [{ conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, { conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }], type: g }, { error: "Invalid Configuration: Missing Region", type: e }] };
7
7
  exports.ruleSet = _data;
package/dist-cjs/index.js CHANGED
@@ -537,6 +537,8 @@ exports.ConnectionPropertiesInput = void 0;
537
537
  return visitor.sparkGlueProperties(value.sparkGlueProperties);
538
538
  if (value.s3Properties !== undefined)
539
539
  return visitor.s3Properties(value.s3Properties);
540
+ if (value.amazonQProperties !== undefined)
541
+ return visitor.amazonQProperties(value.amazonQProperties);
540
542
  return visitor._(value.$unknown[0], value.$unknown[1]);
541
543
  };
542
544
  })(exports.ConnectionPropertiesInput || (exports.ConnectionPropertiesInput = {}));
@@ -577,6 +579,8 @@ exports.ConnectionPropertiesOutput = void 0;
577
579
  return visitor.sparkGlueProperties(value.sparkGlueProperties);
578
580
  if (value.s3Properties !== undefined)
579
581
  return visitor.s3Properties(value.s3Properties);
582
+ if (value.amazonQProperties !== undefined)
583
+ return visitor.amazonQProperties(value.amazonQProperties);
580
584
  return visitor._(value.$unknown[0], value.$unknown[1]);
581
585
  };
582
586
  })(exports.ConnectionPropertiesOutput || (exports.ConnectionPropertiesOutput = {}));
@@ -595,10 +599,17 @@ exports.ConnectionPropertiesPatch = void 0;
595
599
  return visitor.sparkEmrProperties(value.sparkEmrProperties);
596
600
  if (value.s3Properties !== undefined)
597
601
  return visitor.s3Properties(value.s3Properties);
602
+ if (value.amazonQProperties !== undefined)
603
+ return visitor.amazonQProperties(value.amazonQProperties);
598
604
  return visitor._(value.$unknown[0], value.$unknown[1]);
599
605
  };
600
606
  })(exports.ConnectionPropertiesPatch || (exports.ConnectionPropertiesPatch = {}));
607
+ const ConnectionScope = {
608
+ DOMAIN: "DOMAIN",
609
+ PROJECT: "PROJECT",
610
+ };
601
611
  const ConnectionType = {
612
+ AMAZON_Q: "AMAZON_Q",
602
613
  ATHENA: "ATHENA",
603
614
  BIGQUERY: "BIGQUERY",
604
615
  DATABRICKS: "DATABRICKS",
@@ -904,14 +915,6 @@ exports.Region = void 0;
904
915
  return visitor._(value.$unknown[0], value.$unknown[1]);
905
916
  };
906
917
  })(exports.Region || (exports.Region = {}));
907
- const DeploymentMode = {
908
- ON_CREATE: "ON_CREATE",
909
- ON_DEMAND: "ON_DEMAND",
910
- };
911
- const Status = {
912
- DISABLED: "DISABLED",
913
- ENABLED: "ENABLED",
914
- };
915
918
  const AcceptChoiceFilterSensitiveLog = (obj) => ({
916
919
  ...obj,
917
920
  ...(obj.editedValue && { editedValue: smithyClient.SENSITIVE_STRING }),
@@ -1189,6 +1192,8 @@ const ConnectionPropertiesInputFilterSensitiveLog = (obj) => {
1189
1192
  return { sparkGlueProperties: obj.sparkGlueProperties };
1190
1193
  if (obj.s3Properties !== undefined)
1191
1194
  return { s3Properties: obj.s3Properties };
1195
+ if (obj.amazonQProperties !== undefined)
1196
+ return { amazonQProperties: obj.amazonQProperties };
1192
1197
  if (obj.$unknown !== undefined)
1193
1198
  return { [obj.$unknown[0]]: "UNKNOWN" };
1194
1199
  };
@@ -1222,6 +1227,8 @@ const ConnectionPropertiesOutputFilterSensitiveLog = (obj) => {
1222
1227
  return { sparkGlueProperties: obj.sparkGlueProperties };
1223
1228
  if (obj.s3Properties !== undefined)
1224
1229
  return { s3Properties: obj.s3Properties };
1230
+ if (obj.amazonQProperties !== undefined)
1231
+ return { amazonQProperties: obj.amazonQProperties };
1225
1232
  if (obj.$unknown !== undefined)
1226
1233
  return { [obj.$unknown[0]]: "UNKNOWN" };
1227
1234
  };
@@ -1255,6 +1262,8 @@ const ConnectionPropertiesPatchFilterSensitiveLog = (obj) => {
1255
1262
  return { sparkEmrProperties: obj.sparkEmrProperties };
1256
1263
  if (obj.s3Properties !== undefined)
1257
1264
  return { s3Properties: obj.s3Properties };
1265
+ if (obj.amazonQProperties !== undefined)
1266
+ return { amazonQProperties: obj.amazonQProperties };
1258
1267
  if (obj.$unknown !== undefined)
1259
1268
  return { [obj.$unknown[0]]: "UNKNOWN" };
1260
1269
  };
@@ -1462,23 +1471,15 @@ const CreateProjectOutputFilterSensitiveLog = (obj) => ({
1462
1471
  userParameters: obj.userParameters.map((item) => EnvironmentConfigurationUserParameterFilterSensitiveLog(item)),
1463
1472
  }),
1464
1473
  });
1465
- const EnvironmentConfigurationFilterSensitiveLog = (obj) => ({
1466
- ...obj,
1467
- ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
1468
- ...(obj.id && { id: smithyClient.SENSITIVE_STRING }),
1469
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
1470
- ...(obj.awsAccount && { awsAccount: obj.awsAccount }),
1471
- ...(obj.awsRegion && { awsRegion: obj.awsRegion }),
1472
- });
1473
- const CreateProjectProfileInputFilterSensitiveLog = (obj) => ({
1474
- ...obj,
1475
- ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
1476
- ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
1477
- ...(obj.environmentConfigurations && {
1478
- environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
1479
- }),
1480
- });
1481
1474
 
1475
+ const DeploymentMode = {
1476
+ ON_CREATE: "ON_CREATE",
1477
+ ON_DEMAND: "ON_DEMAND",
1478
+ };
1479
+ const Status = {
1480
+ DISABLED: "DISABLED",
1481
+ ENABLED: "ENABLED",
1482
+ };
1482
1483
  const RuleAction = {
1483
1484
  CREATE_LISTING_CHANGE_SET: "CREATE_LISTING_CHANGE_SET",
1484
1485
  CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST",
@@ -1740,13 +1741,22 @@ const SortKey = {
1740
1741
  CREATED_AT: "CREATED_AT",
1741
1742
  UPDATED_AT: "UPDATED_AT",
1742
1743
  };
1743
- const MetadataGenerationRunStatus = {
1744
- CANCELED: "CANCELED",
1745
- FAILED: "FAILED",
1746
- IN_PROGRESS: "IN_PROGRESS",
1747
- SUBMITTED: "SUBMITTED",
1748
- SUCCEEDED: "SUCCEEDED",
1749
- };
1744
+ const EnvironmentConfigurationFilterSensitiveLog = (obj) => ({
1745
+ ...obj,
1746
+ ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
1747
+ ...(obj.id && { id: smithyClient.SENSITIVE_STRING }),
1748
+ ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
1749
+ ...(obj.awsAccount && { awsAccount: obj.awsAccount }),
1750
+ ...(obj.awsRegion && { awsRegion: obj.awsRegion }),
1751
+ });
1752
+ const CreateProjectProfileInputFilterSensitiveLog = (obj) => ({
1753
+ ...obj,
1754
+ ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
1755
+ ...(obj.description && { description: smithyClient.SENSITIVE_STRING }),
1756
+ ...(obj.environmentConfigurations && {
1757
+ environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
1758
+ }),
1759
+ });
1750
1760
  const CreateProjectProfileOutputFilterSensitiveLog = (obj) => ({
1751
1761
  ...obj,
1752
1762
  ...(obj.name && { name: smithyClient.SENSITIVE_STRING }),
@@ -2231,6 +2241,13 @@ const ListSubscriptionTargetsOutputFilterSensitiveLog = (obj) => ({
2231
2241
  ...(obj.items && { items: obj.items.map((item) => SubscriptionTargetSummaryFilterSensitiveLog(item)) }),
2232
2242
  });
2233
2243
 
2244
+ const MetadataGenerationRunStatus = {
2245
+ CANCELED: "CANCELED",
2246
+ FAILED: "FAILED",
2247
+ IN_PROGRESS: "IN_PROGRESS",
2248
+ SUBMITTED: "SUBMITTED",
2249
+ SUCCEEDED: "SUCCEEDED",
2250
+ };
2234
2251
  const MetadataGenerationTargetType = {
2235
2252
  ASSET: "ASSET",
2236
2253
  };
@@ -2868,9 +2885,11 @@ const se_CreateConnectionCommand = async (input, context) => {
2868
2885
  awsLocation: (_) => smithyClient._json(_),
2869
2886
  clientToken: [true, (_) => _ ?? uuid.v4()],
2870
2887
  description: [],
2888
+ enableTrustedIdentityPropagation: [],
2871
2889
  environmentIdentifier: [],
2872
2890
  name: [],
2873
2891
  props: (_) => smithyClient._json(_),
2892
+ scope: [],
2874
2893
  }));
2875
2894
  b.m("POST").h(headers).b(body);
2876
2895
  return b.build();
@@ -4058,8 +4077,9 @@ const se_ListConnectionsCommand = async (input, context) => {
4058
4077
  [_sO]: [, input[_sO]],
4059
4078
  [_n]: [, input[_n]],
4060
4079
  [_eI]: [, input[_eI]],
4061
- [_pI]: [, smithyClient.expectNonNull(input[_pI], `projectIdentifier`)],
4080
+ [_pI]: [, input[_pI]],
4062
4081
  [_ty]: [, input[_ty]],
4082
+ [_sc]: [, input[_sc]],
4063
4083
  });
4064
4084
  let body;
4065
4085
  b.m("GET").h(headers).q(query).b(body);
@@ -5463,6 +5483,7 @@ const de_CreateConnectionCommand = async (output, context) => {
5463
5483
  physicalEndpoints: (_) => de_PhysicalEndpoints(_),
5464
5484
  projectId: smithyClient.expectString,
5465
5485
  props: (_) => de_ConnectionPropertiesOutput(core$1.awsExpectUnion(_)),
5486
+ scope: smithyClient.expectString,
5466
5487
  type: smithyClient.expectString,
5467
5488
  });
5468
5489
  Object.assign(contents, doc);
@@ -6434,6 +6455,7 @@ const de_GetConnectionCommand = async (output, context) => {
6434
6455
  physicalEndpoints: (_) => de_PhysicalEndpoints(_),
6435
6456
  projectId: smithyClient.expectString,
6436
6457
  props: (_) => de_ConnectionPropertiesOutput(core$1.awsExpectUnion(_)),
6458
+ scope: smithyClient.expectString,
6437
6459
  type: smithyClient.expectString,
6438
6460
  });
6439
6461
  Object.assign(contents, doc);
@@ -8007,6 +8029,7 @@ const de_UpdateConnectionCommand = async (output, context) => {
8007
8029
  physicalEndpoints: (_) => de_PhysicalEndpoints(_),
8008
8030
  projectId: smithyClient.expectString,
8009
8031
  props: (_) => de_ConnectionPropertiesOutput(core$1.awsExpectUnion(_)),
8032
+ scope: smithyClient.expectString,
8010
8033
  type: smithyClient.expectString,
8011
8034
  });
8012
8035
  Object.assign(contents, doc);
@@ -8784,6 +8807,11 @@ const de_ConnectionCredentials = (output, context) => {
8784
8807
  });
8785
8808
  };
8786
8809
  const de_ConnectionPropertiesOutput = (output, context) => {
8810
+ if (output.amazonQProperties != null) {
8811
+ return {
8812
+ amazonQProperties: smithyClient._json(output.amazonQProperties),
8813
+ };
8814
+ }
8787
8815
  if (output.athenaProperties != null) {
8788
8816
  return {
8789
8817
  athenaProperties: smithyClient._json(output.athenaProperties),
@@ -8844,6 +8872,7 @@ const de_ConnectionSummary = (output, context) => {
8844
8872
  physicalEndpoints: (_) => de_PhysicalEndpoints(_),
8845
8873
  projectId: smithyClient.expectString,
8846
8874
  props: (_) => de_ConnectionPropertiesOutput(core$1.awsExpectUnion(_)),
8875
+ scope: smithyClient.expectString,
8847
8876
  type: smithyClient.expectString,
8848
8877
  });
8849
8878
  };
@@ -9340,6 +9369,7 @@ const de_NotificationsList = (output, context) => {
9340
9369
  const de_PhysicalEndpoint = (output, context) => {
9341
9370
  return smithyClient.take(output, {
9342
9371
  awsLocation: smithyClient._json,
9372
+ enableTrustedIdentityPropagation: smithyClient.expectBoolean,
9343
9373
  glueConnection: (_) => de_GlueConnection(_),
9344
9374
  glueConnectionName: smithyClient.expectString,
9345
9375
  host: smithyClient.expectString,
@@ -9785,6 +9815,7 @@ const _sLI = "subscribedListingId";
9785
9815
  const _sO = "sortOrder";
9786
9816
  const _sRI = "subscriptionRequestIdentifier";
9787
9817
  const _sTI = "subscriptionTargetId";
9818
+ const _sc = "scope";
9788
9819
  const _su = "subjects";
9789
9820
  const _t = "timestamp";
9790
9821
  const _tA = "timestampAfter";
@@ -12965,6 +12996,7 @@ exports.ConnectionCredentialsFilterSensitiveLog = ConnectionCredentialsFilterSen
12965
12996
  exports.ConnectionPropertiesInputFilterSensitiveLog = ConnectionPropertiesInputFilterSensitiveLog;
12966
12997
  exports.ConnectionPropertiesOutputFilterSensitiveLog = ConnectionPropertiesOutputFilterSensitiveLog;
12967
12998
  exports.ConnectionPropertiesPatchFilterSensitiveLog = ConnectionPropertiesPatchFilterSensitiveLog;
12999
+ exports.ConnectionScope = ConnectionScope;
12968
13000
  exports.ConnectionStatus = ConnectionStatus;
12969
13001
  exports.ConnectionSummaryFilterSensitiveLog = ConnectionSummaryFilterSensitiveLog;
12970
13002
  exports.ConnectionType = ConnectionType;
@@ -2,8 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { CreateProjectProfileInputFilterSensitiveLog } from "../models/models_0";
6
- import { CreateProjectProfileOutputFilterSensitiveLog } from "../models/models_1";
5
+ import { CreateProjectProfileInputFilterSensitiveLog, CreateProjectProfileOutputFilterSensitiveLog, } from "../models/models_1";
7
6
  import { de_CreateProjectProfileCommand, se_CreateProjectProfileCommand } from "../protocols/Aws_restJson1";
8
7
  export { $Command };
9
8
  export class CreateProjectProfileCommand extends $Command
@@ -1,4 +1,4 @@
1
1
  const r = "argv", s = "ref";
2
- const a = false, b = true, c = "isSet", d = "booleanEquals", e = "error", f = "endpoint", g = "tree", h = "PartitionResult", i = "getAttr", j = { "required": false, "type": "String" }, k = { [s]: "Endpoint" }, l = {}, m = { [s]: h }, n = { [e]: "FIPS is enabled but this partition does not support FIPS", "type": e }, o = [{ "fn": d, [r]: [{ [s]: "UseFIPS" }, true] }], p = [{ [s]: "Region" }], q = [{ "fn": d, [r]: [{ "fn": i, [r]: [m, "supportsFIPS"] }, true] }];
3
- const _data = { version: "1.0", parameters: { Region: j, UseFIPS: { required: b, default: a, type: "Boolean" }, Endpoint: j }, rules: [{ conditions: [{ fn: c, [r]: [k] }], rules: [{ conditions: o, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: e }, { endpoint: { url: k, properties: l, headers: l }, type: f }], type: g }, { conditions: [{ fn: c, [r]: p }], rules: [{ conditions: [{ fn: "aws.partition", [r]: p, assign: h }], rules: [{ conditions: [{ fn: d, [r]: [b, { fn: i, [r]: [m, "supportsDualStack"] }] }], rules: [{ conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, { conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }], type: g }, { error: "Invalid Configuration: Missing Region", type: e }] };
2
+ const a = false, b = true, c = "isSet", d = "booleanEquals", e = "error", f = "endpoint", g = "tree", h = "PartitionResult", i = "getAttr", j = { "required": false, "type": "string" }, k = { [s]: "Endpoint" }, l = {}, m = { [s]: h }, n = { [e]: "FIPS is enabled but this partition does not support FIPS", "type": e }, o = [{ "fn": d, [r]: [{ [s]: "UseFIPS" }, true] }], p = [{ [s]: "Region" }], q = [{ "fn": d, [r]: [{ "fn": i, [r]: [m, "supportsFIPS"] }, true] }];
3
+ const _data = { version: "1.0", parameters: { Region: j, UseFIPS: { required: b, default: a, type: "boolean" }, Endpoint: j }, rules: [{ conditions: [{ fn: c, [r]: [k] }], rules: [{ conditions: o, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: e }, { endpoint: { url: k, properties: l, headers: l }, type: f }], type: g }, { conditions: [{ fn: c, [r]: p }], rules: [{ conditions: [{ fn: "aws.partition", [r]: p, assign: h }], rules: [{ conditions: [{ fn: d, [r]: [b, { fn: i, [r]: [m, "supportsDualStack"] }] }], rules: [{ conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: l, headers: l }, type: f }], type: g }, { conditions: o, rules: [{ conditions: q, rules: [{ endpoint: { url: "https://datazone-fips.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }, n], type: g }, { endpoint: { url: "https://datazone.{Region}.{PartitionResult#dnsSuffix}", properties: l, headers: l }, type: f }], type: g }], type: g }, { error: "Invalid Configuration: Missing Region", type: e }] };
4
4
  export const ruleSet = _data;
@@ -421,6 +421,8 @@ export var ConnectionPropertiesInput;
421
421
  return visitor.sparkGlueProperties(value.sparkGlueProperties);
422
422
  if (value.s3Properties !== undefined)
423
423
  return visitor.s3Properties(value.s3Properties);
424
+ if (value.amazonQProperties !== undefined)
425
+ return visitor.amazonQProperties(value.amazonQProperties);
424
426
  return visitor._(value.$unknown[0], value.$unknown[1]);
425
427
  };
426
428
  })(ConnectionPropertiesInput || (ConnectionPropertiesInput = {}));
@@ -461,6 +463,8 @@ export var ConnectionPropertiesOutput;
461
463
  return visitor.sparkGlueProperties(value.sparkGlueProperties);
462
464
  if (value.s3Properties !== undefined)
463
465
  return visitor.s3Properties(value.s3Properties);
466
+ if (value.amazonQProperties !== undefined)
467
+ return visitor.amazonQProperties(value.amazonQProperties);
464
468
  return visitor._(value.$unknown[0], value.$unknown[1]);
465
469
  };
466
470
  })(ConnectionPropertiesOutput || (ConnectionPropertiesOutput = {}));
@@ -479,10 +483,17 @@ export var ConnectionPropertiesPatch;
479
483
  return visitor.sparkEmrProperties(value.sparkEmrProperties);
480
484
  if (value.s3Properties !== undefined)
481
485
  return visitor.s3Properties(value.s3Properties);
486
+ if (value.amazonQProperties !== undefined)
487
+ return visitor.amazonQProperties(value.amazonQProperties);
482
488
  return visitor._(value.$unknown[0], value.$unknown[1]);
483
489
  };
484
490
  })(ConnectionPropertiesPatch || (ConnectionPropertiesPatch = {}));
491
+ export const ConnectionScope = {
492
+ DOMAIN: "DOMAIN",
493
+ PROJECT: "PROJECT",
494
+ };
485
495
  export const ConnectionType = {
496
+ AMAZON_Q: "AMAZON_Q",
486
497
  ATHENA: "ATHENA",
487
498
  BIGQUERY: "BIGQUERY",
488
499
  DATABRICKS: "DATABRICKS",
@@ -788,14 +799,6 @@ export var Region;
788
799
  return visitor._(value.$unknown[0], value.$unknown[1]);
789
800
  };
790
801
  })(Region || (Region = {}));
791
- export const DeploymentMode = {
792
- ON_CREATE: "ON_CREATE",
793
- ON_DEMAND: "ON_DEMAND",
794
- };
795
- export const Status = {
796
- DISABLED: "DISABLED",
797
- ENABLED: "ENABLED",
798
- };
799
802
  export const AcceptChoiceFilterSensitiveLog = (obj) => ({
800
803
  ...obj,
801
804
  ...(obj.editedValue && { editedValue: SENSITIVE_STRING }),
@@ -1073,6 +1076,8 @@ export const ConnectionPropertiesInputFilterSensitiveLog = (obj) => {
1073
1076
  return { sparkGlueProperties: obj.sparkGlueProperties };
1074
1077
  if (obj.s3Properties !== undefined)
1075
1078
  return { s3Properties: obj.s3Properties };
1079
+ if (obj.amazonQProperties !== undefined)
1080
+ return { amazonQProperties: obj.amazonQProperties };
1076
1081
  if (obj.$unknown !== undefined)
1077
1082
  return { [obj.$unknown[0]]: "UNKNOWN" };
1078
1083
  };
@@ -1106,6 +1111,8 @@ export const ConnectionPropertiesOutputFilterSensitiveLog = (obj) => {
1106
1111
  return { sparkGlueProperties: obj.sparkGlueProperties };
1107
1112
  if (obj.s3Properties !== undefined)
1108
1113
  return { s3Properties: obj.s3Properties };
1114
+ if (obj.amazonQProperties !== undefined)
1115
+ return { amazonQProperties: obj.amazonQProperties };
1109
1116
  if (obj.$unknown !== undefined)
1110
1117
  return { [obj.$unknown[0]]: "UNKNOWN" };
1111
1118
  };
@@ -1139,6 +1146,8 @@ export const ConnectionPropertiesPatchFilterSensitiveLog = (obj) => {
1139
1146
  return { sparkEmrProperties: obj.sparkEmrProperties };
1140
1147
  if (obj.s3Properties !== undefined)
1141
1148
  return { s3Properties: obj.s3Properties };
1149
+ if (obj.amazonQProperties !== undefined)
1150
+ return { amazonQProperties: obj.amazonQProperties };
1142
1151
  if (obj.$unknown !== undefined)
1143
1152
  return { [obj.$unknown[0]]: "UNKNOWN" };
1144
1153
  };
@@ -1346,19 +1355,3 @@ export const CreateProjectOutputFilterSensitiveLog = (obj) => ({
1346
1355
  userParameters: obj.userParameters.map((item) => EnvironmentConfigurationUserParameterFilterSensitiveLog(item)),
1347
1356
  }),
1348
1357
  });
1349
- export const EnvironmentConfigurationFilterSensitiveLog = (obj) => ({
1350
- ...obj,
1351
- ...(obj.name && { name: SENSITIVE_STRING }),
1352
- ...(obj.id && { id: SENSITIVE_STRING }),
1353
- ...(obj.description && { description: SENSITIVE_STRING }),
1354
- ...(obj.awsAccount && { awsAccount: obj.awsAccount }),
1355
- ...(obj.awsRegion && { awsRegion: obj.awsRegion }),
1356
- });
1357
- export const CreateProjectProfileInputFilterSensitiveLog = (obj) => ({
1358
- ...obj,
1359
- ...(obj.name && { name: SENSITIVE_STRING }),
1360
- ...(obj.description && { description: SENSITIVE_STRING }),
1361
- ...(obj.environmentConfigurations && {
1362
- environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
1363
- }),
1364
- });
@@ -1,5 +1,13 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
- import { AccountInfoFilterSensitiveLog, AccountPoolSummaryFilterSensitiveLog, AccountSourceFilterSensitiveLog, AssetFilterSummaryFilterSensitiveLog, AssetListingFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionSummaryFilterSensitiveLog, CustomParameterFilterSensitiveLog, DetailedGlossaryTermFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
2
+ import { AccountInfoFilterSensitiveLog, AccountPoolSummaryFilterSensitiveLog, AccountSourceFilterSensitiveLog, AssetFilterSummaryFilterSensitiveLog, AssetListingFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionSummaryFilterSensitiveLog, CustomParameterFilterSensitiveLog, DetailedGlossaryTermFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
3
+ export const DeploymentMode = {
4
+ ON_CREATE: "ON_CREATE",
5
+ ON_DEMAND: "ON_DEMAND",
6
+ };
7
+ export const Status = {
8
+ DISABLED: "DISABLED",
9
+ ENABLED: "ENABLED",
10
+ };
3
11
  export const RuleAction = {
4
12
  CREATE_LISTING_CHANGE_SET: "CREATE_LISTING_CHANGE_SET",
5
13
  CREATE_SUBSCRIPTION_REQUEST: "CREATE_SUBSCRIPTION_REQUEST",
@@ -261,13 +269,22 @@ export const SortKey = {
261
269
  CREATED_AT: "CREATED_AT",
262
270
  UPDATED_AT: "UPDATED_AT",
263
271
  };
264
- export const MetadataGenerationRunStatus = {
265
- CANCELED: "CANCELED",
266
- FAILED: "FAILED",
267
- IN_PROGRESS: "IN_PROGRESS",
268
- SUBMITTED: "SUBMITTED",
269
- SUCCEEDED: "SUCCEEDED",
270
- };
272
+ export const EnvironmentConfigurationFilterSensitiveLog = (obj) => ({
273
+ ...obj,
274
+ ...(obj.name && { name: SENSITIVE_STRING }),
275
+ ...(obj.id && { id: SENSITIVE_STRING }),
276
+ ...(obj.description && { description: SENSITIVE_STRING }),
277
+ ...(obj.awsAccount && { awsAccount: obj.awsAccount }),
278
+ ...(obj.awsRegion && { awsRegion: obj.awsRegion }),
279
+ });
280
+ export const CreateProjectProfileInputFilterSensitiveLog = (obj) => ({
281
+ ...obj,
282
+ ...(obj.name && { name: SENSITIVE_STRING }),
283
+ ...(obj.description && { description: SENSITIVE_STRING }),
284
+ ...(obj.environmentConfigurations && {
285
+ environmentConfigurations: obj.environmentConfigurations.map((item) => EnvironmentConfigurationFilterSensitiveLog(item)),
286
+ }),
287
+ });
271
288
  export const CreateProjectProfileOutputFilterSensitiveLog = (obj) => ({
272
289
  ...obj,
273
290
  ...(obj.name && { name: SENSITIVE_STRING }),
@@ -1,6 +1,13 @@
1
1
  import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
- import { AccountSourceFilterSensitiveLog, AssetItemFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionPropertiesPatchFilterSensitiveLog, CustomParameterFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormEntryOutputFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
3
- import { DataProductListingItemFilterSensitiveLog, DataProductResultItemFilterSensitiveLog, ImportFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_1";
2
+ import { AccountSourceFilterSensitiveLog, AssetItemFilterSensitiveLog, AssetListingItemFilterSensitiveLog, AssetTypeItemFilterSensitiveLog, ConnectionPropertiesOutputFilterSensitiveLog, ConnectionPropertiesPatchFilterSensitiveLog, CustomParameterFilterSensitiveLog, EnvironmentConfigurationUserParameterFilterSensitiveLog, FormEntryOutputFilterSensitiveLog, FormOutputFilterSensitiveLog, PhysicalEndpointFilterSensitiveLog, SubscribedListingFilterSensitiveLog, SubscribedPrincipalFilterSensitiveLog, } from "./models_0";
3
+ import { DataProductListingItemFilterSensitiveLog, DataProductResultItemFilterSensitiveLog, EnvironmentConfigurationFilterSensitiveLog, ImportFilterSensitiveLog, UserProfileDetailsFilterSensitiveLog, } from "./models_1";
4
+ export const MetadataGenerationRunStatus = {
5
+ CANCELED: "CANCELED",
6
+ FAILED: "FAILED",
7
+ IN_PROGRESS: "IN_PROGRESS",
8
+ SUBMITTED: "SUBMITTED",
9
+ SUCCEEDED: "SUCCEEDED",
10
+ };
4
11
  export const MetadataGenerationTargetType = {
5
12
  ASSET: "ASSET",
6
13
  };
@@ -232,9 +232,11 @@ export const se_CreateConnectionCommand = async (input, context) => {
232
232
  awsLocation: (_) => _json(_),
233
233
  clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
234
234
  description: [],
235
+ enableTrustedIdentityPropagation: [],
235
236
  environmentIdentifier: [],
236
237
  name: [],
237
238
  props: (_) => _json(_),
239
+ scope: [],
238
240
  }));
239
241
  b.m("POST").h(headers).b(body);
240
242
  return b.build();
@@ -1422,8 +1424,9 @@ export const se_ListConnectionsCommand = async (input, context) => {
1422
1424
  [_sO]: [, input[_sO]],
1423
1425
  [_n]: [, input[_n]],
1424
1426
  [_eI]: [, input[_eI]],
1425
- [_pI]: [, __expectNonNull(input[_pI], `projectIdentifier`)],
1427
+ [_pI]: [, input[_pI]],
1426
1428
  [_ty]: [, input[_ty]],
1429
+ [_sc]: [, input[_sc]],
1427
1430
  });
1428
1431
  let body;
1429
1432
  b.m("GET").h(headers).q(query).b(body);
@@ -2827,6 +2830,7 @@ export const de_CreateConnectionCommand = async (output, context) => {
2827
2830
  physicalEndpoints: (_) => de_PhysicalEndpoints(_, context),
2828
2831
  projectId: __expectString,
2829
2832
  props: (_) => de_ConnectionPropertiesOutput(__expectUnion(_), context),
2833
+ scope: __expectString,
2830
2834
  type: __expectString,
2831
2835
  });
2832
2836
  Object.assign(contents, doc);
@@ -3798,6 +3802,7 @@ export const de_GetConnectionCommand = async (output, context) => {
3798
3802
  physicalEndpoints: (_) => de_PhysicalEndpoints(_, context),
3799
3803
  projectId: __expectString,
3800
3804
  props: (_) => de_ConnectionPropertiesOutput(__expectUnion(_), context),
3805
+ scope: __expectString,
3801
3806
  type: __expectString,
3802
3807
  });
3803
3808
  Object.assign(contents, doc);
@@ -5371,6 +5376,7 @@ export const de_UpdateConnectionCommand = async (output, context) => {
5371
5376
  physicalEndpoints: (_) => de_PhysicalEndpoints(_, context),
5372
5377
  projectId: __expectString,
5373
5378
  props: (_) => de_ConnectionPropertiesOutput(__expectUnion(_), context),
5379
+ scope: __expectString,
5374
5380
  type: __expectString,
5375
5381
  });
5376
5382
  Object.assign(contents, doc);
@@ -6148,6 +6154,11 @@ const de_ConnectionCredentials = (output, context) => {
6148
6154
  });
6149
6155
  };
6150
6156
  const de_ConnectionPropertiesOutput = (output, context) => {
6157
+ if (output.amazonQProperties != null) {
6158
+ return {
6159
+ amazonQProperties: _json(output.amazonQProperties),
6160
+ };
6161
+ }
6151
6162
  if (output.athenaProperties != null) {
6152
6163
  return {
6153
6164
  athenaProperties: _json(output.athenaProperties),
@@ -6208,6 +6219,7 @@ const de_ConnectionSummary = (output, context) => {
6208
6219
  physicalEndpoints: (_) => de_PhysicalEndpoints(_, context),
6209
6220
  projectId: __expectString,
6210
6221
  props: (_) => de_ConnectionPropertiesOutput(__expectUnion(_), context),
6222
+ scope: __expectString,
6211
6223
  type: __expectString,
6212
6224
  });
6213
6225
  };
@@ -6704,6 +6716,7 @@ const de_NotificationsList = (output, context) => {
6704
6716
  const de_PhysicalEndpoint = (output, context) => {
6705
6717
  return take(output, {
6706
6718
  awsLocation: _json,
6719
+ enableTrustedIdentityPropagation: __expectBoolean,
6707
6720
  glueConnection: (_) => de_GlueConnection(_, context),
6708
6721
  glueConnectionName: __expectString,
6709
6722
  host: __expectString,
@@ -7150,6 +7163,7 @@ const _sLI = "subscribedListingId";
7150
7163
  const _sO = "sortOrder";
7151
7164
  const _sRI = "subscriptionRequestIdentifier";
7152
7165
  const _sTI = "subscriptionTargetId";
7166
+ const _sc = "scope";
7153
7167
  const _su = "subjects";
7154
7168
  const _t = "timestamp";
7155
7169
  const _tA = "timestampAfter";
@@ -46,7 +46,7 @@ declare const CreateConnectionCommand_base: {
46
46
  * clientToken: "STRING_VALUE",
47
47
  * description: "STRING_VALUE",
48
48
  * domainIdentifier: "STRING_VALUE", // required
49
- * environmentIdentifier: "STRING_VALUE", // required
49
+ * environmentIdentifier: "STRING_VALUE",
50
50
  * name: "STRING_VALUE", // required
51
51
  * props: { // ConnectionPropertiesInput Union: only one key present
52
52
  * athenaProperties: { // AthenaPropertiesInput
@@ -173,7 +173,14 @@ declare const CreateConnectionCommand_base: {
173
173
  * s3Uri: "STRING_VALUE", // required
174
174
  * s3AccessGrantLocationId: "STRING_VALUE",
175
175
  * },
176
+ * amazonQProperties: { // AmazonQPropertiesInput
177
+ * isEnabled: true || false, // required
178
+ * profileArn: "STRING_VALUE",
179
+ * authMode: "STRING_VALUE",
180
+ * },
176
181
  * },
182
+ * enableTrustedIdentityPropagation: true || false,
183
+ * scope: "DOMAIN" || "PROJECT",
177
184
  * };
178
185
  * const command = new CreateConnectionCommand(input);
179
186
  * const response = await client.send(command);
@@ -196,7 +203,7 @@ declare const CreateConnectionCommand_base: {
196
203
  * // glueConnection: { // GlueConnection
197
204
  * // name: "STRING_VALUE",
198
205
  * // description: "STRING_VALUE",
199
- * // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA",
206
+ * // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q",
200
207
  * // matchCriteria: [ // MatchCriteria
201
208
  * // "STRING_VALUE",
202
209
  * // ],
@@ -258,6 +265,7 @@ declare const CreateConnectionCommand_base: {
258
265
  * // "SPARK" || "ATHENA" || "PYTHON",
259
266
  * // ],
260
267
  * // },
268
+ * // enableTrustedIdentityPropagation: true || false,
261
269
  * // host: "STRING_VALUE",
262
270
  * // port: Number("int"),
263
271
  * // protocol: "ATHENA" || "GLUE_INTERACTIVE_SESSION" || "HTTPS" || "JDBC" || "LIVY" || "ODBC" || "PRISM",
@@ -348,8 +356,14 @@ declare const CreateConnectionCommand_base: {
348
356
  * // status: "CREATING" || "CREATE_FAILED" || "DELETING" || "DELETE_FAILED" || "READY" || "UPDATING" || "UPDATE_FAILED" || "DELETED",
349
357
  * // errorMessage: "STRING_VALUE",
350
358
  * // },
359
+ * // amazonQProperties: { // AmazonQPropertiesOutput
360
+ * // isEnabled: true || false, // required
361
+ * // profileArn: "STRING_VALUE",
362
+ * // authMode: "STRING_VALUE",
363
+ * // },
351
364
  * // },
352
- * // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA", // required
365
+ * // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q", // required
366
+ * // scope: "DOMAIN" || "PROJECT",
353
367
  * // };
354
368
  *
355
369
  * ```
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
- import { CreateProjectProfileInput } from "../models/models_0";
5
- import { CreateProjectProfileOutput } from "../models/models_1";
4
+ import { CreateProjectProfileInput, CreateProjectProfileOutput } from "../models/models_1";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -69,7 +69,7 @@ declare const GetConnectionCommand_base: {
69
69
  * // glueConnection: { // GlueConnection
70
70
  * // name: "STRING_VALUE",
71
71
  * // description: "STRING_VALUE",
72
- * // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA",
72
+ * // connectionType: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q",
73
73
  * // matchCriteria: [ // MatchCriteria
74
74
  * // "STRING_VALUE",
75
75
  * // ],
@@ -131,6 +131,7 @@ declare const GetConnectionCommand_base: {
131
131
  * // "SPARK" || "ATHENA" || "PYTHON",
132
132
  * // ],
133
133
  * // },
134
+ * // enableTrustedIdentityPropagation: true || false,
134
135
  * // host: "STRING_VALUE",
135
136
  * // port: Number("int"),
136
137
  * // protocol: "ATHENA" || "GLUE_INTERACTIVE_SESSION" || "HTTPS" || "JDBC" || "LIVY" || "ODBC" || "PRISM",
@@ -221,8 +222,14 @@ declare const GetConnectionCommand_base: {
221
222
  * // status: "CREATING" || "CREATE_FAILED" || "DELETING" || "DELETE_FAILED" || "READY" || "UPDATING" || "UPDATE_FAILED" || "DELETED",
222
223
  * // errorMessage: "STRING_VALUE",
223
224
  * // },
225
+ * // amazonQProperties: { // AmazonQPropertiesOutput
226
+ * // isEnabled: true || false, // required
227
+ * // profileArn: "STRING_VALUE",
228
+ * // authMode: "STRING_VALUE",
229
+ * // },
224
230
  * // },
225
- * // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA", // required
231
+ * // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q", // required
232
+ * // scope: "DOMAIN" || "PROJECT",
226
233
  * // };
227
234
  *
228
235
  * ```
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
4
- import { GetMetadataGenerationRunInput } from "../models/models_1";
5
- import { GetMetadataGenerationRunOutput } from "../models/models_2";
4
+ import { GetMetadataGenerationRunInput, GetMetadataGenerationRunOutput } from "../models/models_2";
6
5
  /**
7
6
  * @public
8
7
  */