@aws-sdk/client-datazone 3.916.0 → 3.917.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.
@@ -4450,6 +4450,22 @@ export interface IamPropertiesInput {
4450
4450
  */
4451
4451
  glueLineageSyncEnabled?: boolean | undefined;
4452
4452
  }
4453
+ /**
4454
+ * <p>The MLflow properties of a connection.</p>
4455
+ * @public
4456
+ */
4457
+ export interface MlflowPropertiesInput {
4458
+ /**
4459
+ * <p>The name of the tracking server as part of the MLflow properties of a connection.</p>
4460
+ * @public
4461
+ */
4462
+ trackingServerName?: string | undefined;
4463
+ /**
4464
+ * <p>The tracking server ARN as part of the MLflow properties of a connection.</p>
4465
+ * @public
4466
+ */
4467
+ trackingServerArn?: string | undefined;
4468
+ }
4453
4469
  /**
4454
4470
  * <p>The username and password of a connection.</p>
4455
4471
  * @public
@@ -4736,7 +4752,7 @@ export interface SparkGluePropertiesInput {
4736
4752
  * <p>The properties of a connection.</p>
4737
4753
  * @public
4738
4754
  */
4739
- export type ConnectionPropertiesInput = ConnectionPropertiesInput.AmazonQPropertiesMember | ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.S3PropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.$UnknownMember;
4755
+ export type ConnectionPropertiesInput = ConnectionPropertiesInput.AmazonQPropertiesMember | ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.MlflowPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.S3PropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.$UnknownMember;
4740
4756
  /**
4741
4757
  * @public
4742
4758
  */
@@ -4755,6 +4771,7 @@ export declare namespace ConnectionPropertiesInput {
4755
4771
  sparkGlueProperties?: never;
4756
4772
  s3Properties?: never;
4757
4773
  amazonQProperties?: never;
4774
+ mlflowProperties?: never;
4758
4775
  $unknown?: never;
4759
4776
  }
4760
4777
  /**
@@ -4771,6 +4788,7 @@ export declare namespace ConnectionPropertiesInput {
4771
4788
  sparkGlueProperties?: never;
4772
4789
  s3Properties?: never;
4773
4790
  amazonQProperties?: never;
4791
+ mlflowProperties?: never;
4774
4792
  $unknown?: never;
4775
4793
  }
4776
4794
  /**
@@ -4787,6 +4805,7 @@ export declare namespace ConnectionPropertiesInput {
4787
4805
  sparkGlueProperties?: never;
4788
4806
  s3Properties?: never;
4789
4807
  amazonQProperties?: never;
4808
+ mlflowProperties?: never;
4790
4809
  $unknown?: never;
4791
4810
  }
4792
4811
  /**
@@ -4803,6 +4822,7 @@ export declare namespace ConnectionPropertiesInput {
4803
4822
  sparkGlueProperties?: never;
4804
4823
  s3Properties?: never;
4805
4824
  amazonQProperties?: never;
4825
+ mlflowProperties?: never;
4806
4826
  $unknown?: never;
4807
4827
  }
4808
4828
  /**
@@ -4819,6 +4839,7 @@ export declare namespace ConnectionPropertiesInput {
4819
4839
  sparkGlueProperties?: never;
4820
4840
  s3Properties?: never;
4821
4841
  amazonQProperties?: never;
4842
+ mlflowProperties?: never;
4822
4843
  $unknown?: never;
4823
4844
  }
4824
4845
  /**
@@ -4835,6 +4856,7 @@ export declare namespace ConnectionPropertiesInput {
4835
4856
  sparkGlueProperties?: never;
4836
4857
  s3Properties?: never;
4837
4858
  amazonQProperties?: never;
4859
+ mlflowProperties?: never;
4838
4860
  $unknown?: never;
4839
4861
  }
4840
4862
  /**
@@ -4851,6 +4873,7 @@ export declare namespace ConnectionPropertiesInput {
4851
4873
  sparkGlueProperties: SparkGluePropertiesInput;
4852
4874
  s3Properties?: never;
4853
4875
  amazonQProperties?: never;
4876
+ mlflowProperties?: never;
4854
4877
  $unknown?: never;
4855
4878
  }
4856
4879
  /**
@@ -4867,6 +4890,7 @@ export declare namespace ConnectionPropertiesInput {
4867
4890
  sparkGlueProperties?: never;
4868
4891
  s3Properties: S3PropertiesInput;
4869
4892
  amazonQProperties?: never;
4893
+ mlflowProperties?: never;
4870
4894
  $unknown?: never;
4871
4895
  }
4872
4896
  /**
@@ -4883,6 +4907,24 @@ export declare namespace ConnectionPropertiesInput {
4883
4907
  sparkGlueProperties?: never;
4884
4908
  s3Properties?: never;
4885
4909
  amazonQProperties: AmazonQPropertiesInput;
4910
+ mlflowProperties?: never;
4911
+ $unknown?: never;
4912
+ }
4913
+ /**
4914
+ * <p>The MLflow properties of a connection.</p>
4915
+ * @public
4916
+ */
4917
+ interface MlflowPropertiesMember {
4918
+ athenaProperties?: never;
4919
+ glueProperties?: never;
4920
+ hyperPodProperties?: never;
4921
+ iamProperties?: never;
4922
+ redshiftProperties?: never;
4923
+ sparkEmrProperties?: never;
4924
+ sparkGlueProperties?: never;
4925
+ s3Properties?: never;
4926
+ amazonQProperties?: never;
4927
+ mlflowProperties: MlflowPropertiesInput;
4886
4928
  $unknown?: never;
4887
4929
  }
