@aws-sdk/client-datazone 3.1051.0 → 3.1053.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 +1 -0
- package/dist-cjs/schemas/schemas_0.js +33 -11
- package/dist-es/models/enums.js +1 -0
- package/dist-es/schemas/schemas_0.js +27 -6
- package/dist-types/commands/CreateConnectionCommand.d.ts +20 -2
- package/dist-types/commands/GetConnectionCommand.d.ts +13 -2
- package/dist-types/commands/ListConnectionsCommand.d.ts +14 -3
- package/dist-types/commands/PostLineageEventCommand.d.ts +1 -1
- package/dist-types/commands/StopNotebookRunCommand.d.ts +2 -1
- package/dist-types/commands/UpdateConnectionCommand.d.ts +20 -2
- package/dist-types/models/enums.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +177 -82
- package/dist-types/models/models_1.d.ts +80 -62
- package/dist-types/models/models_2.d.ts +63 -3
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/PostLineageEventCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopNotebookRunCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +108 -19
- package/dist-types/ts3.4/models/models_1.d.ts +21 -17
- package/dist-types/ts3.4/models/models_2.d.ts +18 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +8 -8
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { 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, NotebookStatus, OAuth2GrantType, OverallDeploymentStatus, PackageManager, ProjectDesignation, ProjectStatus, Protocol, ResolutionStrategy, ResourceTagSource, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, S3Permission, Status,
|
|
1
|
+
import type { 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, NotebookStatus, OAuth2GrantType, OverallDeploymentStatus, PackageManager, ProjectDesignation, ProjectStatus, Protocol, ResolutionStrategy, ResourceTagSource, RuleAction, RuleScopeSelectionMode, RuleTargetType, RuleType, S3Permission, Status, 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
|
|
@@ -4884,6 +4884,27 @@ export interface SparkGluePropertiesInput {
|
|
|
4884
4884
|
*/
|
|
4885
4885
|
workerType?: string | undefined;
|
|
4886
4886
|
}
|
|
4887
|
+
/**
|
|
4888
|
+
* <p>The VPC connection properties used when creating a connection.</p>
|
|
4889
|
+
* @public
|
|
4890
|
+
*/
|
|
4891
|
+
export interface VpcPropertiesInput {
|
|
4892
|
+
/**
|
|
4893
|
+
* <p>The identifier of the VPC. Must match the pattern <code>^vpc-[a-z0-9]+$</code>. Maximum length of 32.</p>
|
|
4894
|
+
* @public
|
|
4895
|
+
*/
|
|
4896
|
+
vpcId: string | undefined;
|
|
4897
|
+
/**
|
|
4898
|
+
* <p>The subnet IDs of the VPC connection. You can specify between 1 and 16 subnet IDs.</p>
|
|
4899
|
+
* @public
|
|
4900
|
+
*/
|
|
4901
|
+
subnetIds: string[] | undefined;
|
|
4902
|
+
/**
|
|
4903
|
+
* <p>The security group ID of the VPC connection. Must match the pattern <code>^sg-[a-z0-9]+$</code>. Maximum length of 32.</p>
|
|
4904
|
+
* @public
|
|
4905
|
+
*/
|
|
4906
|
+
securityGroupId?: string | undefined;
|
|
4907
|
+
}
|
|
4887
4908
|
/**
|
|
4888
4909
|
* <p>The Amazon MWAA properties.</p>
|
|
4889
4910
|
* @public
|
|
@@ -4905,7 +4926,7 @@ export interface WorkflowsServerlessPropertiesInput {
|
|
|
4905
4926
|
* <p>The properties of a connection.</p>
|
|
4906
4927
|
* @public
|
|
4907
4928
|
*/
|
|
4908
|
-
export type ConnectionPropertiesInput = ConnectionPropertiesInput.AmazonQPropertiesMember | ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.LakehousePropertiesMember | ConnectionPropertiesInput.MlflowPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.S3PropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesInput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesInput.$UnknownMember;
|
|
4929
|
+
export type ConnectionPropertiesInput = ConnectionPropertiesInput.AmazonQPropertiesMember | ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.LakehousePropertiesMember | ConnectionPropertiesInput.MlflowPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.S3PropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.VpcPropertiesMember | ConnectionPropertiesInput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesInput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesInput.$UnknownMember;
|
|
4909
4930
|
/**
|
|
4910
4931
|
* @public
|
|
4911
4932
|
*/
|
|
@@ -4928,6 +4949,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4928
4949
|
workflowsMwaaProperties?: never;
|
|
4929
4950
|
workflowsServerlessProperties?: never;
|
|
4930
4951
|
lakehouseProperties?: never;
|
|
4952
|
+
vpcProperties?: never;
|
|
4931
4953
|
$unknown?: never;
|
|
4932
4954
|
}
|
|
4933
4955
|
/**
|
|
@@ -4948,6 +4970,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4948
4970
|
workflowsMwaaProperties?: never;
|
|
4949
4971
|
workflowsServerlessProperties?: never;
|
|
4950
4972
|
lakehouseProperties?: never;
|
|
4973
|
+
vpcProperties?: never;
|
|
4951
4974
|
$unknown?: never;
|
|
4952
4975
|
}
|
|
4953
4976
|
/**
|
|
@@ -4968,6 +4991,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4968
4991
|
workflowsMwaaProperties?: never;
|
|
4969
4992
|
workflowsServerlessProperties?: never;
|
|
4970
4993
|
lakehouseProperties?: never;
|
|
4994
|
+
vpcProperties?: never;
|
|
4971
4995
|
$unknown?: never;
|
|
4972
4996
|
}
|
|
4973
4997
|
/**
|
|
@@ -4988,6 +5012,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4988
5012
|
workflowsMwaaProperties?: never;
|
|
4989
5013
|
workflowsServerlessProperties?: never;
|
|
4990
5014
|
lakehouseProperties?: never;
|
|
5015
|
+
vpcProperties?: never;
|
|
4991
5016
|
$unknown?: never;
|
|
4992
5017
|
}
|
|
4993
5018
|
/**
|
|
@@ -5008,6 +5033,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5008
5033
|
workflowsMwaaProperties?: never;
|
|
5009
5034
|
workflowsServerlessProperties?: never;
|
|
5010
5035
|
lakehouseProperties?: never;
|
|
5036
|
+
vpcProperties?: never;
|
|
5011
5037
|
$unknown?: never;
|
|
5012
5038
|
}
|
|
5013
5039
|
/**
|
|
@@ -5028,6 +5054,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5028
5054
|
workflowsMwaaProperties?: never;
|
|
5029
5055
|
workflowsServerlessProperties?: never;
|
|
5030
5056
|
lakehouseProperties?: never;
|
|
5057
|
+
vpcProperties?: never;
|
|
5031
5058
|
$unknown?: never;
|
|
5032
5059
|
}
|
|
5033
5060
|
/**
|
|
@@ -5048,6 +5075,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5048
5075
|
workflowsMwaaProperties?: never;
|
|
5049
5076
|
workflowsServerlessProperties?: never;
|
|
5050
5077
|
lakehouseProperties?: never;
|
|
5078
|
+
vpcProperties?: never;
|
|
5051
5079
|
$unknown?: never;
|
|
5052
5080
|
}
|
|
5053
5081
|
/**
|
|
@@ -5068,6 +5096,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5068
5096
|
workflowsMwaaProperties?: never;
|
|
5069
5097
|
workflowsServerlessProperties?: never;
|
|
5070
5098
|
lakehouseProperties?: never;
|
|
5099
|
+
vpcProperties?: never;
|
|
5071
5100
|
$unknown?: never;
|
|
5072
5101
|
}
|
|
5073
5102
|
/**
|
|
@@ -5088,6 +5117,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5088
5117
|
workflowsMwaaProperties?: never;
|
|
5089
5118
|
workflowsServerlessProperties?: never;
|
|
5090
5119
|
lakehouseProperties?: never;
|
|
5120
|
+
vpcProperties?: never;
|
|
5091
5121
|
$unknown?: never;
|
|
5092
5122
|
}
|
|
5093
5123
|
/**
|
|
@@ -5108,6 +5138,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5108
5138
|
workflowsMwaaProperties?: never;
|
|
5109
5139
|
workflowsServerlessProperties?: never;
|
|
5110
5140
|
lakehouseProperties?: never;
|
|
5141
|
+
vpcProperties?: never;
|
|
5111
5142
|
$unknown?: never;
|
|
5112
5143
|
}
|
|
5113
5144
|
/**
|
|
@@ -5128,6 +5159,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5128
5159
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesInput;
|
|
5129
5160
|
workflowsServerlessProperties?: never;
|
|
5130
5161
|
lakehouseProperties?: never;
|
|
5162
|
+
vpcProperties?: never;
|
|
5131
5163
|
$unknown?: never;
|
|
5132
5164
|
}
|
|
5133
5165
|
/**
|
|
@@ -5148,6 +5180,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5148
5180
|
workflowsMwaaProperties?: never;
|
|
5149
5181
|
workflowsServerlessProperties: WorkflowsServerlessPropertiesInput;
|
|
5150
5182
|
lakehouseProperties?: never;
|
|
5183
|
+
vpcProperties?: never;
|
|
5151
5184
|
$unknown?: never;
|
|
5152
5185
|
}
|
|
5153
5186
|
/**
|
|
@@ -5168,6 +5201,28 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5168
5201
|
workflowsMwaaProperties?: never;
|
|
5169
5202
|
workflowsServerlessProperties?: never;
|
|
5170
5203
|
lakehouseProperties: LakehousePropertiesInput;
|
|
5204
|
+
vpcProperties?: never;
|
|
5205
|
+
$unknown?: never;
|
|
5206
|
+
}
|
|
5207
|
+
/**
|
|
5208
|
+
* <p>The VPC properties of a connection.</p>
|
|
5209
|
+
* @public
|
|
5210
|
+
*/
|
|
5211
|
+
interface VpcPropertiesMember {
|
|
5212
|
+
athenaProperties?: never;
|
|
5213
|
+
glueProperties?: never;
|
|
5214
|
+
hyperPodProperties?: never;
|
|
5215
|
+
iamProperties?: never;
|
|
5216
|
+
redshiftProperties?: never;
|
|
5217
|
+
sparkEmrProperties?: never;
|
|
5218
|
+
sparkGlueProperties?: never;
|
|
5219
|
+
s3Properties?: never;
|
|
5220
|
+
amazonQProperties?: never;
|
|
5221
|
+
mlflowProperties?: never;
|
|
5222
|
+
workflowsMwaaProperties?: never;
|
|
5223
|
+
workflowsServerlessProperties?: never;
|
|
5224
|
+
lakehouseProperties?: never;
|
|
5225
|
+
vpcProperties: VpcPropertiesInput;
|
|
5171
5226
|
$unknown?: never;
|
|
5172
5227
|
}
|
|
5173
5228
|
/**
|
|
@@ -5187,6 +5242,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5187
5242
|
workflowsMwaaProperties?: never;
|
|
5188
5243
|
workflowsServerlessProperties?: never;
|
|
5189
5244
|
lakehouseProperties?: never;
|
|
5245
|
+
vpcProperties?: never;
|
|
5190
5246
|
$unknown: [string, any];
|
|
5191
5247
|
}
|
|
5192
5248
|
/**
|
|
@@ -5207,6 +5263,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5207
5263
|
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesInput) => T;
|
|
5208
5264
|
workflowsServerlessProperties: (value: WorkflowsServerlessPropertiesInput) => T;
|
|
5209
5265
|
lakehouseProperties: (value: LakehousePropertiesInput) => T;
|
|
5266
|
+
vpcProperties: (value: VpcPropertiesInput) => T;
|
|
5210
5267
|
_: (name: string, value: any) => T;
|
|
5211
5268
|
}
|
|
5212
5269
|
}
|
|
@@ -5531,6 +5588,37 @@ export interface SparkGluePropertiesOutput {
|
|
|
5531
5588
|
*/
|
|
5532
5589
|
workerType?: string | undefined;
|
|
5533
5590
|
}
|
|
5591
|
+
/**
|
|
5592
|
+
* <p>The VPC connection properties returned in responses.</p>
|
|
5593
|
+
* @public
|
|
5594
|
+
*/
|
|
5595
|
+
export interface VpcPropertiesOutput {
|
|
5596
|
+
/**
|
|
5597
|
+
* <p>The identifier of the VPC.</p>
|
|
5598
|
+
* @public
|
|
5599
|
+
*/
|
|
5600
|
+
vpcId: string | undefined;
|
|
5601
|
+
/**
|
|
5602
|
+
* <p>The subnet IDs of the VPC connection.</p>
|
|
5603
|
+
* @public
|
|
5604
|
+
*/
|
|
5605
|
+
subnetIds: string[] | undefined;
|
|
5606
|
+
/**
|
|
5607
|
+
* <p>The status of the VPC connection.</p>
|
|
5608
|
+
* @public
|
|
5609
|
+
*/
|
|
5610
|
+
status: ConnectionStatus | undefined;
|
|
5611
|
+
/**
|
|
5612
|
+
* <p>The security group ID of the VPC connection.</p>
|
|
5613
|
+
* @public
|
|
5614
|
+
*/
|
|
5615
|
+
securityGroupId?: string | undefined;
|
|
5616
|
+
/**
|
|
5617
|
+
* <p>The Amazon Web Services Glue connection names associated with the VPC connection.</p>
|
|
5618
|
+
* @public
|
|
5619
|
+
*/
|
|
5620
|
+
glueConnectionNames?: string[] | undefined;
|
|
5621
|
+
}
|
|
5534
5622
|
/**
|
|
5535
5623
|
* <p>The Amazon MWAA properties.</p>
|
|
5536
5624
|
* @public
|
|
@@ -5552,7 +5640,7 @@ export interface WorkflowsServerlessPropertiesOutput {
|
|
|
5552
5640
|
* <p>The properties of a connection.</p>
|
|
5553
5641
|
* @public
|
|
5554
5642
|
*/
|
|
5555
|
-
export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AmazonQPropertiesMember | ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.LakehousePropertiesMember | ConnectionPropertiesOutput.MlflowPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.S3PropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesOutput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
|
|
5643
|
+
export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AmazonQPropertiesMember | ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.LakehousePropertiesMember | ConnectionPropertiesOutput.MlflowPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.S3PropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.VpcPropertiesMember | ConnectionPropertiesOutput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesOutput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
|
|
5556
5644
|
/**
|
|
5557
5645
|
* @public
|
|
5558
5646
|
*/
|
|
@@ -5575,6 +5663,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5575
5663
|
workflowsMwaaProperties?: never;
|
|
5576
5664
|
workflowsServerlessProperties?: never;
|
|
5577
5665
|
lakehouseProperties?: never;
|
|
5666
|
+
vpcProperties?: never;
|
|
5578
5667
|
$unknown?: never;
|
|
5579
5668
|
}
|
|
5580
5669
|
/**
|
|
@@ -5595,6 +5684,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5595
5684
|
workflowsMwaaProperties?: never;
|
|
5596
5685
|
workflowsServerlessProperties?: never;
|
|
5597
5686
|
lakehouseProperties?: never;
|
|
5687
|
+
vpcProperties?: never;
|
|
5598
5688
|
$unknown?: never;
|
|
5599
5689
|
}
|
|
5600
5690
|
/**
|
|
@@ -5615,6 +5705,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5615
5705
|
workflowsMwaaProperties?: never;
|
|
5616
5706
|
workflowsServerlessProperties?: never;
|
|
5617
5707
|
lakehouseProperties?: never;
|
|
5708
|
+
vpcProperties?: never;
|
|
5618
5709
|
$unknown?: never;
|
|
5619
5710
|
}
|
|
5620
5711
|
/**
|
|
@@ -5635,6 +5726,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5635
5726
|
workflowsMwaaProperties?: never;
|
|
5636
5727
|
workflowsServerlessProperties?: never;
|
|
5637
5728
|
lakehouseProperties?: never;
|
|
5729
|
+
vpcProperties?: never;
|
|
5638
5730
|
$unknown?: never;
|
|
5639
5731
|
}
|
|
5640
5732
|
/**
|
|
@@ -5655,6 +5747,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5655
5747
|
workflowsMwaaProperties?: never;
|
|
5656
5748
|
workflowsServerlessProperties?: never;
|
|
5657
5749
|
lakehouseProperties?: never;
|
|
5750
|
+
vpcProperties?: never;
|
|
5658
5751
|
$unknown?: never;
|
|
5659
5752
|
}
|
|
5660
5753
|
/**
|
|
@@ -5675,6 +5768,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5675
5768
|
workflowsMwaaProperties?: never;
|
|
5676
5769
|
workflowsServerlessProperties?: never;
|
|
5677
5770
|
lakehouseProperties?: never;
|
|
5771
|
+
vpcProperties?: never;
|
|
5678
5772
|
$unknown?: never;
|
|
5679
5773
|
}
|
|
5680
5774
|
/**
|
|
@@ -5695,6 +5789,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5695
5789
|
workflowsMwaaProperties?: never;
|
|
5696
5790
|
workflowsServerlessProperties?: never;
|
|
5697
5791
|
lakehouseProperties?: never;
|
|
5792
|
+
vpcProperties?: never;
|
|
5698
5793
|
$unknown?: never;
|
|
5699
5794
|
}
|
|
5700
5795
|
/**
|
|
@@ -5715,6 +5810,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5715
5810
|
workflowsMwaaProperties?: never;
|
|
5716
5811
|
workflowsServerlessProperties?: never;
|
|
5717
5812
|
lakehouseProperties?: never;
|
|
5813
|
+
vpcProperties?: never;
|
|
5718
5814
|
$unknown?: never;
|
|
5719
5815
|
}
|
|
5720
5816
|
/**
|
|
@@ -5735,6 +5831,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5735
5831
|
workflowsMwaaProperties?: never;
|
|
5736
5832
|
workflowsServerlessProperties?: never;
|
|
5737
5833
|
lakehouseProperties?: never;
|
|
5834
|
+
vpcProperties?: never;
|
|
5738
5835
|
$unknown?: never;
|
|
5739
5836
|
}
|
|
5740
5837
|
/**
|
|
@@ -5755,6 +5852,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5755
5852
|
workflowsMwaaProperties?: never;
|
|
5756
5853
|
workflowsServerlessProperties?: never;
|
|
5757
5854
|
lakehouseProperties?: never;
|
|
5855
|
+
vpcProperties?: never;
|
|
5758
5856
|
$unknown?: never;
|
|
5759
5857
|
}
|
|
5760
5858
|
/**
|
|
@@ -5775,6 +5873,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5775
5873
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesOutput;
|
|
5776
5874
|
workflowsServerlessProperties?: never;
|
|
5777
5875
|
lakehouseProperties?: never;
|
|
5876
|
+
vpcProperties?: never;
|
|
5778
5877
|
$unknown?: never;
|
|
5779
5878
|
}
|
|
5780
5879
|
/**
|
|
@@ -5795,6 +5894,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5795
5894
|
workflowsMwaaProperties?: never;
|
|
5796
5895
|
workflowsServerlessProperties: WorkflowsServerlessPropertiesOutput;
|
|
5797
5896
|
lakehouseProperties?: never;
|
|
5897
|
+
vpcProperties?: never;
|
|
5798
5898
|
$unknown?: never;
|
|
5799
5899
|
}
|
|
5800
5900
|
/**
|
|
@@ -5815,6 +5915,28 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5815
5915
|
workflowsMwaaProperties?: never;
|
|
5816
5916
|
workflowsServerlessProperties?: never;
|
|
5817
5917
|
lakehouseProperties: LakehousePropertiesOutput;
|
|
5918
|
+
vpcProperties?: never;
|
|
5919
|
+
$unknown?: never;
|
|
5920
|
+
}
|
|
5921
|
+
/**
|
|
5922
|
+
* <p>The VPC properties of a connection.</p>
|
|
5923
|
+
* @public
|
|
5924
|
+
*/
|
|
5925
|
+
interface VpcPropertiesMember {
|
|
5926
|
+
athenaProperties?: never;
|
|
5927
|
+
glueProperties?: never;
|
|
5928
|
+
hyperPodProperties?: never;
|
|
5929
|
+
iamProperties?: never;
|
|
5930
|
+
redshiftProperties?: never;
|
|
5931
|
+
sparkEmrProperties?: never;
|
|
5932
|
+
sparkGlueProperties?: never;
|
|
5933
|
+
s3Properties?: never;
|
|
5934
|
+
amazonQProperties?: never;
|
|
5935
|
+
mlflowProperties?: never;
|
|
5936
|
+
workflowsMwaaProperties?: never;
|
|
5937
|
+
workflowsServerlessProperties?: never;
|
|
5938
|
+
lakehouseProperties?: never;
|
|
5939
|
+
vpcProperties: VpcPropertiesOutput;
|
|
5818
5940
|
$unknown?: never;
|
|
5819
5941
|
}
|
|
5820
5942
|
/**
|
|
@@ -5834,6 +5956,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5834
5956
|
workflowsMwaaProperties?: never;
|
|
5835
5957
|
workflowsServerlessProperties?: never;
|
|
5836
5958
|
lakehouseProperties?: never;
|
|
5959
|
+
vpcProperties?: never;
|
|
5837
5960
|
$unknown: [string, any];
|
|
5838
5961
|
}
|
|
5839
5962
|
/**
|
|
@@ -5854,6 +5977,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5854
5977
|
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesOutput) => T;
|
|
5855
5978
|
workflowsServerlessProperties: (value: WorkflowsServerlessPropertiesOutput) => T;
|
|
5856
5979
|
lakehouseProperties: (value: LakehousePropertiesOutput) => T;
|
|
5980
|
+
vpcProperties: (value: VpcPropertiesOutput) => T;
|
|
5857
5981
|
_: (name: string, value: any) => T;
|
|
5858
5982
|
}
|
|
5859
5983
|
}
|
|
@@ -6025,11 +6149,32 @@ export interface SparkEmrPropertiesPatch {
|
|
|
6025
6149
|
*/
|
|
6026
6150
|
managedEndpointArn?: string | undefined;
|
|
6027
6151
|
}
|
|
6152
|
+
/**
|
|
6153
|
+
* <p>The VPC connection properties used when updating a connection.</p>
|
|
6154
|
+
* @public
|
|
6155
|
+
*/
|
|
6156
|
+
export interface VpcPropertiesPatch {
|
|
6157
|
+
/**
|
|
6158
|
+
* <p>The identifier of the VPC.</p>
|
|
6159
|
+
* @public
|
|
6160
|
+
*/
|
|
6161
|
+
vpcId?: string | undefined;
|
|
6162
|
+
/**
|
|
6163
|
+
* <p>The subnet IDs of the VPC connection.</p>
|
|
6164
|
+
* @public
|
|
6165
|
+
*/
|
|
6166
|
+
subnetIds?: string[] | undefined;
|
|
6167
|
+
/**
|
|
6168
|
+
* <p>The security group ID of the VPC connection.</p>
|
|
6169
|
+
* @public
|
|
6170
|
+
*/
|
|
6171
|
+
securityGroupId?: string | undefined;
|
|
6172
|
+
}
|
|
6028
6173
|
/**
|
|
6029
6174
|
* <p>The connection properties patch.</p>
|
|
6030
6175
|
* @public
|
|
6031
6176
|
*/
|
|
6032
|
-
export type ConnectionPropertiesPatch = ConnectionPropertiesPatch.AmazonQPropertiesMember | ConnectionPropertiesPatch.AthenaPropertiesMember | ConnectionPropertiesPatch.GluePropertiesMember | ConnectionPropertiesPatch.IamPropertiesMember | ConnectionPropertiesPatch.LakehousePropertiesMember | ConnectionPropertiesPatch.MlflowPropertiesMember | ConnectionPropertiesPatch.RedshiftPropertiesMember | ConnectionPropertiesPatch.S3PropertiesMember | ConnectionPropertiesPatch.SparkEmrPropertiesMember | ConnectionPropertiesPatch.$UnknownMember;
|
|
6177
|
+
export type ConnectionPropertiesPatch = ConnectionPropertiesPatch.AmazonQPropertiesMember | ConnectionPropertiesPatch.AthenaPropertiesMember | ConnectionPropertiesPatch.GluePropertiesMember | ConnectionPropertiesPatch.IamPropertiesMember | ConnectionPropertiesPatch.LakehousePropertiesMember | ConnectionPropertiesPatch.MlflowPropertiesMember | ConnectionPropertiesPatch.RedshiftPropertiesMember | ConnectionPropertiesPatch.S3PropertiesMember | ConnectionPropertiesPatch.SparkEmrPropertiesMember | ConnectionPropertiesPatch.VpcPropertiesMember | ConnectionPropertiesPatch.$UnknownMember;
|
|
6033
6178
|
/**
|
|
6034
6179
|
* @public
|
|
6035
6180
|
*/
|
|
@@ -6048,6 +6193,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6048
6193
|
amazonQProperties?: never;
|
|
6049
6194
|
mlflowProperties?: never;
|
|
6050
6195
|
lakehouseProperties?: never;
|
|
6196
|
+
vpcProperties?: never;
|
|
6051
6197
|
$unknown?: never;
|
|
6052
6198
|
}
|
|
6053
6199
|
/**
|
|
@@ -6064,6 +6210,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6064
6210
|
amazonQProperties?: never;
|
|
6065
6211
|
mlflowProperties?: never;
|
|
6066
6212
|
lakehouseProperties?: never;
|
|
6213
|
+
vpcProperties?: never;
|
|
6067
6214
|
$unknown?: never;
|
|
6068
6215
|
}
|
|
6069
6216
|
/**
|
|
@@ -6080,6 +6227,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6080
6227
|
amazonQProperties?: never;
|
|
6081
6228
|
mlflowProperties?: never;
|
|
6082
6229
|
lakehouseProperties?: never;
|
|
6230
|
+
vpcProperties?: never;
|
|
6083
6231
|
$unknown?: never;
|
|
6084
6232
|
}
|
|
6085
6233
|
/**
|
|
@@ -6096,6 +6244,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6096
6244
|
amazonQProperties?: never;
|
|
6097
6245
|
mlflowProperties?: never;
|
|
6098
6246
|
lakehouseProperties?: never;
|
|
6247
|
+
vpcProperties?: never;
|
|
6099
6248
|
$unknown?: never;
|
|
6100
6249
|
}
|
|
6101
6250
|
/**
|
|
@@ -6112,6 +6261,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6112
6261
|
amazonQProperties?: never;
|
|
6113
6262
|
mlflowProperties?: never;
|
|
6114
6263
|
lakehouseProperties?: never;
|
|
6264
|
+
vpcProperties?: never;
|
|
6115
6265
|
$unknown?: never;
|
|
6116
6266
|
}
|
|
6117
6267
|
/**
|
|
@@ -6128,6 +6278,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6128
6278
|
amazonQProperties?: never;
|
|
6129
6279
|
mlflowProperties?: never;
|
|
6130
6280
|
lakehouseProperties?: never;
|
|
6281
|
+
vpcProperties?: never;
|
|
6131
6282
|
$unknown?: never;
|
|
6132
6283
|
}
|
|
6133
6284
|
/**
|
|
@@ -6144,6 +6295,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6144
6295
|
amazonQProperties: AmazonQPropertiesPatch;
|
|
6145
6296
|
mlflowProperties?: never;
|
|
6146
6297
|
lakehouseProperties?: never;
|
|
6298
|
+
vpcProperties?: never;
|
|
6147
6299
|
$unknown?: never;
|
|
6148
6300
|
}
|
|
6149
6301
|
/**
|
|
@@ -6160,6 +6312,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6160
6312
|
amazonQProperties?: never;
|
|
6161
6313
|
mlflowProperties: MlflowPropertiesPatch;
|
|
6162
6314
|
lakehouseProperties?: never;
|
|
6315
|
+
vpcProperties?: never;
|
|
6163
6316
|
$unknown?: never;
|
|
6164
6317
|
}
|
|
6165
6318
|
/**
|
|
@@ -6176,6 +6329,24 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6176
6329
|
amazonQProperties?: never;
|
|
6177
6330
|
mlflowProperties?: never;
|
|
6178
6331
|
lakehouseProperties: LakehousePropertiesPatch;
|
|
6332
|
+
vpcProperties?: never;
|
|
6333
|
+
$unknown?: never;
|
|
6334
|
+
}
|
|
6335
|
+
/**
|
|
6336
|
+
* <p>The VPC properties of a connection properties patch.</p>
|
|
6337
|
+
* @public
|
|
6338
|
+
*/
|
|
6339
|
+
interface VpcPropertiesMember {
|
|
6340
|
+
athenaProperties?: never;
|
|
6341
|
+
glueProperties?: never;
|
|
6342
|
+
iamProperties?: never;
|
|
6343
|
+
redshiftProperties?: never;
|
|
6344
|
+
sparkEmrProperties?: never;
|
|
6345
|
+
s3Properties?: never;
|
|
6346
|
+
amazonQProperties?: never;
|
|
6347
|
+
mlflowProperties?: never;
|
|
6348
|
+
lakehouseProperties?: never;
|
|
6349
|
+
vpcProperties: VpcPropertiesPatch;
|
|
6179
6350
|
$unknown?: never;
|
|
6180
6351
|
}
|
|
6181
6352
|
/**
|
|
@@ -6191,6 +6362,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6191
6362
|
amazonQProperties?: never;
|
|
6192
6363
|
mlflowProperties?: never;
|
|
6193
6364
|
lakehouseProperties?: never;
|
|
6365
|
+
vpcProperties?: never;
|
|
6194
6366
|
$unknown: [string, any];
|
|
6195
6367
|
}
|
|
6196
6368
|
/**
|
|
@@ -6207,6 +6379,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6207
6379
|
amazonQProperties: (value: AmazonQPropertiesPatch) => T;
|
|
6208
6380
|
mlflowProperties: (value: MlflowPropertiesPatch) => T;
|
|
6209
6381
|
lakehouseProperties: (value: LakehousePropertiesPatch) => T;
|
|
6382
|
+
vpcProperties: (value: VpcPropertiesPatch) => T;
|
|
6210
6383
|
_: (name: string, value: any) => T;
|
|
6211
6384
|
}
|
|
6212
6385
|
}
|
|
@@ -10008,81 +10181,3 @@ export interface CreateSubscriptionGrantInput {
|
|
|
10008
10181
|
*/
|
|
10009
10182
|
clientToken?: string | undefined;
|
|
10010
10183
|
}
|
|
10011
|
-
/**
|
|
10012
|
-
* <p>Specifies the error message that is returned if the operation cannot be successfully completed.</p>
|
|
10013
|
-
* @public
|
|
10014
|
-
*/
|
|
10015
|
-
export interface FailureCause {
|
|
10016
|
-
/**
|
|
10017
|
-
* <p>The description of the error message.</p>
|
|
10018
|
-
* @public
|
|
10019
|
-
*/
|
|
10020
|
-
message?: string | undefined;
|
|
10021
|
-
}
|
|
10022
|
-
/**
|
|
10023
|
-
* <p>The details of the asset for which the subscription grant is created.</p>
|
|
10024
|
-
* @public
|
|
10025
|
-
*/
|
|
10026
|
-
export interface SubscribedAsset {
|
|
10027
|
-
/**
|
|
10028
|
-
* <p>The identifier of the asset for which the subscription grant is created.</p>
|
|
10029
|
-
* @public
|
|
10030
|
-
*/
|
|
10031
|
-
assetId: string | undefined;
|
|
10032
|
-
/**
|
|
10033
|
-
* <p>The revision of the asset for which the subscription grant is created.</p>
|
|
10034
|
-
* @public
|
|
10035
|
-
*/
|
|
10036
|
-
assetRevision: string | undefined;
|
|
10037
|
-
/**
|
|
10038
|
-
* <p>The status of the asset for which the subscription grant is created.</p>
|
|
10039
|
-
* @public
|
|
10040
|
-
*/
|
|
10041
|
-
status: SubscriptionGrantStatus | undefined;
|
|
10042
|
-
/**
|
|
10043
|
-
* <p>The target name of the asset for which the subscription grant is created.</p>
|
|
10044
|
-
* @public
|
|
10045
|
-
*/
|
|
10046
|
-
targetName?: string | undefined;
|
|
10047
|
-
/**
|
|
10048
|
-
* <p>The failure cause included in the details of the asset for which the subscription grant is created.</p>
|
|
10049
|
-
* @public
|
|
10050
|
-
*/
|
|
10051
|
-
failureCause?: FailureCause | undefined;
|
|
10052
|
-
/**
|
|
10053
|
-
* <p>The timestamp of when the subscription grant to the asset is created.</p>
|
|
10054
|
-
* @public
|
|
10055
|
-
*/
|
|
10056
|
-
grantedTimestamp?: Date | undefined;
|
|
10057
|
-
/**
|
|
10058
|
-
* <p>The failure timestamp included in the details of the asset for which the subscription grant is created.</p>
|
|
10059
|
-
* @public
|
|
10060
|
-
*/
|
|
10061
|
-
failureTimestamp?: Date | undefined;
|
|
10062
|
-
/**
|
|
10063
|
-
* <p>The asset scope of the subscribed asset.</p>
|
|
10064
|
-
* @public
|
|
10065
|
-
*/
|
|
10066
|
-
assetScope?: AssetScope | undefined;
|
|
10067
|
-
/**
|
|
10068
|
-
* <p>The asset permissions.</p>
|
|
10069
|
-
* @public
|
|
10070
|
-
*/
|
|
10071
|
-
permissions?: Permissions | undefined;
|
|
10072
|
-
}
|
|
10073
|
-
/**
|
|
10074
|
-
* <p>A revision of an asset published in a Amazon DataZone catalog.</p>
|
|
10075
|
-
* @public
|
|
10076
|
-
*/
|
|
10077
|
-
export interface ListingRevision {
|
|
10078
|
-
/**
|
|
10079
|
-
* <p>An identifier of a revision of an asset published in a Amazon DataZone catalog.</p>
|
|
10080
|
-
* @public
|
|
10081
|
-
*/
|
|
10082
|
-
id: string | undefined;
|
|
10083
|
-
/**
|
|
10084
|
-
* <p>The details of a revision of an asset published in a Amazon DataZone catalog.</p>
|
|
10085
|
-
* @public
|
|
10086
|
-
*/
|
|
10087
|
-
revision: string | undefined;
|
|
10088
|
-
}
|