@aws-sdk/client-datazone 3.844.0 → 3.845.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 +46 -34
- package/dist-es/commands/UpdateRuleCommand.js +1 -1
- package/dist-es/models/models_0.js +13 -9
- package/dist-es/models/models_1.js +9 -17
- package/dist-es/models/models_2.js +17 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/CreateConnectionCommand.d.ts +12 -2
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +2 -1
- package/dist-types/commands/GetConnectionCommand.d.ts +8 -2
- package/dist-types/commands/ListConnectionsCommand.d.ts +9 -3
- package/dist-types/commands/UpdateConnectionCommand.d.ts +12 -2
- package/dist-types/commands/UpdateRuleCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +131 -95
- package/dist-types/models/models_1.d.ts +92 -131
- package/dist-types/models/models_2.d.ts +132 -2
- package/dist-types/ts3.4/commands/CreateSubscriptionGrantCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/UpdateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +75 -28
- package/dist-types/ts3.4/models/models_1.d.ts +27 -38
- package/dist-types/ts3.4/models/models_2.d.ts +42 -2
- package/package.json +11 -11
|
@@ -4256,6 +4256,22 @@ export interface RedshiftPropertiesInput {
|
|
|
4256
4256
|
*/
|
|
4257
4257
|
lineageSync?: RedshiftLineageSyncConfigurationInput | undefined;
|
|
4258
4258
|
}
|
|
4259
|
+
/**
|
|
4260
|
+
* <p>The Amazon S3 properties of a connection.</p>
|
|
4261
|
+
* @public
|
|
4262
|
+
*/
|
|
4263
|
+
export interface S3PropertiesInput {
|
|
4264
|
+
/**
|
|
4265
|
+
* <p>The Amazon S3 URI that's part of the Amazon S3 properties of a connection.</p>
|
|
4266
|
+
* @public
|
|
4267
|
+
*/
|
|
4268
|
+
s3Uri: string | undefined;
|
|
4269
|
+
/**
|
|
4270
|
+
* <p>The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection.</p>
|
|
4271
|
+
* @public
|
|
4272
|
+
*/
|
|
4273
|
+
s3AccessGrantLocationId?: string | undefined;
|
|
4274
|
+
}
|
|
4259
4275
|
/**
|
|
4260
4276
|
* <p>The Spark EMR properties.</p>
|
|
4261
4277
|
* @public
|
|
@@ -4360,7 +4376,7 @@ export interface SparkGluePropertiesInput {
|
|
|
4360
4376
|
* <p>The properties of a connection.</p>
|
|
4361
4377
|
* @public
|
|
4362
4378
|
*/
|
|
4363
|
-
export type ConnectionPropertiesInput = ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.$UnknownMember;
|
|
4379
|
+
export type ConnectionPropertiesInput = ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.S3PropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.$UnknownMember;
|
|
4364
4380
|
/**
|
|
4365
4381
|
* @public
|
|
4366
4382
|
*/
|
|
@@ -4377,6 +4393,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4377
4393
|
redshiftProperties?: never;
|
|
4378
4394
|
sparkEmrProperties?: never;
|
|
4379
4395
|
sparkGlueProperties?: never;
|
|
4396
|
+
s3Properties?: never;
|
|
4380
4397
|
$unknown?: never;
|
|
4381
4398
|
}
|
|
4382
4399
|
/**
|
|
@@ -4391,6 +4408,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4391
4408
|
redshiftProperties?: never;
|
|
4392
4409
|
sparkEmrProperties?: never;
|
|
4393
4410
|
sparkGlueProperties?: never;
|
|
4411
|
+
s3Properties?: never;
|
|
4394
4412
|
$unknown?: never;
|
|
4395
4413
|
}
|
|
4396
4414
|
/**
|
|
@@ -4405,6 +4423,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4405
4423
|
redshiftProperties?: never;
|
|
4406
4424
|
sparkEmrProperties?: never;
|
|
4407
4425
|
sparkGlueProperties?: never;
|
|
4426
|
+
s3Properties?: never;
|
|
4408
4427
|
$unknown?: never;
|
|
4409
4428
|
}
|
|
4410
4429
|
/**
|
|
@@ -4419,6 +4438,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4419
4438
|
redshiftProperties?: never;
|
|
4420
4439
|
sparkEmrProperties?: never;
|
|
4421
4440
|
sparkGlueProperties?: never;
|
|
4441
|
+
s3Properties?: never;
|
|
4422
4442
|
$unknown?: never;
|
|
4423
4443
|
}
|
|
4424
4444
|
/**
|
|
@@ -4433,6 +4453,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4433
4453
|
redshiftProperties: RedshiftPropertiesInput;
|
|
4434
4454
|
sparkEmrProperties?: never;
|
|
4435
4455
|
sparkGlueProperties?: never;
|
|
4456
|
+
s3Properties?: never;
|
|
4436
4457
|
$unknown?: never;
|
|
4437
4458
|
}
|
|
4438
4459
|
/**
|
|
@@ -4447,6 +4468,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4447
4468
|
redshiftProperties?: never;
|
|
4448
4469
|
sparkEmrProperties: SparkEmrPropertiesInput;
|
|
4449
4470
|
sparkGlueProperties?: never;
|
|
4471
|
+
s3Properties?: never;
|
|
4450
4472
|
$unknown?: never;
|
|
4451
4473
|
}
|
|
4452
4474
|
/**
|
|
@@ -4461,6 +4483,22 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4461
4483
|
redshiftProperties?: never;
|
|
4462
4484
|
sparkEmrProperties?: never;
|
|
4463
4485
|
sparkGlueProperties: SparkGluePropertiesInput;
|
|
4486
|
+
s3Properties?: never;
|
|
4487
|
+
$unknown?: never;
|
|
4488
|
+
}
|
|
4489
|
+
/**
|
|
4490
|
+
* <p>The Amazon S3 properties of a connection.</p>
|
|
4491
|
+
* @public
|
|
4492
|
+
*/
|
|
4493
|
+
interface S3PropertiesMember {
|
|
4494
|
+
athenaProperties?: never;
|
|
4495
|
+
glueProperties?: never;
|
|
4496
|
+
hyperPodProperties?: never;
|
|
4497
|
+
iamProperties?: never;
|
|
4498
|
+
redshiftProperties?: never;
|
|
4499
|
+
sparkEmrProperties?: never;
|
|
4500
|
+
sparkGlueProperties?: never;
|
|
4501
|
+
s3Properties: S3PropertiesInput;
|
|
4464
4502
|
$unknown?: never;
|
|
4465
4503
|
}
|
|
4466
4504
|
/**
|
|
@@ -4474,6 +4512,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4474
4512
|
redshiftProperties?: never;
|
|
4475
4513
|
sparkEmrProperties?: never;
|
|
4476
4514
|
sparkGlueProperties?: never;
|
|
4515
|
+
s3Properties?: never;
|
|
4477
4516
|
$unknown: [string, any];
|
|
4478
4517
|
}
|
|
4479
4518
|
interface Visitor<T> {
|
|
@@ -4484,6 +4523,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4484
4523
|
redshiftProperties: (value: RedshiftPropertiesInput) => T;
|
|
4485
4524
|
sparkEmrProperties: (value: SparkEmrPropertiesInput) => T;
|
|
4486
4525
|
sparkGlueProperties: (value: SparkGluePropertiesInput) => T;
|
|
4526
|
+
s3Properties: (value: S3PropertiesInput) => T;
|
|
4487
4527
|
_: (name: string, value: any) => T;
|
|
4488
4528
|
}
|
|
4489
4529
|
const visit: <T>(value: ConnectionPropertiesInput, visitor: Visitor<T>) => T;
|
|
@@ -4644,6 +4684,32 @@ export interface RedshiftPropertiesOutput {
|
|
|
4644
4684
|
*/
|
|
4645
4685
|
databaseName?: string | undefined;
|
|
4646
4686
|
}
|
|
4687
|
+
/**
|
|
4688
|
+
* <p>The Amazon S3 properties of a connection.</p>
|
|
4689
|
+
* @public
|
|
4690
|
+
*/
|
|
4691
|
+
export interface S3PropertiesOutput {
|
|
4692
|
+
/**
|
|
4693
|
+
* <p>The Amazon S3 URI that's part of the Amazon S3 properties of a connection.</p>
|
|
4694
|
+
* @public
|
|
4695
|
+
*/
|
|
4696
|
+
s3Uri: string | undefined;
|
|
4697
|
+
/**
|
|
4698
|
+
* <p>The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection.</p>
|
|
4699
|
+
* @public
|
|
4700
|
+
*/
|
|
4701
|
+
s3AccessGrantLocationId?: string | undefined;
|
|
4702
|
+
/**
|
|
4703
|
+
* <p>The status of the Amazon S3 connection.</p>
|
|
4704
|
+
* @public
|
|
4705
|
+
*/
|
|
4706
|
+
status?: ConnectionStatus | undefined;
|
|
4707
|
+
/**
|
|
4708
|
+
* <p>The error message that gets displayed.</p>
|
|
4709
|
+
* @public
|
|
4710
|
+
*/
|
|
4711
|
+
errorMessage?: string | undefined;
|
|
4712
|
+
}
|
|
4647
4713
|
/**
|
|
4648
4714
|
* @public
|
|
4649
4715
|
* @enum
|
|
@@ -4769,7 +4835,7 @@ export interface SparkGluePropertiesOutput {
|
|
|
4769
4835
|
* <p>The properties of a connection.</p>
|
|
4770
4836
|
* @public
|
|
4771
4837
|
*/
|
|
4772
|
-
export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
|
|
4838
|
+
export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.S3PropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
|
|
4773
4839
|
/**
|
|
4774
4840
|
* @public
|
|
4775
4841
|
*/
|
|
@@ -4786,6 +4852,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4786
4852
|
redshiftProperties?: never;
|
|
4787
4853
|
sparkEmrProperties?: never;
|
|
4788
4854
|
sparkGlueProperties?: never;
|
|
4855
|
+
s3Properties?: never;
|
|
4789
4856
|
$unknown?: never;
|
|
4790
4857
|
}
|
|
4791
4858
|
/**
|
|
@@ -4800,6 +4867,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4800
4867
|
redshiftProperties?: never;
|
|
4801
4868
|
sparkEmrProperties?: never;
|
|
4802
4869
|
sparkGlueProperties?: never;
|
|
4870
|
+
s3Properties?: never;
|
|
4803
4871
|
$unknown?: never;
|
|
4804
4872
|
}
|
|
4805
4873
|
/**
|
|
@@ -4814,6 +4882,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4814
4882
|
redshiftProperties?: never;
|
|
4815
4883
|
sparkEmrProperties?: never;
|
|
4816
4884
|
sparkGlueProperties?: never;
|
|
4885
|
+
s3Properties?: never;
|
|
4817
4886
|
$unknown?: never;
|
|
4818
4887
|
}
|
|
4819
4888
|
/**
|
|
@@ -4828,6 +4897,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4828
4897
|
redshiftProperties?: never;
|
|
4829
4898
|
sparkEmrProperties?: never;
|
|
4830
4899
|
sparkGlueProperties?: never;
|
|
4900
|
+
s3Properties?: never;
|
|
4831
4901
|
$unknown?: never;
|
|
4832
4902
|
}
|
|
4833
4903
|
/**
|
|
@@ -4842,6 +4912,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4842
4912
|
redshiftProperties: RedshiftPropertiesOutput;
|
|
4843
4913
|
sparkEmrProperties?: never;
|
|
4844
4914
|
sparkGlueProperties?: never;
|
|
4915
|
+
s3Properties?: never;
|
|
4845
4916
|
$unknown?: never;
|
|
4846
4917
|
}
|
|
4847
4918
|
/**
|
|
@@ -4856,6 +4927,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4856
4927
|
redshiftProperties?: never;
|
|
4857
4928
|
sparkEmrProperties: SparkEmrPropertiesOutput;
|
|
4858
4929
|
sparkGlueProperties?: never;
|
|
4930
|
+
s3Properties?: never;
|
|
4859
4931
|
$unknown?: never;
|
|
4860
4932
|
}
|
|
4861
4933
|
/**
|
|
@@ -4870,6 +4942,22 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4870
4942
|
redshiftProperties?: never;
|
|
4871
4943
|
sparkEmrProperties?: never;
|
|
4872
4944
|
sparkGlueProperties: SparkGluePropertiesOutput;
|
|
4945
|
+
s3Properties?: never;
|
|
4946
|
+
$unknown?: never;
|
|
4947
|
+
}
|
|
4948
|
+
/**
|
|
4949
|
+
* <p>The Amazon S3 properties of a connection.</p>
|
|
4950
|
+
* @public
|
|
4951
|
+
*/
|
|
4952
|
+
interface S3PropertiesMember {
|
|
4953
|
+
athenaProperties?: never;
|
|
4954
|
+
glueProperties?: never;
|
|
4955
|
+
hyperPodProperties?: never;
|
|
4956
|
+
iamProperties?: never;
|
|
4957
|
+
redshiftProperties?: never;
|
|
4958
|
+
sparkEmrProperties?: never;
|
|
4959
|
+
sparkGlueProperties?: never;
|
|
4960
|
+
s3Properties: S3PropertiesOutput;
|
|
4873
4961
|
$unknown?: never;
|
|
4874
4962
|
}
|
|
4875
4963
|
/**
|
|
@@ -4883,6 +4971,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4883
4971
|
redshiftProperties?: never;
|
|
4884
4972
|
sparkEmrProperties?: never;
|
|
4885
4973
|
sparkGlueProperties?: never;
|
|
4974
|
+
s3Properties?: never;
|
|
4886
4975
|
$unknown: [string, any];
|
|
4887
4976
|
}
|
|
4888
4977
|
interface Visitor<T> {
|
|
@@ -4893,6 +4982,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
4893
4982
|
redshiftProperties: (value: RedshiftPropertiesOutput) => T;
|
|
4894
4983
|
sparkEmrProperties: (value: SparkEmrPropertiesOutput) => T;
|
|
4895
4984
|
sparkGlueProperties: (value: SparkGluePropertiesOutput) => T;
|
|
4985
|
+
s3Properties: (value: S3PropertiesOutput) => T;
|
|
4896
4986
|
_: (name: string, value: any) => T;
|
|
4897
4987
|
}
|
|
4898
4988
|
const visit: <T>(value: ConnectionPropertiesOutput, visitor: Visitor<T>) => T;
|
|
@@ -4977,6 +5067,22 @@ export interface RedshiftPropertiesPatch {
|
|
|
4977
5067
|
*/
|
|
4978
5068
|
lineageSync?: RedshiftLineageSyncConfigurationInput | undefined;
|
|
4979
5069
|
}
|
|
5070
|
+
/**
|
|
5071
|
+
* <p>The Amazon S3 properties patch of a connection.</p>
|
|
5072
|
+
* @public
|
|
5073
|
+
*/
|
|
5074
|
+
export interface S3PropertiesPatch {
|
|
5075
|
+
/**
|
|
5076
|
+
* <p>The Amazon S3 URI that's part of the Amazon S3 properties patch of a connection.</p>
|
|
5077
|
+
* @public
|
|
5078
|
+
*/
|
|
5079
|
+
s3Uri: string | undefined;
|
|
5080
|
+
/**
|
|
5081
|
+
* <p>The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties patch of a connection.</p>
|
|
5082
|
+
* @public
|
|
5083
|
+
*/
|
|
5084
|
+
s3AccessGrantLocationId?: string | undefined;
|
|
5085
|
+
}
|
|
4980
5086
|
/**
|
|
4981
5087
|
* <p>The Spark EMR properties patch.</p>
|
|
4982
5088
|
* @public
|
|
@@ -5022,7 +5128,7 @@ export interface SparkEmrPropertiesPatch {
|
|
|
5022
5128
|
* <p>The connection properties patch.</p>
|
|
5023
5129
|
* @public
|
|
5024
5130
|
*/
|
|
5025
|
-
export type ConnectionPropertiesPatch = ConnectionPropertiesPatch.AthenaPropertiesMember | ConnectionPropertiesPatch.GluePropertiesMember | ConnectionPropertiesPatch.IamPropertiesMember | ConnectionPropertiesPatch.RedshiftPropertiesMember | ConnectionPropertiesPatch.SparkEmrPropertiesMember | ConnectionPropertiesPatch.$UnknownMember;
|
|
5131
|
+
export type ConnectionPropertiesPatch = ConnectionPropertiesPatch.AthenaPropertiesMember | ConnectionPropertiesPatch.GluePropertiesMember | ConnectionPropertiesPatch.IamPropertiesMember | ConnectionPropertiesPatch.RedshiftPropertiesMember | ConnectionPropertiesPatch.S3PropertiesMember | ConnectionPropertiesPatch.SparkEmrPropertiesMember | ConnectionPropertiesPatch.$UnknownMember;
|
|
5026
5132
|
/**
|
|
5027
5133
|
* @public
|
|
5028
5134
|
*/
|
|
@@ -5037,6 +5143,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
5037
5143
|
iamProperties?: never;
|
|
5038
5144
|
redshiftProperties?: never;
|
|
5039
5145
|
sparkEmrProperties?: never;
|
|
5146
|
+
s3Properties?: never;
|
|
5040
5147
|
$unknown?: never;
|
|
5041
5148
|
}
|
|
5042
5149
|
/**
|
|
@@ -5049,6 +5156,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
5049
5156
|
iamProperties?: never;
|
|
5050
5157
|
redshiftProperties?: never;
|
|
5051
5158
|
sparkEmrProperties?: never;
|
|
5159
|
+
s3Properties?: never;
|
|
5052
5160
|
$unknown?: never;
|
|
5053
5161
|
}
|
|
5054
5162
|
/**
|
|
@@ -5061,6 +5169,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
5061
5169
|
iamProperties: IamPropertiesPatch;
|
|
5062
5170
|
redshiftProperties?: never;
|
|
5063
5171
|
sparkEmrProperties?: never;
|
|
5172
|
+
s3Properties?: never;
|
|
5064
5173
|
$unknown?: never;
|
|
5065
5174
|
}
|
|
5066
5175
|
/**
|
|
@@ -5073,6 +5182,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
5073
5182
|
iamProperties?: never;
|
|
5074
5183
|
redshiftProperties: RedshiftPropertiesPatch;
|
|
5075
5184
|
sparkEmrProperties?: never;
|
|
5185
|
+
s3Properties?: never;
|
|
5076
5186
|
$unknown?: never;
|
|
5077
5187
|
}
|
|
5078
5188
|
/**
|
|
@@ -5085,6 +5195,20 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
5085
5195
|
iamProperties?: never;
|
|
5086
5196
|
redshiftProperties?: never;
|
|
5087
5197
|
sparkEmrProperties: SparkEmrPropertiesPatch;
|
|
5198
|
+
s3Properties?: never;
|
|
5199
|
+
$unknown?: never;
|
|
5200
|
+
}
|
|
5201
|
+
/**
|
|
5202
|
+
* <p>The Amazon S3 properties of a connection properties patch.</p>
|
|
5203
|
+
* @public
|
|
5204
|
+
*/
|
|
5205
|
+
interface S3PropertiesMember {
|
|
5206
|
+
athenaProperties?: never;
|
|
5207
|
+
glueProperties?: never;
|
|
5208
|
+
iamProperties?: never;
|
|
5209
|
+
redshiftProperties?: never;
|
|
5210
|
+
sparkEmrProperties?: never;
|
|
5211
|
+
s3Properties: S3PropertiesPatch;
|
|
5088
5212
|
$unknown?: never;
|
|
5089
5213
|
}
|
|
5090
5214
|
/**
|
|
@@ -5096,6 +5220,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
5096
5220
|
iamProperties?: never;
|
|
5097
5221
|
redshiftProperties?: never;
|
|
5098
5222
|
sparkEmrProperties?: never;
|
|
5223
|
+
s3Properties?: never;
|
|
5099
5224
|
$unknown: [string, any];
|
|
5100
5225
|
}
|
|
5101
5226
|
interface Visitor<T> {
|
|
@@ -5104,6 +5229,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
5104
5229
|
iamProperties: (value: IamPropertiesPatch) => T;
|
|
5105
5230
|
redshiftProperties: (value: RedshiftPropertiesPatch) => T;
|
|
5106
5231
|
sparkEmrProperties: (value: SparkEmrPropertiesPatch) => T;
|
|
5232
|
+
s3Properties: (value: S3PropertiesPatch) => T;
|
|
5107
5233
|
_: (name: string, value: any) => T;
|
|
5108
5234
|
}
|
|
5109
5235
|
const visit: <T>(value: ConnectionPropertiesPatch, visitor: Visitor<T>) => T;
|
|
@@ -5125,6 +5251,7 @@ export declare const ConnectionType: {
|
|
|
5125
5251
|
readonly ORACLE: "ORACLE";
|
|
5126
5252
|
readonly POSTGRESQL: "POSTGRESQL";
|
|
5127
5253
|
readonly REDSHIFT: "REDSHIFT";
|
|
5254
|
+
readonly S3: "S3";
|
|
5128
5255
|
readonly SAPHANA: "SAPHANA";
|
|
5129
5256
|
readonly SNOWFLAKE: "SNOWFLAKE";
|
|
5130
5257
|
readonly SPARK: "SPARK";
|
|
@@ -6905,7 +7032,7 @@ export interface CreateEnvironmentInput {
|
|
|
6905
7032
|
* environment.</p>
|
|
6906
7033
|
* @public
|
|
6907
7034
|
*/
|
|
6908
|
-
environmentProfileIdentifier
|
|
7035
|
+
environmentProfileIdentifier?: string | undefined;
|
|
6909
7036
|
/**
|
|
6910
7037
|
* <p>The user parameters of this Amazon DataZone environment.</p>
|
|
6911
7038
|
* @public
|
|
@@ -8919,97 +9046,6 @@ export declare namespace GrantedEntity {
|
|
|
8919
9046
|
}
|
|
8920
9047
|
const visit: <T>(value: GrantedEntity, visitor: Visitor<T>) => T;
|
|
8921
9048
|
}
|
|
8922
|
-
/**
|
|
8923
|
-
* @public
|
|
8924
|
-
* @enum
|
|
8925
|
-
*/
|
|
8926
|
-
export declare const SubscriptionGrantOverallStatus: {
|
|
8927
|
-
readonly COMPLETED: "COMPLETED";
|
|
8928
|
-
readonly GRANT_AND_REVOKE_FAILED: "GRANT_AND_REVOKE_FAILED";
|
|
8929
|
-
readonly GRANT_FAILED: "GRANT_FAILED";
|
|
8930
|
-
readonly INACCESSIBLE: "INACCESSIBLE";
|
|
8931
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
8932
|
-
readonly PENDING: "PENDING";
|
|
8933
|
-
readonly REVOKE_FAILED: "REVOKE_FAILED";
|
|
8934
|
-
};
|
|
8935
|
-
/**
|
|
8936
|
-
* @public
|
|
8937
|
-
*/
|
|
8938
|
-
export type SubscriptionGrantOverallStatus = (typeof SubscriptionGrantOverallStatus)[keyof typeof SubscriptionGrantOverallStatus];
|
|
8939
|
-
/**
|
|
8940
|
-
* @public
|
|
8941
|
-
*/
|
|
8942
|
-
export interface CreateSubscriptionGrantOutput {
|
|
8943
|
-
/**
|
|
8944
|
-
* <p>The ID of the subscription grant.</p>
|
|
8945
|
-
* @public
|
|
8946
|
-
*/
|
|
8947
|
-
id: string | undefined;
|
|
8948
|
-
/**
|
|
8949
|
-
* <p>The Amazon DataZone user who created the subscription grant.</p>
|
|
8950
|
-
* @public
|
|
8951
|
-
*/
|
|
8952
|
-
createdBy: string | undefined;
|
|
8953
|
-
/**
|
|
8954
|
-
* <p>The Amazon DataZone user who updated the subscription grant.</p>
|
|
8955
|
-
* @public
|
|
8956
|
-
*/
|
|
8957
|
-
updatedBy?: string | undefined;
|
|
8958
|
-
/**
|
|
8959
|
-
* <p>The ID of the Amazon DataZone domain in which the subscription grant is created.</p>
|
|
8960
|
-
* @public
|
|
8961
|
-
*/
|
|
8962
|
-
domainId: string | undefined;
|
|
8963
|
-
/**
|
|
8964
|
-
* <p>A timestamp of when the subscription grant is created.</p>
|
|
8965
|
-
* @public
|
|
8966
|
-
*/
|
|
8967
|
-
createdAt: Date | undefined;
|
|
8968
|
-
/**
|
|
8969
|
-
* <p>A timestamp of when the subscription grant was updated.</p>
|
|
8970
|
-
* @public
|
|
8971
|
-
*/
|
|
8972
|
-
updatedAt: Date | undefined;
|
|
8973
|
-
/**
|
|
8974
|
-
* <p>The ID of the subscription target for which the subscription grant is created.</p>
|
|
8975
|
-
* @public
|
|
8976
|
-
*/
|
|
8977
|
-
subscriptionTargetId: string | undefined;
|
|
8978
|
-
/**
|
|
8979
|
-
* <p>The entity to which the subscription is granted.</p>
|
|
8980
|
-
* @public
|
|
8981
|
-
*/
|
|
8982
|
-
grantedEntity: GrantedEntity | undefined;
|
|
8983
|
-
/**
|
|
8984
|
-
* <p>The status of the subscription grant.</p>
|
|
8985
|
-
* @public
|
|
8986
|
-
*/
|
|
8987
|
-
status: SubscriptionGrantOverallStatus | undefined;
|
|
8988
|
-
/**
|
|
8989
|
-
* <p>The assets for which the subscription grant is created.</p>
|
|
8990
|
-
* @public
|
|
8991
|
-
*/
|
|
8992
|
-
assets?: SubscribedAsset[] | undefined;
|
|
8993
|
-
/**
|
|
8994
|
-
* <p>The identifier of the subscription grant.</p>
|
|
8995
|
-
*
|
|
8996
|
-
* @deprecated
|
|
8997
|
-
* @public
|
|
8998
|
-
*/
|
|
8999
|
-
subscriptionId?: string | undefined;
|
|
9000
|
-
}
|
|
9001
|
-
/**
|
|
9002
|
-
* <p>The published asset for which the subscription grant is to be created.</p>
|
|
9003
|
-
* @public
|
|
9004
|
-
*/
|
|
9005
|
-
export interface SubscribedListingInput {
|
|
9006
|
-
/**
|
|
9007
|
-
* <p>The identifier of the published asset for which the subscription grant is to be
|
|
9008
|
-
* created.</p>
|
|
9009
|
-
* @public
|
|
9010
|
-
*/
|
|
9011
|
-
identifier: string | undefined;
|
|
9012
|
-
}
|
|
9013
9049
|
/**
|
|
9014
9050
|
* @internal
|
|
9015
9051
|
*/
|
|
@@ -1,4 +1,95 @@
|
|
|
1
|
-
import { ActionParameters, AssetFilterSummary, AssetListing, AssetRevision, ConfigurableEnvironmentAction, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, ConnectionType, CustomParameter, DataProductItem, DataProductStatus, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainStatus, DomainUnitOwnerProperties, DomainVersion, EnableSetting, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentStatus, FilterStatus, FormInput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, ListingStatus, ManagedPolicyType, Member, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, RecommendationConfiguration, Resource, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, ScheduleConfiguration, SingleSignOn, Status, SubscribedAsset, SubscribedListing,
|
|
1
|
+
import { ActionParameters, AssetFilterSummary, AssetListing, AssetRevision, ConfigurableEnvironmentAction, ConnectionCredentials, ConnectionPropertiesOutput, ConnectionSummary, ConnectionType, CustomParameter, DataProductItem, DataProductStatus, DataSourceConfigurationInput, DataSourceConfigurationOutput, DataSourceErrorMessage, DataSourceRunStatus, DataSourceStatus, DataZoneEntityType, Deployment, DeploymentProperties, DetailedGlossaryTerm, DomainStatus, DomainUnitOwnerProperties, DomainVersion, EnableSetting, EnvironmentConfiguration, EnvironmentConfigurationUserParameter, EnvironmentDeploymentDetails, EnvironmentStatus, FilterStatus, FormInput, FormOutput, FormTypeStatus, GlossaryStatus, GlossaryTermStatus, GrantedEntity, GroupProfileStatus, ListingStatus, ManagedPolicyType, Member, Model, OwnerProperties, PhysicalEndpoint, PolicyGrantDetail, PolicyGrantPrincipal, ProjectDeletionError, ProjectStatus, ProvisioningProperties, RecommendationConfiguration, Resource, RuleAction, RuleDetail, RuleScope, RuleTarget, RuleTargetType, RuleType, ScheduleConfiguration, SingleSignOn, Status, SubscribedAsset, SubscribedListing, SubscribedPrincipal, SubscriptionRequestStatus, SubscriptionStatus, TargetEntityType, TermRelations, TimeSeriesDataPointSummaryFormOutput, UserDesignation } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
* @enum
|
|
5
|
+
*/
|
|
6
|
+
export declare const SubscriptionGrantOverallStatus: {
|
|
7
|
+
readonly COMPLETED: "COMPLETED";
|
|
8
|
+
readonly GRANT_AND_REVOKE_FAILED: "GRANT_AND_REVOKE_FAILED";
|
|
9
|
+
readonly GRANT_FAILED: "GRANT_FAILED";
|
|
10
|
+
readonly INACCESSIBLE: "INACCESSIBLE";
|
|
11
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
12
|
+
readonly PENDING: "PENDING";
|
|
13
|
+
readonly REVOKE_FAILED: "REVOKE_FAILED";
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export type SubscriptionGrantOverallStatus = (typeof SubscriptionGrantOverallStatus)[keyof typeof SubscriptionGrantOverallStatus];
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateSubscriptionGrantOutput {
|
|
23
|
+
/**
|
|
24
|
+
* <p>The ID of the subscription grant.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
id: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The Amazon DataZone user who created the subscription grant.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
createdBy: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The Amazon DataZone user who updated the subscription grant.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
updatedBy?: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The ID of the Amazon DataZone domain in which the subscription grant is created.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
domainId: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>A timestamp of when the subscription grant is created.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
createdAt: Date | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>A timestamp of when the subscription grant was updated.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
updatedAt: Date | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The ID of the subscription target for which the subscription grant is created.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
subscriptionTargetId: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>The entity to which the subscription is granted.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
grantedEntity: GrantedEntity | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The status of the subscription grant.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
status: SubscriptionGrantOverallStatus | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p>The assets for which the subscription grant is created.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
assets?: SubscribedAsset[] | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>The identifier of the subscription grant.</p>
|
|
75
|
+
*
|
|
76
|
+
* @deprecated
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
subscriptionId?: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* <p>The published asset for which the subscription grant is to be created.</p>
|
|
83
|
+
* @public
|
|
84
|
+
*/
|
|
85
|
+
export interface SubscribedListingInput {
|
|
86
|
+
/**
|
|
87
|
+
* <p>The identifier of the published asset for which the subscription grant is to be
|
|
88
|
+
* created.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
identifier: string | undefined;
|
|
92
|
+
}
|
|
2
93
|
/**
|
|
3
94
|
* <p>The project that is to be given a subscription grant.</p>
|
|
4
95
|
* @public
|
|
@@ -9456,128 +9547,6 @@ export interface ListRulesOutput {
|
|
|
9456
9547
|
*/
|
|
9457
9548
|
nextToken?: string | undefined;
|
|
9458
9549
|
}
|
|
9459
|
-
/**
|
|
9460
|
-
* @public
|
|
9461
|
-
*/
|
|
9462
|
-
export interface UpdateRuleInput {
|
|
9463
|
-
/**
|
|
9464
|
-
* <p>The ID of the domain in which a rule is to be updated.</p>
|
|
9465
|
-
* @public
|
|
9466
|
-
*/
|
|
9467
|
-
domainIdentifier: string | undefined;
|
|
9468
|
-
/**
|
|
9469
|
-
* <p>The ID of the rule that is to be updated</p>
|
|
9470
|
-
* @public
|
|
9471
|
-
*/
|
|
9472
|
-
identifier: string | undefined;
|
|
9473
|
-
/**
|
|
9474
|
-
* <p>The name of the rule.</p>
|
|
9475
|
-
* @public
|
|
9476
|
-
*/
|
|
9477
|
-
name?: string | undefined;
|
|
9478
|
-
/**
|
|
9479
|
-
* <p>The description of the rule.</p>
|
|
9480
|
-
* @public
|
|
9481
|
-
*/
|
|
9482
|
-
description?: string | undefined;
|
|
9483
|
-
/**
|
|
9484
|
-
* <p>The scrope of the rule.</p>
|
|
9485
|
-
* @public
|
|
9486
|
-
*/
|
|
9487
|
-
scope?: RuleScope | undefined;
|
|
9488
|
-
/**
|
|
9489
|
-
* <p>The detail of the rule.</p>
|
|
9490
|
-
* @public
|
|
9491
|
-
*/
|
|
9492
|
-
detail?: RuleDetail | undefined;
|
|
9493
|
-
/**
|
|
9494
|
-
* <p>Specifies whether to update this rule in the child domain units.</p>
|
|
9495
|
-
* @public
|
|
9496
|
-
*/
|
|
9497
|
-
includeChildDomainUnits?: boolean | undefined;
|
|
9498
|
-
}
|
|
9499
|
-
/**
|
|
9500
|
-
* @public
|
|
9501
|
-
*/
|
|
9502
|
-
export interface UpdateRuleOutput {
|
|
9503
|
-
/**
|
|
9504
|
-
* <p>The ID of the rule.</p>
|
|
9505
|
-
* @public
|
|
9506
|
-
*/
|
|
9507
|
-
identifier: string | undefined;
|
|
9508
|
-
/**
|
|
9509
|
-
* <p>The revision of the rule.</p>
|
|
9510
|
-
* @public
|
|
9511
|
-
*/
|
|
9512
|
-
revision: string | undefined;
|
|
9513
|
-
/**
|
|
9514
|
-
* <p>The name of the rule.</p>
|
|
9515
|
-
* @public
|
|
9516
|
-
*/
|
|
9517
|
-
name: string | undefined;
|
|
9518
|
-
/**
|
|
9519
|
-
* <p>The type of the rule.</p>
|
|
9520
|
-
* @public
|
|
9521
|
-
*/
|
|
9522
|
-
ruleType: RuleType | undefined;
|
|
9523
|
-
/**
|
|
9524
|
-
* <p>The target of the rule.</p>
|
|
9525
|
-
* @public
|
|
9526
|
-
*/
|
|
9527
|
-
target: RuleTarget | undefined;
|
|
9528
|
-
/**
|
|
9529
|
-
* <p>The action of the rule.</p>
|
|
9530
|
-
* @public
|
|
9531
|
-
*/
|
|
9532
|
-
action: RuleAction | undefined;
|
|
9533
|
-
/**
|
|
9534
|
-
* <p>The scope of the rule.</p>
|
|
9535
|
-
* @public
|
|
9536
|
-
*/
|
|
9537
|
-
scope: RuleScope | undefined;
|
|
9538
|
-
/**
|
|
9539
|
-
* <p>The detail of the rule.</p>
|
|
9540
|
-
* @public
|
|
9541
|
-
*/
|
|
9542
|
-
detail: RuleDetail | undefined;
|
|
9543
|
-
/**
|
|
9544
|
-
* <p>The description of the rule.</p>
|
|
9545
|
-
* @public
|
|
9546
|
-
*/
|
|
9547
|
-
description?: string | undefined;
|
|
9548
|
-
/**
|
|
9549
|
-
* <p>The timestamp at which the rule was created.</p>
|
|
9550
|
-
* @public
|
|
9551
|
-
*/
|
|
9552
|
-
createdAt: Date | undefined;
|
|
9553
|
-
/**
|
|
9554
|
-
* <p>The timestamp at which the rule was last updated.</p>
|
|
9555
|
-
* @public
|
|
9556
|
-
*/
|
|
9557
|
-
updatedAt: Date | undefined;
|
|
9558
|
-
/**
|
|
9559
|
-
* <p>The user who created the rule.</p>
|
|
9560
|
-
* @public
|
|
9561
|
-
*/
|
|
9562
|
-
createdBy: string | undefined;
|
|
9563
|
-
/**
|
|
9564
|
-
* <p>The timestamp at which the rule was last updated.</p>
|
|
9565
|
-
* @public
|
|
9566
|
-
*/
|
|
9567
|
-
lastUpdatedBy: string | undefined;
|
|
9568
|
-
}
|
|
9569
|
-
/**
|
|
9570
|
-
* @public
|
|
9571
|
-
* @enum
|
|
9572
|
-
*/
|
|
9573
|
-
export declare const SearchOutputAdditionalAttribute: {
|
|
9574
|
-
readonly FORMS: "FORMS";
|
|
9575
|
-
readonly TIME_SERIES_DATA_POINT_FORMS: "TIME_SERIES_DATA_POINT_FORMS";
|
|
9576
|
-
};
|
|
9577
|
-
/**
|
|
9578
|
-
* @public
|
|
9579
|
-
*/
|
|
9580
|
-
export type SearchOutputAdditionalAttribute = (typeof SearchOutputAdditionalAttribute)[keyof typeof SearchOutputAdditionalAttribute];
|
|
9581
9550
|
/**
|
|
9582
9551
|
* @internal
|
|
9583
9552
|
*/
|
|
@@ -9906,11 +9875,3 @@ export declare const RuleSummaryFilterSensitiveLog: (obj: RuleSummary) => any;
|
|
|
9906
9875
|
* @internal
|
|
9907
9876
|
*/
|
|
9908
9877
|
export declare const ListRulesOutputFilterSensitiveLog: (obj: ListRulesOutput) => any;
|
|
9909
|
-
/**
|
|
9910
|
-
* @internal
|
|
9911
|
-
*/
|
|
9912
|
-
export declare const UpdateRuleInputFilterSensitiveLog: (obj: UpdateRuleInput) => any;
|
|
9913
|
-
/**
|
|
9914
|
-
* @internal
|
|
9915
|
-
*/
|
|
9916
|
-
export declare const UpdateRuleOutputFilterSensitiveLog: (obj: UpdateRuleOutput) => any;
|