4888
4930
  /**
@@ -4898,6 +4940,7 @@ export declare namespace ConnectionPropertiesInput {
4898
4940
  sparkGlueProperties?: never;
4899
4941
  s3Properties?: never;
4900
4942
  amazonQProperties?: never;
4943
+ mlflowProperties?: never;
4901
4944
  $unknown: [string, any];
4902
4945
  }
4903
4946
  interface Visitor<T> {
@@ -4910,6 +4953,7 @@ export declare namespace ConnectionPropertiesInput {
4910
4953
  sparkGlueProperties: (value: SparkGluePropertiesInput) => T;
4911
4954
  s3Properties: (value: S3PropertiesInput) => T;
4912
4955
  amazonQProperties: (value: AmazonQPropertiesInput) => T;
4956
+ mlflowProperties: (value: MlflowPropertiesInput) => T;
4913
4957
  _: (name: string, value: any) => T;
4914
4958
  }
4915
4959
  const visit: <T>(value: ConnectionPropertiesInput, visitor: Visitor<T>) => T;
@@ -4997,6 +5041,22 @@ export interface IamPropertiesOutput {
4997
5041
  */
4998
5042
  glueLineageSyncEnabled?: boolean | undefined;
4999
5043
  }
5044
+ /**
5045
+ * <p>The MLflow properties of a connection.</p>
5046
+ * @public
5047
+ */
5048
+ export interface MlflowPropertiesOutput {
5049
+ /**
5050
+ * <p>The name of the tracking server as part of the MLflow properties of a connection.</p>
5051
+ * @public
5052
+ */
5053
+ trackingServerName?: string | undefined;
5054
+ /**
5055
+ * <p>The tracking server ARN as part of the MLflow properties of a connection.</p>
5056
+ * @public
5057
+ */
5058
+ trackingServerArn?: string | undefined;
5059
+ }
5000
5060
  /**
5001
5061
  * <p>The Amaon Redshift lineage sync configuration.</p>
5002
5062
  * @public
@@ -5249,7 +5309,7 @@ export interface SparkGluePropertiesOutput {
5249
5309
  * <p>The properties of a connection.</p>
5250
5310
  * @public
5251
5311
  */
5252
- export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AmazonQPropertiesMember | ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.S3PropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
5312
+ export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AmazonQPropertiesMember | ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.MlflowPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.S3PropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
5253
5313
  /**
5254
5314
  * @public
5255
5315
  */
@@ -5268,6 +5328,7 @@ export declare namespace ConnectionPropertiesOutput {
5268
5328
  sparkGlueProperties?: never;
5269
5329
  s3Properties?: never;
5270
5330
  amazonQProperties?: never;
5331
+ mlflowProperties?: never;
5271
5332
  $unknown?: never;
5272
5333
  }
