@aws-sdk/client-datazone 3.994.0 → 3.996.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +17 -18
- package/dist-cjs/schemas/schemas_0.js +36 -9
- package/dist-es/schemas/schemas_0.js +31 -4
- package/dist-types/commands/CreateConnectionCommand.d.ts +8 -0
- package/dist-types/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataProductCommand.d.ts +1 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +4 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +4 -0
- package/dist-types/commands/SearchTypesCommand.d.ts +1 -2
- package/dist-types/commands/SearchUserProfilesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +161 -78
- package/dist-types/models/models_1.d.ts +76 -97
- package/dist-types/models/models_2.d.ts +98 -2
- package/dist-types/schemas/schemas_0.d.ts +4 -0
- package/dist-types/ts3.4/commands/CreateUserProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteDataProductCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchTypesCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/SearchUserProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +124 -21
- package/dist-types/ts3.4/models/models_1.d.ts +19 -24
- package/dist-types/ts3.4/models/models_2.d.ts +30 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +4 -0
- package/package.json +6 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AcceptRuleBehavior, AttributeEntityType, AuthenticationType, AuthType, ChangeAction, ComputeEnvironments, ConfigurableActionTypeAuthorization, ConnectionScope, ConnectionStatus, ConnectionType, DataProductItemType, DataProductStatus, DataSourceErrorType, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, DeploymentMode, DeploymentStatus, DeploymentType, DomainStatus, DomainUnitDesignation, DomainVersion, EnableSetting, EntityType, EnvironmentStatus, FilterExpressionType, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GlueConnectionType, GovernanceType, GovernedEntityType, GroupProfileStatus, HyperPodOrchestrator, ListingStatus, ManagedPolicyType, OAuth2GrantType, OverallDeploymentStatus, ProjectDesignation, ProjectStatus, Protocol, ResolutionStrategy, ResourceTagSource, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, S3Permission, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, Timezone, UserAssignment, UserDesignation
|
|
1
|
+
import { AcceptRuleBehavior, AttributeEntityType, AuthenticationType, AuthType, ChangeAction, ComputeEnvironments, ConfigurableActionTypeAuthorization, ConnectionScope, ConnectionStatus, ConnectionType, DataProductItemType, DataProductStatus, DataSourceErrorType, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, DeploymentMode, DeploymentStatus, DeploymentType, DomainStatus, DomainUnitDesignation, DomainVersion, EnableSetting, EntityType, EnvironmentStatus, FilterExpressionType, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GlueConnectionType, GovernanceType, GovernedEntityType, GroupProfileStatus, HyperPodOrchestrator, ListingStatus, ManagedPolicyType, OAuth2GrantType, OverallDeploymentStatus, ProjectDesignation, ProjectStatus, Protocol, ResolutionStrategy, ResourceTagSource, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, S3Permission, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionGrantStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, Timezone, UserAssignment, UserDesignation } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Specifies the prediction (aka, the automatically generated piece of metadata) and the target (for example, a column name) that can be accepted.</p>
|
|
4
4
|
* @public
|
|
@@ -4804,11 +4804,28 @@ export interface SparkGluePropertiesInput {
|
|
|
4804
4804
|
*/
|
|
4805
4805
|
workerType?: string | undefined;
|
|
4806
4806
|
}
|
|
4807
|
+
/**
|
|
4808
|
+
* <p>The Amazon MWAA properties.</p>
|
|
4809
|
+
* @public
|
|
4810
|
+
*/
|
|
4811
|
+
export interface WorkflowsMwaaPropertiesInput {
|
|
4812
|
+
/**
|
|
4813
|
+
* <p>The MWAA environment name.</p>
|
|
4814
|
+
* @public
|
|
4815
|
+
*/
|
|
4816
|
+
mwaaEnvironmentName?: string | undefined;
|
|
4817
|
+
}
|
|
4818
|
+
/**
|
|
4819
|
+
* <p>The MWAA serverless properties.</p>
|
|
4820
|
+
* @public
|
|
4821
|
+
*/
|
|
4822
|
+
export interface WorkflowsServerlessPropertiesInput {
|
|
4823
|
+
}
|
|
4807
4824
|
/**
|
|
4808
4825
|
* <p>The properties of a connection.</p>
|
|
4809
4826
|
* @public
|
|
4810
4827
|
*/
|
|
4811
|
-
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;
|
|
4828
|
+
export type ConnectionPropertiesInput = ConnectionPropertiesInput.AmazonQPropertiesMember | ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.MlflowPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.S3PropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesInput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesInput.$UnknownMember;
|
|
4812
4829
|
/**
|
|
4813
4830
|
* @public
|
|
4814
4831
|
*/
|
|
@@ -4828,6 +4845,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4828
4845
|
s3Properties?: never;
|
|
4829
4846
|
amazonQProperties?: never;
|
|
4830
4847
|
mlflowProperties?: never;
|
|
4848
|
+
workflowsMwaaProperties?: never;
|
|
4849
|
+
workflowsServerlessProperties?: never;
|
|
4831
4850
|
$unknown?: never;
|
|
4832
4851
|
}
|
|
4833
4852
|
/**
|
|
@@ -4845,6 +4864,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4845
4864
|
s3Properties?: never;
|
|
4846
4865
|
amazonQProperties?: never;
|
|
4847
4866
|
mlflowProperties?: never;
|
|
4867
|
+
workflowsMwaaProperties?: never;
|
|
4868
|
+
workflowsServerlessProperties?: never;
|
|
4848
4869
|
$unknown?: never;
|
|
4849
4870
|
}
|
|
4850
4871
|
/**
|
|
@@ -4862,6 +4883,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4862
4883
|
s3Properties?: never;
|
|
4863
4884
|
amazonQProperties?: never;
|
|
4864
4885
|
mlflowProperties?: never;
|
|
4886
|
+
workflowsMwaaProperties?: never;
|
|
4887
|
+
workflowsServerlessProperties?: never;
|
|
4865
4888
|
$unknown?: never;
|
|
4866
4889
|
}
|
|
4867
4890
|
/**
|
|
@@ -4879,6 +4902,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4879
4902
|
s3Properties?: never;
|
|
4880
4903
|
amazonQProperties?: never;
|
|
4881
4904
|
mlflowProperties?: never;
|
|
4905
|
+
workflowsMwaaProperties?: never;
|
|
4906
|
+
workflowsServerlessProperties?: never;
|
|
4882
4907
|
$unknown?: never;
|
|
4883
4908
|
}
|
|
4884
4909
|
/**
|
|
@@ -4896,6 +4921,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4896
4921
|
s3Properties?: never;
|
|
4897
4922
|
amazonQProperties?: never;
|
|
4898
4923
|
mlflowProperties?: never;
|
|
4924
|
+
workflowsMwaaProperties?: never;
|
|
4925
|
+
workflowsServerlessProperties?: never;
|
|
4899
4926
|
$unknown?: never;
|
|
4900
4927
|
}
|
|
4901
4928
|
/**
|
|
@@ -4913,6 +4940,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4913
4940
|
s3Properties?: never;
|
|
4914
4941
|
amazonQProperties?: never;
|
|
4915
4942
|
mlflowProperties?: never;
|
|
4943
|
+
workflowsMwaaProperties?: never;
|
|
4944
|
+
workflowsServerlessProperties?: never;
|
|
4916
4945
|
$unknown?: never;
|
|
4917
4946
|
}
|
|
4918
4947
|
/**
|
|
@@ -4930,6 +4959,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4930
4959
|
s3Properties?: never;
|
|
4931
4960
|
amazonQProperties?: never;
|
|
4932
4961
|
mlflowProperties?: never;
|
|
4962
|
+
workflowsMwaaProperties?: never;
|
|
4963
|
+
workflowsServerlessProperties?: never;
|
|
4933
4964
|
$unknown?: never;
|
|
4934
4965
|
}
|
|
4935
4966
|
/**
|
|
@@ -4947,6 +4978,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4947
4978
|
s3Properties: S3PropertiesInput;
|
|
4948
4979
|
amazonQProperties?: never;
|
|
4949
4980
|
mlflowProperties?: never;
|
|
4981
|
+
workflowsMwaaProperties?: never;
|
|
4982
|
+
workflowsServerlessProperties?: never;
|
|
4950
4983
|
$unknown?: never;
|
|
4951
4984
|
}
|
|
4952
4985
|
/**
|
|
@@ -4964,6 +4997,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4964
4997
|
s3Properties?: never;
|
|
4965
4998
|
amazonQProperties: AmazonQPropertiesInput;
|
|
4966
4999
|
mlflowProperties?: never;
|
|
5000
|
+
workflowsMwaaProperties?: never;
|
|
5001
|
+
workflowsServerlessProperties?: never;
|
|
4967
5002
|
$unknown?: never;
|
|
4968
5003
|
}
|
|
4969
5004
|
/**
|
|
@@ -4981,6 +5016,46 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4981
5016
|
s3Properties?: never;
|
|
4982
5017
|
amazonQProperties?: never;
|
|
4983
5018
|
mlflowProperties: MlflowPropertiesInput;
|
|
5019
|
+
workflowsMwaaProperties?: never;
|
|
5020
|
+
workflowsServerlessProperties?: never;
|
|
5021
|
+
$unknown?: never;
|
|
5022
|
+
}
|
|
5023
|
+
/**
|
|
5024
|
+
* <p>The Amazon MWAA properties of a connection.</p>
|
|
5025
|
+
* @public
|
|
5026
|
+
*/
|
|
5027
|
+
interface WorkflowsMwaaPropertiesMember {
|
|
5028
|
+
athenaProperties?: never;
|
|
5029
|
+
glueProperties?: never;
|
|
5030
|
+
hyperPodProperties?: never;
|
|
5031
|
+
iamProperties?: never;
|
|
5032
|
+
redshiftProperties?: never;
|
|
5033
|
+
sparkEmrProperties?: never;
|
|
5034
|
+
sparkGlueProperties?: never;
|
|
5035
|
+
s3Properties?: never;
|
|
5036
|
+
amazonQProperties?: never;
|
|
5037
|
+
mlflowProperties?: never;
|
|
5038
|
+
workflowsMwaaProperties: WorkflowsMwaaPropertiesInput;
|
|
5039
|
+
workflowsServerlessProperties?: never;
|
|
5040
|
+
$unknown?: never;
|
|
5041
|
+
}
|
|
5042
|
+
/**
|
|
5043
|
+
* <p>The MWAA serverless properties of a connection.</p>
|
|
5044
|
+
* @public
|
|
5045
|
+
*/
|
|
5046
|
+
interface WorkflowsServerlessPropertiesMember {
|
|
5047
|
+
athenaProperties?: never;
|
|
5048
|
+
glueProperties?: never;
|
|
5049
|
+
hyperPodProperties?: never;
|
|
5050
|
+
iamProperties?: never;
|
|
5051
|
+
redshiftProperties?: never;
|
|
5052
|
+
sparkEmrProperties?: never;
|
|
5053
|
+
sparkGlueProperties?: never;
|
|
5054
|
+
s3Properties?: never;
|
|
5055
|
+
amazonQProperties?: never;
|
|
5056
|
+
mlflowProperties?: never;
|
|
5057
|
+
workflowsMwaaProperties?: never;
|
|
5058
|
+
workflowsServerlessProperties: WorkflowsServerlessPropertiesInput;
|
|
4984
5059
|
$unknown?: never;
|
|
4985
5060
|
}
|
|
4986
5061
|
/**
|
|
@@ -4997,6 +5072,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4997
5072
|
s3Properties?: never;
|
|
4998
5073
|
amazonQProperties?: never;
|
|
4999
5074
|
mlflowProperties?: never;
|
|
5075
|
+
workflowsMwaaProperties?: never;
|
|
5076
|
+
workflowsServerlessProperties?: never;
|
|
5000
5077
|
$unknown: [string, any];
|
|
5001
5078
|
}
|
|
5002
5079
|
/**
|
|
@@ -5014,6 +5091,8 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5014
5091
|
s3Properties: (value: S3PropertiesInput) => T;
|
|
5015
5092
|
amazonQProperties: (value: AmazonQPropertiesInput) => T;
|
|
5016
5093
|
mlflowProperties: (value: MlflowPropertiesInput) => T;
|
|
5094
|
+
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesInput) => T;
|
|
5095
|
+
workflowsServerlessProperties: (value: WorkflowsServerlessPropertiesInput) => T;
|
|
5017
5096
|
_: (name: string, value: any) => T;
|
|
5018
5097
|
}
|
|
5019
5098
|
}
|
|
@@ -5317,11 +5396,28 @@ export interface SparkGluePropertiesOutput {
|
|
|
5317
5396
|
*/
|
|
5318
5397
|
workerType?: string | undefined;
|
|
5319
5398
|
}
|
|
5399
|
+
/**
|
|
5400
|
+
* <p>The Amazon MWAA properties.</p>
|
|
5401
|
+
* @public
|
|
5402
|
+
*/
|
|
5403
|
+
export interface WorkflowsMwaaPropertiesOutput {
|
|
5404
|
+
/**
|
|
5405
|
+
* <p>The MWAA environment name.</p>
|
|
5406
|
+
* @public
|
|
5407
|
+
*/
|
|
5408
|
+
mwaaEnvironmentName?: string | undefined;
|
|
5409
|
+
}
|
|
5410
|
+
/**
|
|
5411
|
+
* <p>The MWAA serverless properties.</p>
|
|
5412
|
+
* @public
|
|
5413
|
+
*/
|
|
5414
|
+
export interface WorkflowsServerlessPropertiesOutput {
|
|
5415
|
+
}
|
|
5320
5416
|
/**
|
|
5321
5417
|
* <p>The properties of a connection.</p>
|
|
5322
5418
|
* @public
|
|
5323
5419
|
*/
|
|
5324
|
-
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;
|
|
5420
|
+
export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AmazonQPropertiesMember | ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.MlflowPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.S3PropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesOutput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
|
|
5325
5421
|
/**
|
|
5326
5422
|
* @public
|
|
5327
5423
|
*/
|
|
@@ -5341,6 +5437,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5341
5437
|
s3Properties?: never;
|
|
5342
5438
|
amazonQProperties?: never;
|
|
5343
5439
|
mlflowProperties?: never;
|
|
5440
|
+
workflowsMwaaProperties?: never;
|
|
5441
|
+
workflowsServerlessProperties?: never;
|
|
5344
5442
|
$unknown?: never;
|
|
5345
5443
|
}
|
|
5346
5444
|
/**
|
|
@@ -5358,6 +5456,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5358
5456
|
s3Properties?: never;
|
|
5359
5457
|
amazonQProperties?: never;
|
|
5360
5458
|
mlflowProperties?: never;
|
|
5459
|
+
workflowsMwaaProperties?: never;
|
|
5460
|
+
workflowsServerlessProperties?: never;
|
|
5361
5461
|
$unknown?: never;
|
|
5362
5462
|
}
|
|
5363
5463
|
/**
|
|
@@ -5375,6 +5475,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5375
5475
|
s3Properties?: never;
|
|
5376
5476
|
amazonQProperties?: never;
|
|
5377
5477
|
mlflowProperties?: never;
|
|
5478
|
+
workflowsMwaaProperties?: never;
|
|
5479
|
+
workflowsServerlessProperties?: never;
|
|
5378
5480
|
$unknown?: never;
|
|
5379
5481
|
}
|
|
5380
5482
|
/**
|
|
@@ -5392,6 +5494,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5392
5494
|
s3Properties?: never;
|
|
5393
5495
|
amazonQProperties?: never;
|
|
5394
5496
|
mlflowProperties?: never;
|
|
5497
|
+
workflowsMwaaProperties?: never;
|
|
5498
|
+
workflowsServerlessProperties?: never;
|
|
5395
5499
|
$unknown?: never;
|
|
5396
5500
|
}
|
|
5397
5501
|
/**
|
|
@@ -5409,6 +5513,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5409
5513
|
s3Properties?: never;
|
|
5410
5514
|
amazonQProperties?: never;
|
|
5411
5515
|
mlflowProperties?: never;
|
|
5516
|
+
workflowsMwaaProperties?: never;
|
|
5517
|
+
workflowsServerlessProperties?: never;
|
|
5412
5518
|
$unknown?: never;
|
|
5413
5519
|
}
|
|
5414
5520
|
/**
|
|
@@ -5426,6 +5532,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5426
5532
|
s3Properties?: never;
|
|
5427
5533
|
amazonQProperties?: never;
|
|
5428
5534
|
mlflowProperties?: never;
|
|
5535
|
+
workflowsMwaaProperties?: never;
|
|
5536
|
+
workflowsServerlessProperties?: never;
|
|
5429
5537
|
$unknown?: never;
|
|
5430
5538
|
}
|
|
5431
5539
|
/**
|
|
@@ -5443,6 +5551,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5443
5551
|
s3Properties?: never;
|
|
5444
5552
|
amazonQProperties?: never;
|
|
5445
5553
|
mlflowProperties?: never;
|
|
5554
|
+
workflowsMwaaProperties?: never;
|
|
5555
|
+
workflowsServerlessProperties?: never;
|
|
5446
5556
|
$unknown?: never;
|
|
5447
5557
|
}
|
|
5448
5558
|
/**
|
|
@@ -5460,6 +5570,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5460
5570
|
s3Properties: S3PropertiesOutput;
|
|
5461
5571
|
amazonQProperties?: never;
|
|
5462
5572
|
mlflowProperties?: never;
|
|
5573
|
+
workflowsMwaaProperties?: never;
|
|
5574
|
+
workflowsServerlessProperties?: never;
|
|
5463
5575
|
$unknown?: never;
|
|
5464
5576
|
}
|
|
5465
5577
|
/**
|
|
@@ -5477,6 +5589,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5477
5589
|
s3Properties?: never;
|
|
5478
5590
|
amazonQProperties: AmazonQPropertiesOutput;
|
|
5479
5591
|
mlflowProperties?: never;
|
|
5592
|
+
workflowsMwaaProperties?: never;
|
|
5593
|
+
workflowsServerlessProperties?: never;
|
|
5480
5594
|
$unknown?: never;
|
|
5481
5595
|
}
|
|
5482
5596
|
/**
|
|
@@ -5494,6 +5608,46 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5494
5608
|
s3Properties?: never;
|
|
5495
5609
|
amazonQProperties?: never;
|
|
5496
5610
|
mlflowProperties: MlflowPropertiesOutput;
|
|
5611
|
+
workflowsMwaaProperties?: never;
|
|
5612
|
+
workflowsServerlessProperties?: never;
|
|
5613
|
+
$unknown?: never;
|
|
5614
|
+
}
|
|
5615
|
+
/**
|
|
5616
|
+
* <p>The Amazon MWAA properties of a connection.</p>
|
|
5617
|
+
* @public
|
|
5618
|
+
*/
|
|
5619
|
+
interface WorkflowsMwaaPropertiesMember {
|
|
5620
|
+
athenaProperties?: never;
|
|
5621
|
+
glueProperties?: never;
|
|
5622
|
+
hyperPodProperties?: never;
|
|
5623
|
+
iamProperties?: never;
|
|
5624
|
+
redshiftProperties?: never;
|
|
5625
|
+
sparkEmrProperties?: never;
|
|
5626
|
+
sparkGlueProperties?: never;
|
|
5627
|
+
s3Properties?: never;
|
|
5628
|
+
amazonQProperties?: never;
|
|
5629
|
+
mlflowProperties?: never;
|
|
5630
|
+
workflowsMwaaProperties: WorkflowsMwaaPropertiesOutput;
|
|
5631
|
+
workflowsServerlessProperties?: never;
|
|
5632
|
+
$unknown?: never;
|
|
5633
|
+
}
|
|
5634
|
+
/**
|
|
5635
|
+
* <p>The MWAA serverless properties of a connection.</p>
|
|
5636
|
+
* @public
|
|
5637
|
+
*/
|
|
5638
|
+
interface WorkflowsServerlessPropertiesMember {
|
|
5639
|
+
athenaProperties?: never;
|
|
5640
|
+
glueProperties?: never;
|
|
5641
|
+
hyperPodProperties?: never;
|
|
5642
|
+
iamProperties?: never;
|
|
5643
|
+
redshiftProperties?: never;
|
|
5644
|
+
sparkEmrProperties?: never;
|
|
5645
|
+
sparkGlueProperties?: never;
|
|
5646
|
+
s3Properties?: never;
|
|
5647
|
+
amazonQProperties?: never;
|
|
5648
|
+
mlflowProperties?: never;
|
|
5649
|
+
workflowsMwaaProperties?: never;
|
|
5650
|
+
workflowsServerlessProperties: WorkflowsServerlessPropertiesOutput;
|
|
5497
5651
|
$unknown?: never;
|
|
5498
5652
|
}
|
|
5499
5653
|
/**
|
|
@@ -5510,6 +5664,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5510
5664
|
s3Properties?: never;
|
|
5511
5665
|
amazonQProperties?: never;
|
|
5512
5666
|
mlflowProperties?: never;
|
|
5667
|
+
workflowsMwaaProperties?: never;
|
|
5668
|
+
workflowsServerlessProperties?: never;
|
|
5513
5669
|
$unknown: [string, any];
|
|
5514
5670
|
}
|
|
5515
5671
|
/**
|
|
@@ -5527,6 +5683,8 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5527
5683
|
s3Properties: (value: S3PropertiesOutput) => T;
|
|
5528
5684
|
amazonQProperties: (value: AmazonQPropertiesOutput) => T;
|
|
5529
5685
|
mlflowProperties: (value: MlflowPropertiesOutput) => T;
|
|
5686
|
+
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesOutput) => T;
|
|
5687
|
+
workflowsServerlessProperties: (value: WorkflowsServerlessPropertiesOutput) => T;
|
|
5530
5688
|
_: (name: string, value: any) => T;
|
|
5531
5689
|
}
|
|
5532
5690
|
}
|
|
@@ -9964,78 +10122,3 @@ export interface CreateSubscriptionTargetOutput {
|
|
|
9964
10122
|
*/
|
|
9965
10123
|
subscriptionGrantCreationMode?: SubscriptionGrantCreationMode | undefined;
|
|
9966
10124
|
}
|
|
9967
|
-
/**
|
|
9968
|
-
* @public
|
|
9969
|
-
*/
|
|
9970
|
-
export interface CreateUserProfileInput {
|
|
9971
|
-
/**
|
|
9972
|
-
* <p>The identifier of the Amazon DataZone domain in which a user profile is created.</p>
|
|
9973
|
-
* @public
|
|
9974
|
-
*/
|
|
9975
|
-
domainIdentifier: string | undefined;
|
|
9976
|
-
/**
|
|
9977
|
-
* <p>The identifier of the user for which the user profile is created.</p>
|
|
9978
|
-
* @public
|
|
9979
|
-
*/
|
|
9980
|
-
userIdentifier: string | undefined;
|
|
9981
|
-
/**
|
|
9982
|
-
* <p>The user type of the user for which the user profile is created.</p>
|
|
9983
|
-
* @public
|
|
9984
|
-
*/
|
|
9985
|
-
userType?: UserType | undefined;
|
|
9986
|
-
/**
|
|
9987
|
-
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
|
|
9988
|
-
* @public
|
|
9989
|
-
*/
|
|
9990
|
-
clientToken?: string | undefined;
|
|
9991
|
-
}
|
|
9992
|
-
/**
|
|
9993
|
-
* @public
|
|
9994
|
-
*/
|
|
9995
|
-
export interface CreateUserProfileOutput {
|
|
9996
|
-
/**
|
|
9997
|
-
* <p>The identifier of the Amazon DataZone domain in which a user profile is created.</p>
|
|
9998
|
-
* @public
|
|
9999
|
-
*/
|
|
10000
|
-
domainId?: string | undefined;
|
|
10001
|
-
/**
|
|
10002
|
-
* <p>The identifier of the user profile.</p>
|
|
10003
|
-
* @public
|
|
10004
|
-
*/
|
|
10005
|
-
id?: string | undefined;
|
|
10006
|
-
/**
|
|
10007
|
-
* <p>The type of the user profile.</p>
|
|
10008
|
-
* @public
|
|
10009
|
-
*/
|
|
10010
|
-
type?: UserProfileType | undefined;
|
|
10011
|
-
/**
|
|
10012
|
-
* <p>The status of the user profile.</p>
|
|
10013
|
-
* @public
|
|
10014
|
-
*/
|
|
10015
|
-
status?: UserProfileStatus | undefined;
|
|
10016
|
-
/**
|
|
10017
|
-
* <p>The user profile details.</p>
|
|
10018
|
-
* @public
|
|
10019
|
-
*/
|
|
10020
|
-
details?: UserProfileDetails | undefined;
|
|
10021
|
-
}
|
|
10022
|
-
/**
|
|
10023
|
-
* @public
|
|
10024
|
-
*/
|
|
10025
|
-
export interface DeleteDataProductInput {
|
|
10026
|
-
/**
|
|
10027
|
-
* <p>The ID of the Amazon DataZone domain in which the data product is deleted.</p>
|
|
10028
|
-
* @public
|
|
10029
|
-
*/
|
|
10030
|
-
domainIdentifier: string | undefined;
|
|
10031
|
-
/**
|
|
10032
|
-
* <p>The identifier of the data product that is deleted.</p>
|
|
10033
|
-
* @public
|
|
10034
|
-
*/
|
|
10035
|
-
identifier: string | undefined;
|
|
10036
|
-
}
|
|
10037
|
-
/**
|
|
10038
|
-
* @public
|
|
10039
|
-
*/
|
|
10040
|
-
export interface DeleteDataProductOutput {
|
|
10041
|
-
}
|
|
@@ -1,5 +1,80 @@
|
|
|
1
|
-
import { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, GroupSearchType, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, RejectRuleBehavior, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType,
|
|
1
|
+
import { ConfigurationStatus, ConnectionScope, ConnectionType, DataAssetActivityStatus, DataProductStatus, DataSourceRunStatus, DataSourceRunType, DataSourceStatus, DataZoneEntityType, DomainStatus, DomainVersion, EdgeDirection, EnableSetting, EnvironmentStatus, FilterOperator, FilterStatus, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GlossaryUsageRestriction, GovernedEntityType, GroupProfileStatus, GroupSearchType, JobRunMode, JobRunStatus, JobType, LineageEventProcessingStatus, LineageImportStatus, ListingStatus, ManagedPolicyType, MetadataGenerationRunStatus, MetadataGenerationRunType, MetadataGenerationTargetType, NotificationResourceType, NotificationRole, NotificationType, OpenLineageRunState, ProjectStatus, RejectRuleBehavior, ResolutionStrategy, RuleAction, RuleTargetType, RuleType, SelfGrantStatus, SortFieldAccountPool, SortFieldConnection, SortFieldProject, SortKey, SortOrder, Status, SubscriptionGrantCreationMode, SubscriptionGrantOverallStatus, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TaskStatus, TimeSeriesEntityType, UserDesignation, UserProfileStatus, UserProfileType, UserType } from "./enums";
|
|
2
2
|
import { type AccountSource, type ActionParameters, type ConnectionCredentials, type ConnectionPropertiesOutput, type DataSourceConfigurationInput, type DataSourceConfigurationOutput, type DataSourceErrorMessage, type Deployment, type DeploymentProperties, type EnvironmentDeploymentDetails, type GrantedEntity, type Member, type Model, type OwnerProperties, type PolicyGrantDetail, type PolicyGrantPrincipal, type ProvisioningProperties, type RecommendationConfiguration, type RuleDetail, type RuleScope, type RuleTarget, type ScheduleConfiguration, type SingleSignOn, type TermRelations, type UserProfileDetails, AccountInfo, AccountPoolSummary, AggregationOutput, AssetFilterSummary, AssetItem, AssetListing, AssetListingItem, AssetRevision, AssetTypeItem, ConfigurableEnvironmentAction, ConnectionSummary, CustomParameter, DataProductItem, DetailedGlossaryTerm, DomainUnitOwnerProperties, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, FormEntryOutput, FormInput, FormOutput, MatchRationaleItem, PhysicalEndpoint, ProjectDeletionError, Resource, ResourceTag, ResourceTagParameter, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionTargetForm, TimeSeriesDataPointSummaryFormOutput } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreateUserProfileInput {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The identifier of the Amazon DataZone domain in which a user profile is created.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
domainIdentifier: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* <p>The identifier of the user for which the user profile is created.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
userIdentifier: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The user type of the user for which the user profile is created.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
userType?: UserType | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
clientToken?: string | undefined;
|
|
27
|
+
}
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface CreateUserProfileOutput {
|
|
32
|
+
/**
|
|
33
|
+
* <p>The identifier of the Amazon DataZone domain in which a user profile is created.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
domainId?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>The identifier of the user profile.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
id?: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The type of the user profile.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
type?: UserProfileType | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The status of the user profile.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
status?: UserProfileStatus | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* <p>The user profile details.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
details?: UserProfileDetails | undefined;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export interface DeleteDataProductInput {
|
|
62
|
+
/**
|
|
63
|
+
* <p>The ID of the Amazon DataZone domain in which the data product is deleted.</p>
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
domainIdentifier: string | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The identifier of the data product that is deleted.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
identifier: string | undefined;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
export interface DeleteDataProductOutput {
|
|
77
|
+
}
|
|
3
78
|
/**
|
|
4
79
|
* @public
|
|
5
80
|
*/
|
|
@@ -9455,99 +9530,3 @@ export declare namespace SearchTypesResultItem {
|
|
|
9455
9530
|
_: (name: string, value: any) => T;
|
|
9456
9531
|
}
|
|
9457
9532
|
}
|
|
9458
|
-
/**
|
|
9459
|
-
* @public
|
|
9460
|
-
*/
|
|
9461
|
-
export interface SearchTypesOutput {
|
|
9462
|
-
/**
|
|
9463
|
-
* <p>The results of the <code>SearchTypes</code> action.</p>
|
|
9464
|
-
* @public
|
|
9465
|
-
*/
|
|
9466
|
-
items?: SearchTypesResultItem[] | undefined;
|
|
9467
|
-
/**
|
|
9468
|
-
* <p>When the number of results 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 results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchTypes</code> to list the next set of results.</p>
|
|
9469
|
-
* @public
|
|
9470
|
-
*/
|
|
9471
|
-
nextToken?: string | undefined;
|
|
9472
|
-
/**
|
|
9473
|
-
* <p>Total number of search results.</p>
|
|
9474
|
-
* @public
|
|
9475
|
-
*/
|
|
9476
|
-
totalMatchCount?: number | undefined;
|
|
9477
|
-
}
|
|
9478
|
-
/**
|
|
9479
|
-
* @public
|
|
9480
|
-
*/
|
|
9481
|
-
export interface SearchUserProfilesInput {
|
|
9482
|
-
/**
|
|
9483
|
-
* <p>The identifier of the Amazon DataZone domain in which you want to search user profiles.</p>
|
|
9484
|
-
* @public
|
|
9485
|
-
*/
|
|
9486
|
-
domainIdentifier: string | undefined;
|
|
9487
|
-
/**
|
|
9488
|
-
* <p>Specifies the user type for the <code>SearchUserProfiles</code> action.</p>
|
|
9489
|
-
* @public
|
|
9490
|
-
*/
|
|
9491
|
-
userType: UserSearchType | undefined;
|
|
9492
|
-
/**
|
|
9493
|
-
* <p>Specifies the text for which to search.</p>
|
|
9494
|
-
* @public
|
|
9495
|
-
*/
|
|
9496
|
-
searchText?: string | undefined;
|
|
9497
|
-
/**
|
|
9498
|
-
* <p>The maximum number of results to return in a single call to <code>SearchUserProfiles</code>. When the number of results to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>SearchUserProfiles</code> to list the next set of results. </p>
|
|
9499
|
-
* @public
|
|
9500
|
-
*/
|
|
9501
|
-
maxResults?: number | undefined;
|
|
9502
|
-
/**
|
|
9503
|
-
* <p>When the number of results 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 results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchUserProfiles</code> to list the next set of results.</p>
|
|
9504
|
-
* @public
|
|
9505
|
-
*/
|
|
9506
|
-
nextToken?: string | undefined;
|
|
9507
|
-
}
|
|
9508
|
-
/**
|
|
9509
|
-
* <p>The details of the user profile.</p>
|
|
9510
|
-
* @public
|
|
9511
|
-
*/
|
|
9512
|
-
export interface UserProfileSummary {
|
|
9513
|
-
/**
|
|
9514
|
-
* <p>The ID of the Amazon DataZone domain of the user profile.</p>
|
|
9515
|
-
* @public
|
|
9516
|
-
*/
|
|
9517
|
-
domainId?: string | undefined;
|
|
9518
|
-
/**
|
|
9519
|
-
* <p>The ID of the user profile.</p>
|
|
9520
|
-
* @public
|
|
9521
|
-
*/
|
|
9522
|
-
id?: string | undefined;
|
|
9523
|
-
/**
|
|
9524
|
-
* <p>The type of the user profile.</p>
|
|
9525
|
-
* @public
|
|
9526
|
-
*/
|
|
9527
|
-
type?: UserProfileType | undefined;
|
|
9528
|
-
/**
|
|
9529
|
-
* <p>The status of the user profile.</p>
|
|
9530
|
-
* @public
|
|
9531
|
-
*/
|
|
9532
|
-
status?: UserProfileStatus | undefined;
|
|
9533
|
-
/**
|
|
9534
|
-
* <p>The details of the user profile.</p>
|
|
9535
|
-
* @public
|
|
9536
|
-
*/
|
|
9537
|
-
details?: UserProfileDetails | undefined;
|
|
9538
|
-
}
|
|
9539
|
-
/**
|
|
9540
|
-
* @public
|
|
9541
|
-
*/
|
|
9542
|
-
export interface SearchUserProfilesOutput {
|
|
9543
|
-
/**
|
|
9544
|
-
* <p>The results of the <code>SearchUserProfiles</code> action.</p>
|
|
9545
|
-
* @public
|
|
9546
|
-
*/
|
|
9547
|
-
items?: UserProfileSummary[] | undefined;
|
|
9548
|
-
/**
|
|
9549
|
-
* <p>When the number of results 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 results, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>SearchUserProfiles</code> to list the next set of results.</p>
|
|
9550
|
-
* @public
|
|
9551
|
-
*/
|
|
9552
|
-
nextToken?: string | undefined;
|
|
9553
|
-
}
|