5273
5334
  /**
@@ -5284,6 +5345,7 @@ export declare namespace ConnectionPropertiesOutput {
5284
5345
  sparkGlueProperties?: never;
5285
5346
  s3Properties?: never;
5286
5347
  amazonQProperties?: never;
5348
+ mlflowProperties?: never;
5287
5349
  $unknown?: never;
5288
5350
  }
5289
5351
  /**
@@ -5300,6 +5362,7 @@ export declare namespace ConnectionPropertiesOutput {
5300
5362
  sparkGlueProperties?: never;
5301
5363
  s3Properties?: never;
5302
5364
  amazonQProperties?: never;
5365
+ mlflowProperties?: never;
5303
5366
  $unknown?: never;
5304
5367
  }
5305
5368
  /**
@@ -5316,6 +5379,7 @@ export declare namespace ConnectionPropertiesOutput {
5316
5379
  sparkGlueProperties?: never;
5317
5380
  s3Properties?: never;
5318
5381
  amazonQProperties?: never;
5382
+ mlflowProperties?: never;
5319
5383
  $unknown?: never;
5320
5384
  }
5321
5385
  /**
@@ -5332,6 +5396,7 @@ export declare namespace ConnectionPropertiesOutput {
5332
5396
  sparkGlueProperties?: never;
5333
5397
  s3Properties?: never;
5334
5398
  amazonQProperties?: never;
5399
+ mlflowProperties?: never;
5335
5400
  $unknown?: never;
5336
5401
  }
5337
5402
  /**
@@ -5348,6 +5413,7 @@ export declare namespace ConnectionPropertiesOutput {
5348
5413
  sparkGlueProperties?: never;
5349
5414
  s3Properties?: never;
5350
5415
  amazonQProperties?: never;
5416
+ mlflowProperties?: never;
5351
5417
  $unknown?: never;
5352
5418
  }
5353
5419
  /**
@@ -5364,6 +5430,7 @@ export declare namespace ConnectionPropertiesOutput {
5364
5430
  sparkGlueProperties: SparkGluePropertiesOutput;
5365
5431
  s3Properties?: never;
5366
5432
  amazonQProperties?: never;
5433
+ mlflowProperties?: never;
5367
5434
  $unknown?: never;
5368
5435
  }
5369
5436
  /**
@@ -5380,6 +5447,7 @@ export declare namespace ConnectionPropertiesOutput {
5380
5447
  sparkGlueProperties?: never;
5381
5448
  s3Properties: S3PropertiesOutput;
5382
5449
  amazonQProperties?: never;
5450
+ mlflowProperties?: never;
5383
5451
  $unknown?: never;
5384
5452
  }
5385
5453
  /**
@@ -5396,6 +5464,24 @@ export declare namespace ConnectionPropertiesOutput {
5396
5464
  sparkGlueProperties?: never;
5397
5465
  s3Properties?: never;
5398
5466
  amazonQProperties: AmazonQPropertiesOutput;
5467
+ mlflowProperties?: never;
5468
+ $unknown?: never;
5469
+ }
5470
+ /**
5471
+ * <p>The MLflow properties of a connection.</p>
5472
+ * @public
5473
+ */
5474
+ interface MlflowPropertiesMember {
5475
+ athenaProperties?: never;
5476
+ glueProperties?: never;
5477
+ hyperPodProperties?: never;
5478
+ iamProperties?: never;
5479
+ redshiftProperties?: never;
5480
+ sparkEmrProperties?: never;
5481
+ sparkGlueProperties?: never;
5482
+ s3Properties?: never;
5483
+ amazonQProperties?: never;
5484
+ mlflowProperties: MlflowPropertiesOutput;
5399
5485
  $unknown?: never;
5400
5486
  }
5401
5487
  /**
@@ -5411,6 +5497,7 @@ export declare namespace ConnectionPropertiesOutput {
5411
5497
  sparkGlueProperties?: never;
5412
5498
  s3Properties?: never;
5413
5499
  amazonQProperties?: never;
5500
+ mlflowProperties?: never;
5414
5501
  $unknown: [string, any];
5415
5502
  }
5416
5503
  interface Visitor<T> {
@@ -5423,6 +5510,7 @@ export declare namespace ConnectionPropertiesOutput {
5423
5510
  sparkGlueProperties: (value: SparkGluePropertiesOutput) => T;
5424
5511
  s3Properties: (value: S3PropertiesOutput) => T;
5425
5512
  amazonQProperties: (value: AmazonQPropertiesOutput) => T;
5513
+ mlflowProperties: (value: MlflowPropertiesOutput) => T;
5426
5514
  _: (name: string, value: any) => T;
5427
5515
  }
5428
5516
  const visit: <T>(value: ConnectionPropertiesOutput, visitor: Visitor<T>) => T;
@@ -5470,6 +5558,22 @@ export interface IamPropertiesPatch {
5470
5558
  */
5471
5559
  glueLineageSyncEnabled?: boolean | undefined;
5472
5560
  }
5561
+ /**
5562
+ * <p>The MLflow properties of a connection.</p>
5563
+ * @public
5564
+ */
5565
+ export interface MlflowPropertiesPatch {
5566
+ /**
5567
+ * <p>The name of the tracking server as part of the MLflow properties of a connection.</p>
5568
+ * @public
5569
+ */
5570
+ trackingServerName?: string | undefined;
5571
+ /**
5572
+ * <p>The tracking server ARN as part of the MLflow properties of a connection.</p>
5573
+ * @public
5574
+ */
5575
+ trackingServerArn?: string | undefined;
5576
+ }
5473
5577
  /**
5474
5578
  * <p>Amazon Redshift properties patch.</p>
5475
5579
  * @public
@@ -5572,7 +5676,7 @@ export interface SparkEmrPropertiesPatch {
5572
5676
  * <p>The connection properties patch.</p>
5573
5677
  * @public
5574
5678
  */
5575
- export type ConnectionPropertiesPatch = ConnectionPropertiesPatch.AmazonQPropertiesMember | ConnectionPropertiesPatch.AthenaPropertiesMember | ConnectionPropertiesPatch.GluePropertiesMember | ConnectionPropertiesPatch.IamPropertiesMember | ConnectionPropertiesPatch.RedshiftPropertiesMember | ConnectionPropertiesPatch.S3PropertiesMember | ConnectionPropertiesPatch.SparkEmrPropertiesMember | ConnectionPropertiesPatch.$UnknownMember;
5679
+ export type ConnectionPropertiesPatch = ConnectionPropertiesPatch.AmazonQPropertiesMember | ConnectionPropertiesPatch.AthenaPropertiesMember | ConnectionPropertiesPatch.GluePropertiesMember | ConnectionPropertiesPatch.IamPropertiesMember | ConnectionPropertiesPatch.MlflowPropertiesMember | ConnectionPropertiesPatch.RedshiftPropertiesMember | ConnectionPropertiesPatch.S3PropertiesMember | ConnectionPropertiesPatch.SparkEmrPropertiesMember | ConnectionPropertiesPatch.$UnknownMember;
5576
5680
  /**
5577
5681
  * @public
5578
5682
  */
@@ -5589,6 +5693,7 @@ export declare namespace ConnectionPropertiesPatch {
5589
5693
  sparkEmrProperties?: never;
5590
5694
  s3Properties?: never;
5591
5695
  amazonQProperties?: never;
5696
+ mlflowProperties?: never;
5592
5697
  $unknown?: never;
5593
5698
  }
5594
5699
  /**
@@ -5603,6 +5708,7 @@ export declare namespace ConnectionPropertiesPatch {
5603
5708
  sparkEmrProperties?: never;
5604
5709
  s3Properties?: never;
5605
5710
  amazonQProperties?: never;
5711
+ mlflowProperties?: never;
5606
5712
  $unknown?: never;
5607
5713
  }
5608
5714
  /**
@@ -5617,6 +5723,7 @@ export declare namespace ConnectionPropertiesPatch {
5617
5723
  sparkEmrProperties?: never;
5618
5724
  s3Properties?: never;
5619
5725
  amazonQProperties?: never;
5726
+ mlflowProperties?: never;
5620
5727
  $unknown?: never;
5621
5728
  }
5622
5729
  /**
@@ -5631,6 +5738,7 @@ export declare namespace ConnectionPropertiesPatch {
5631
5738
  sparkEmrProperties?: never;
5632
5739
  s3Properties?: never;
5633
5740
  amazonQProperties?: never;
5741
+ mlflowProperties?: never;
5634
5742
  $unknown?: never;
5635
5743
  }
5636
5744
  /**
@@ -5645,6 +5753,7 @@ export declare namespace ConnectionPropertiesPatch {
5645
5753
  sparkEmrProperties: SparkEmrPropertiesPatch;
5646
5754
  s3Properties?: never;
5647
5755
  amazonQProperties?: never;
5756
+ mlflowProperties?: never;
5648
5757
  $unknown?: never;
5649
5758
  }
5650
5759
  /**
@@ -5659,6 +5768,7 @@ export declare namespace ConnectionPropertiesPatch {
5659
5768
  sparkEmrProperties?: never;
5660
5769
  s3Properties: S3PropertiesPatch;
5661
5770
  amazonQProperties?: never;
5771
+ mlflowProperties?: never;
5662
5772
  $unknown?: never;
5663
5773
  }
5664
5774
  /**
@@ -5673,6 +5783,22 @@ export declare namespace ConnectionPropertiesPatch {
5673
5783
  sparkEmrProperties?: never;
5674
5784
  s3Properties?: never;
5675
5785
  amazonQProperties: AmazonQPropertiesPatch;
5786
+ mlflowProperties?: never;
5787
+ $unknown?: never;
5788
+ }
5789
+ /**
5790
+ * <p>The MLflow properties of a connection.</p>
5791
+ * @public
5792
+ */
5793
+ interface MlflowPropertiesMember {
5794
+ athenaProperties?: never;
5795
+ glueProperties?: never;
5796
+ iamProperties?: never;
5797
+ redshiftProperties?: never;
5798
+ sparkEmrProperties?: never;
5799
+ s3Properties?: never;
5800
+ amazonQProperties?: never;
5801
+ mlflowProperties: MlflowPropertiesPatch;
5676
5802
  $unknown?: never;
5677
5803
  }
5678
5804
  /**
@@ -5686,6 +5812,7 @@ export declare namespace ConnectionPropertiesPatch {
5686
5812
  sparkEmrProperties?: never;
5687
5813
  s3Properties?: never;
5688
5814
  amazonQProperties?: never;
5815
+ mlflowProperties?: never;
5689
5816
  $unknown: [string, any];
5690
5817
  }
5691
5818
  interface Visitor<T> {
@@ -5696,6 +5823,7 @@ export declare namespace ConnectionPropertiesPatch {
5696
5823
  sparkEmrProperties: (value: SparkEmrPropertiesPatch) => T;
5697
5824
  s3Properties: (value: S3PropertiesPatch) => T;
5698
5825
  amazonQProperties: (value: AmazonQPropertiesPatch) => T;
5826
+ mlflowProperties: (value: MlflowPropertiesPatch) => T;
5699
5827
  _: (name: string, value: any) => T;
5700
5828
  }
5701
5829
  const visit: <T>(value: ConnectionPropertiesPatch, visitor: Visitor<T>) => T;
@@ -5725,6 +5853,7 @@ export declare const ConnectionType: {
5725
5853
  readonly DYNAMODB: "DYNAMODB";
5726
5854
  readonly HYPERPOD: "HYPERPOD";
5727
5855
  readonly IAM: "IAM";
5856
+ readonly MLFLOW: "MLFLOW";
5728
5857
  readonly MYSQL: "MYSQL";
5729
5858
  readonly OPENSEARCH: "OPENSEARCH";
5730
5859
  readonly ORACLE: "ORACLE";
@@ -8979,90 +9108,6 @@ export interface CreateProjectMembershipInput {
8979
9108
  */
8980
9109
  export interface CreateProjectMembershipOutput {
8981
9110
  }
8982
- /**
8983
- * <p>The Amazon Web Services Region.</p>
8984
- * @public
8985
- */
8986
- export type Region = Region.RegionNameMember | Region.RegionNamePathMember | Region.$UnknownMember;
8987
- /**
8988
- * @public
8989
- */
8990
- export declare namespace Region {
8991
- /**
8992
- * <p>The Amazon Web Services Region name.</p>
8993
- * @public
8994
- */
8995
- interface RegionNameMember {
8996
- regionName: string;
8997
- regionNamePath?: never;
8998
- $unknown?: never;
8999
- }
9000
- /**
9001
- * <p>The region name path.</p>
9002
- * @public
9003
- */
9004
- interface RegionNamePathMember {
9005
- regionName?: never;
9006
- regionNamePath: string;
9007
- $unknown?: never;
9008
- }
9009
- /**
9010
- * @public
9011
- */
9012
- interface $UnknownMember {
9013
- regionName?: never;
9014
- regionNamePath?: never;
9015
- $unknown: [string, any];
9016
- }
9017
- interface Visitor<T> {
9018
- regionName: (value: string) => T;
9019
- regionNamePath: (value: string) => T;
9020
- _: (name: string, value: any) => T;
9021
- }
9022
- const visit: <T>(value: Region, visitor: Visitor<T>) => T;
9023
- }
9024
- /**
9025
- * <p>The environment configuration parameter.</p>
9026
- * @public
9027
- */
9028
- export interface EnvironmentConfigurationParameter {
9029
- /**
9030
- * <p>The name of the environment configuration parameter.</p>
9031
- * @public
9032
- */
9033
- name?: string | undefined;
9034
- /**
9035
- * <p>The value of the environment configuration parameter.</p>
9036
- * @public
9037
- */
9038
- value?: string | undefined;
9039
- /**
9040
- * <p>Specifies whether the environment parameter is editable.</p>
9041
- * @public
9042
- */
9043
- isEditable?: boolean | undefined;
9044
- }
9045
- /**
9046
- * <p>The details of the environment configuration parameter.</p>
9047
- * @public
9048
- */
9049
- export interface EnvironmentConfigurationParametersDetails {
9050
- /**
9051
- * <p>Ssm path environment configuration parameters.</p>
9052
- * @public
9053
- */
9054
- ssmPath?: string | undefined;
9055
- /**
9056
- * <p>The parameter overrides.</p>
9057
- * @public
9058
- */
9059
- parameterOverrides?: EnvironmentConfigurationParameter[] | undefined;
9060
- /**
9061
- * <p>The resolved environment configuration parameters.</p>
9062
- * @public
9063
- */
9064
- resolvedParameters?: EnvironmentConfigurationParameter[] | undefined;
9065
- }
9066
9111
  /**
9067
9112
  * @internal
9068
9113
  */
@@ -1,4 +1,88 @@
1
- import { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetRevision, AssetScope, AssetTargetNameMap, AssetTypesForRule, AwsAccount, ConfigurableEnvironmentAction, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionScope, ConnectionSummary, ConnectionType, CustomParameter, DataProductItem, DataProductStatus, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainStatus, DomainUnitOwnerProperties, DomainVersion, EnableSetting, EnvironmentConfigurationParametersDetails, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentStatus, FilterStatus, FormInput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, ListingStatus, ManagedPolicyType, MatchRationaleItem, Member, Model, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, RecommendationConfiguration, Region, ResolutionStrategy, Resource, RuleScopeSelectionMode, ScheduleConfiguration, SingleSignOn, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, UserDesignation } from "./models_0";
1
+ import { AccountInfo, AccountPoolSummary, AccountSource, ActionParameters, AssetFilterSummary, AssetListing, AssetRevision, AssetScope, AssetTargetNameMap, AssetTypesForRule, AwsAccount, ConfigurableEnvironmentAction, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionScope, ConnectionSummary, ConnectionType, CustomParameter, DataProductItem, DataProductStatus, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainStatus, DomainUnitOwnerProperties, DomainVersion, EnableSetting, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentStatus, FilterStatus, FormInput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, ListingStatus, ManagedPolicyType, MatchRationaleItem, Member, Model, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, RecommendationConfiguration, ResolutionStrategy, Resource, RuleScopeSelectionMode, ScheduleConfiguration, SingleSignOn, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, UserDesignation } from "./models_0";
2
+ /**
3
+ * <p>The Amazon Web Services Region.</p>
4
+ * @public
5
+ */
6
+ export type Region = Region.RegionNameMember | Region.RegionNamePathMember | Region.$UnknownMember;
7
+ /**
8
+ * @public
9
+ */
10
+ export declare namespace Region {
11
+ /**
12
+ * <p>The Amazon Web Services Region name.</p>
13
+ * @public
14
+ */
15
+ interface RegionNameMember {
16
+ regionName: string;
17
+ regionNamePath?: never;
18
+ $unknown?: never;
19
+ }
20
+ /**
21
+ * <p>The region name path.</p>
22
+ * @public
23
+ */
24
+ interface RegionNamePathMember {
25
+ regionName?: never;
26
+ regionNamePath: string;
27
+ $unknown?: never;
28
+ }
29
+ /**
30
+ * @public
31
+ */
32
+ interface $UnknownMember {
33
+ regionName?: never;
34
+ regionNamePath?: never;
35
+ $unknown: [string, any];
36
+ }
37
+ interface Visitor<T> {
38
+ regionName: (value: string) => T;
39
+ regionNamePath: (value: string) => T;
40
+ _: (name: string, value: any) => T;
41
+ }
42
+ const visit: <T>(value: Region, visitor: Visitor<T>) => T;
43
+ }
44
+ /**
45
+ * <p>The environment configuration parameter.</p>
46
+ * @public
47
+ */
48
+ export interface EnvironmentConfigurationParameter {
49
+ /**
50
+ * <p>The name of the environment configuration parameter.</p>
51
+ * @public
52
+ */
53
+ name?: string | undefined;
54
+ /**
55
+ * <p>The value of the environment configuration parameter.</p>
56
+ * @public
57
+ */
58
+ value?: string | undefined;
59
+ /**
60
+ * <p>Specifies whether the environment parameter is editable.</p>
61
+ * @public
62
+ */
63
+ isEditable?: boolean | undefined;
64
+ }
65
+ /**
66
+ * <p>The details of the environment configuration parameter.</p>
67
+ * @public
68
+ */
69
+ export interface EnvironmentConfigurationParametersDetails {
70
+ /**
71
+ * <p>Ssm path environment configuration parameters.</p>
72
+ * @public
73
+ */
74
+ ssmPath?: string | undefined;
75
+ /**
76
+ * <p>The parameter overrides.</p>
77
+ * @public
78
+ */
79
+ parameterOverrides?: EnvironmentConfigurationParameter[] | undefined;
80
+ /**
81
+ * <p>The resolved environment configuration parameters.</p>
82
+ * @public
83
+ */
84
+ resolvedParameters?: EnvironmentConfigurationParameter[] | undefined;
85
+ }
2
86
  /**
3
87
  * @public
4
88
  * @enum
@@ -8881,41 +8965,6 @@ export interface SubscriptionTargetSummary {
8881
8965
  */
8882
8966
  provider: string | undefined;
8883
8967
  }
8884
- /**
8885
- * @public
8886
- */
8887
- export interface ListSubscriptionTargetsOutput {
8888
- /**
8889
- * <p>The results of the <code>ListSubscriptionTargets</code> action.</p>
8890
- * @public
8891
- */
8892
- items: SubscriptionTargetSummary[] | undefined;
8893
- /**
8894
- * <p>When the number of subscription targets is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of subscription targets, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionTargets</code> to list the next set of subscription targets.</p>
8895
- * @public
8896
- */
8897
- nextToken?: string | undefined;
8898
- }
8899
- /**
8900
- * @public
8901
- */
8902
- export interface ListTagsForResourceRequest {
8903
- /**
8904
- * <p>The ARN of the resource whose tags you want to list.</p>
8905
- * @public
8906
- */
8907
- resourceArn: string | undefined;
8908
- }
8909
- /**
8910
- * @public
8911
- */
8912
- export interface ListTagsForResourceResponse {
8913
- /**
8914
- * <p>The tags of the specified resource.</p>
8915
- * @public
8916
- */
8917
- tags?: Record<string, string> | undefined;
8918
- }
8919
8968
  /**
8920
8969
  * @internal
8921
8970
  */
@@ -9248,7 +9297,3 @@ export declare const ListSubscriptionsOutputFilterSensitiveLog: (obj: ListSubscr
9248
9297
  * @internal
9249
9298
  */
9250
9299
  export declare const SubscriptionTargetSummaryFilterSensitiveLog: (obj: SubscriptionTargetSummary) => any;
9251
- /**
9252
- * @internal
9253
- */
9254
- export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (obj: ListSubscriptionTargetsOutput) => any;
@@ -1,5 +1,40 @@
1
1
  import { AccountSource, ActionParameters, AggregationListItem, AggregationOutput, AssetItem, AssetListingItem, AssetTypeItem, AwsLocation, ColumnFilterConfiguration, ConfigurableEnvironmentAction, ConnectionPropertiesOutput, ConnectionPropertiesPatch, ConnectionScope, ConnectionType, CustomParameter, DataZoneEntityType, Deployment, DeploymentProperties, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentParameter, EnvironmentStatus, FilterStatus, FormEntryOutput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GroupProfileStatus, ManagedPolicyType, MatchRationaleItem, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, ResolutionStrategy, Resource, RowFilterExpression, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, TimeSeriesDataPointSummaryFormOutput } from "./models_0";
2
- import { DataProductListingItem, DataProductResultItem, EnvironmentConfiguration, FailureCause, GrantedEntity, Import, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, SortOrder, Status, SubscribedAsset, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionTargetForm, TimeSeriesDataPointFormOutput, TimeSeriesEntityType, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_1";
2
+ import { DataProductListingItem, DataProductResultItem, EnvironmentConfiguration, FailureCause, GrantedEntity, Import, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, SortOrder, Status, SubscribedAsset, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionTargetForm, SubscriptionTargetSummary, TimeSeriesDataPointFormOutput, TimeSeriesEntityType, UserProfileDetails, UserProfileStatus, UserProfileType } from "./models_1";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface ListSubscriptionTargetsOutput {
7
+ /**
8
+ * <p>The results of the <code>ListSubscriptionTargets</code> action.</p>
9
+ * @public
10
+ */
11
+ items: SubscriptionTargetSummary[] | undefined;
12
+ /**
13
+ * <p>When the number of subscription targets is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of subscription targets, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListSubscriptionTargets</code> to list the next set of subscription targets.</p>
14
+ * @public
15
+ */
16
+ nextToken?: string | undefined;
17
+ }
18
+ /**
19
+ * @public
20
+ */
21
+ export interface ListTagsForResourceRequest {
22
+ /**
23
+ * <p>The ARN of the resource whose tags you want to list.</p>
24
+ * @public
25
+ */
26
+ resourceArn: string | undefined;
27
+ }
28
+ /**
29
+ * @public
30
+ */
31
+ export interface ListTagsForResourceResponse {
32
+ /**
33
+ * <p>The tags of the specified resource.</p>
34
+ * @public
35
+ */
36
+ tags?: Record<string, string> | undefined;
37
+ }
3
38
  /**
4
39
  * @public
5
40
  */
@@ -3799,6 +3834,10 @@ export interface UpdateAssetFilterOutput {
3799
3834
  */
3800
3835
  effectiveRowFilter?: string | undefined;
3801
3836
  }
3837
+ /**
3838
+ * @internal
3839
+ */
3840
+ export declare const ListSubscriptionTargetsOutputFilterSensitiveLog: (obj: ListSubscriptionTargetsOutput) => any;
3802
3841
  /**
3803
3842
  * @internal
3804
3843
  */
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../DataZoneClient";
8
- import {
9
- ListSubscriptionTargetsInput,
10
- ListSubscriptionTargetsOutput,
11
- } from "../models/models_1";
8
+ import { ListSubscriptionTargetsInput } from "../models/models_1";
9
+ import { ListSubscriptionTargetsOutput } from "../models/models_2";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface ListSubscriptionTargetsCommandInput