@aws-sdk/client-datazone 3.1076.0 → 3.1077.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 +172 -108
- package/dist-es/models/enums.js +66 -66
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +94 -39
- package/dist-types/commands/CreateConnectionCommand.d.ts +86 -0
- package/dist-types/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/commands/CreateSubscriptionGrantCommand.d.ts +1 -2
- package/dist-types/commands/GetConnectionCommand.d.ts +15 -0
- package/dist-types/commands/GetNotebookRunCommand.d.ts +2 -1
- package/dist-types/commands/ListConnectionsCommand.d.ts +15 -0
- package/dist-types/commands/ListNotebookRunsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateConnectionCommand.d.ts +36 -0
- package/dist-types/models/enums.d.ts +74 -74
- package/dist-types/models/models_0.d.ts +329 -264
- package/dist-types/models/models_1.d.ts +261 -313
- package/dist-types/models/models_2.d.ts +314 -3
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +8 -0
- package/dist-types/ts3.4/commands/CreateRuleCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateSubscriptionGrantCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetNotebookRunCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListNotebookRunsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/enums.d.ts +67 -67
- package/dist-types/ts3.4/models/models_0.d.ts +147 -81
- package/dist-types/ts3.4/models/models_1.d.ts +85 -73
- package/dist-types/ts3.4/models/models_2.d.ts +73 -8
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +8 -0
- package/package.json +6 -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,
|
|
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, RuleScopeSelectionMode, 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
|
|
@@ -4776,6 +4776,125 @@ export interface S3PropertiesInput {
|
|
|
4776
4776
|
*/
|
|
4777
4777
|
registerS3AccessGrantLocation?: boolean | undefined;
|
|
4778
4778
|
}
|
|
4779
|
+
/**
|
|
4780
|
+
* <p>Contains the network and authentication settings for a connection, including connection credentials, physical network requirements, and compute-environment validation options.</p>
|
|
4781
|
+
* @public
|
|
4782
|
+
*/
|
|
4783
|
+
export interface ConnectivityProperties {
|
|
4784
|
+
/**
|
|
4785
|
+
* <p>The connection properties for this configuration.</p>
|
|
4786
|
+
* @public
|
|
4787
|
+
*/
|
|
4788
|
+
connectionProperties?: Record<string, string> | undefined;
|
|
4789
|
+
/**
|
|
4790
|
+
* <p>The physical network requirements for the connection, such as the subnet, security group, and VPC settings needed to reach the data source.</p>
|
|
4791
|
+
* @public
|
|
4792
|
+
*/
|
|
4793
|
+
physicalConnectionRequirements?: PhysicalConnectionRequirements | undefined;
|
|
4794
|
+
/**
|
|
4795
|
+
* <p>The name of the connectivity configuration.</p>
|
|
4796
|
+
* @public
|
|
4797
|
+
*/
|
|
4798
|
+
name?: string | undefined;
|
|
4799
|
+
/**
|
|
4800
|
+
* <p>The description of the connectivity configuration.</p>
|
|
4801
|
+
* @public
|
|
4802
|
+
*/
|
|
4803
|
+
description?: string | undefined;
|
|
4804
|
+
/**
|
|
4805
|
+
* <p>Specifies whether to validate credentials for the connectivity configuration. Defaults to true if not specified.</p>
|
|
4806
|
+
* @public
|
|
4807
|
+
*/
|
|
4808
|
+
validateCredentials?: boolean | undefined;
|
|
4809
|
+
/**
|
|
4810
|
+
* <p>The compute environments to use when validating connectivity. The service validates that the connection is reachable from each specified environment.</p>
|
|
4811
|
+
* @public
|
|
4812
|
+
*/
|
|
4813
|
+
validateForComputeEnvironments?: ComputeEnvironments[] | undefined;
|
|
4814
|
+
/**
|
|
4815
|
+
* <p>The Spark properties for this configuration.</p>
|
|
4816
|
+
* @public
|
|
4817
|
+
*/
|
|
4818
|
+
sparkProperties?: Record<string, string> | undefined;
|
|
4819
|
+
/**
|
|
4820
|
+
* <p>The Athena properties for this configuration.</p>
|
|
4821
|
+
* @public
|
|
4822
|
+
*/
|
|
4823
|
+
athenaProperties?: Record<string, string> | undefined;
|
|
4824
|
+
/**
|
|
4825
|
+
* <p>The Python properties for this configuration.</p>
|
|
4826
|
+
* @public
|
|
4827
|
+
*/
|
|
4828
|
+
pythonProperties?: Record<string, string> | undefined;
|
|
4829
|
+
/**
|
|
4830
|
+
* <p>The authentication settings for this configuration.</p>
|
|
4831
|
+
* @public
|
|
4832
|
+
*/
|
|
4833
|
+
authenticationConfiguration?: AuthenticationConfigurationInput | undefined;
|
|
4834
|
+
}
|
|
4835
|
+
/**
|
|
4836
|
+
* <p>Contains the configuration for mapping user identities to Snowflake users, including the username attribute and optional prefix applied during the mapping.</p>
|
|
4837
|
+
* @public
|
|
4838
|
+
*/
|
|
4839
|
+
export interface IdentityMapping {
|
|
4840
|
+
/**
|
|
4841
|
+
* <p>The username attribute used for the identity mapping.</p>
|
|
4842
|
+
* @public
|
|
4843
|
+
*/
|
|
4844
|
+
usernameAttribute: string | undefined;
|
|
4845
|
+
/**
|
|
4846
|
+
* <p>The prefix used for the identity mapping.</p>
|
|
4847
|
+
* @public
|
|
4848
|
+
*/
|
|
4849
|
+
prefix?: string | undefined;
|
|
4850
|
+
}
|
|
4851
|
+
/**
|
|
4852
|
+
* <p>Contains the settings for configuring lineage sync on a Snowflake connection, including the schedule, timezone, and enabled state.</p>
|
|
4853
|
+
* @public
|
|
4854
|
+
*/
|
|
4855
|
+
export interface LineageSyncInput {
|
|
4856
|
+
/**
|
|
4857
|
+
* <p>The timezone of the lineage sync schedule.</p>
|
|
4858
|
+
* @public
|
|
4859
|
+
*/
|
|
4860
|
+
timezone?: Timezone | undefined;
|
|
4861
|
+
/**
|
|
4862
|
+
* <p>Specifies whether lineage sync is enabled.</p>
|
|
4863
|
+
* @public
|
|
4864
|
+
*/
|
|
4865
|
+
enabled: boolean | undefined;
|
|
4866
|
+
/**
|
|
4867
|
+
* <p>The schedule of the lineage sync.</p>
|
|
4868
|
+
* @public
|
|
4869
|
+
*/
|
|
4870
|
+
schedule?: string | undefined;
|
|
4871
|
+
}
|
|
4872
|
+
/**
|
|
4873
|
+
* <p>Contains the Snowflake-specific settings required when creating or updating a connection, including the Snowflake role, identity mapping, and lineage sync configuration.</p>
|
|
4874
|
+
* @public
|
|
4875
|
+
*/
|
|
4876
|
+
export interface SnowflakePropertiesInput {
|
|
4877
|
+
/**
|
|
4878
|
+
* <p>The connectivity properties of the Snowflake connection.</p>
|
|
4879
|
+
* @public
|
|
4880
|
+
*/
|
|
4881
|
+
connectivityProperties?: ConnectivityProperties | undefined;
|
|
4882
|
+
/**
|
|
4883
|
+
* <p>The Snowflake role used to access Snowflake resources.</p>
|
|
4884
|
+
* @public
|
|
4885
|
+
*/
|
|
4886
|
+
snowflakeRole: string | undefined;
|
|
4887
|
+
/**
|
|
4888
|
+
* <p>The identity mapping configuration for the Snowflake connection.</p>
|
|
4889
|
+
* @public
|
|
4890
|
+
*/
|
|
4891
|
+
identityMapping: IdentityMapping | undefined;
|
|
4892
|
+
/**
|
|
4893
|
+
* <p>The lineage sync configuration for the Snowflake connection.</p>
|
|
4894
|
+
* @public
|
|
4895
|
+
*/
|
|
4896
|
+
lineageSync?: LineageSyncInput | undefined;
|
|
4897
|
+
}
|
|
4779
4898
|
/**
|
|
4780
4899
|
* <p>The Spark EMR properties.</p>
|
|
4781
4900
|
* @public
|
|
@@ -4926,7 +5045,7 @@ export interface WorkflowsServerlessPropertiesInput {
|
|
|
4926
5045
|
* <p>The properties of a connection.</p>
|
|
4927
5046
|
* @public
|
|
4928
5047
|
*/
|
|
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;
|
|
5048
|
+
export type ConnectionPropertiesInput = ConnectionPropertiesInput.AmazonQPropertiesMember | ConnectionPropertiesInput.AthenaPropertiesMember | ConnectionPropertiesInput.GluePropertiesMember | ConnectionPropertiesInput.HyperPodPropertiesMember | ConnectionPropertiesInput.IamPropertiesMember | ConnectionPropertiesInput.LakehousePropertiesMember | ConnectionPropertiesInput.MlflowPropertiesMember | ConnectionPropertiesInput.RedshiftPropertiesMember | ConnectionPropertiesInput.S3PropertiesMember | ConnectionPropertiesInput.SnowflakePropertiesMember | ConnectionPropertiesInput.SparkEmrPropertiesMember | ConnectionPropertiesInput.SparkGluePropertiesMember | ConnectionPropertiesInput.VpcPropertiesMember | ConnectionPropertiesInput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesInput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesInput.$UnknownMember;
|
|
4930
5049
|
/**
|
|
4931
5050
|
* @public
|
|
4932
5051
|
*/
|
|
@@ -4944,6 +5063,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4944
5063
|
sparkEmrProperties?: never;
|
|
4945
5064
|
sparkGlueProperties?: never;
|
|
4946
5065
|
s3Properties?: never;
|
|
5066
|
+
snowflakeProperties?: never;
|
|
4947
5067
|
amazonQProperties?: never;
|
|
4948
5068
|
mlflowProperties?: never;
|
|
4949
5069
|
workflowsMwaaProperties?: never;
|
|
@@ -4965,6 +5085,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4965
5085
|
sparkEmrProperties?: never;
|
|
4966
5086
|
sparkGlueProperties?: never;
|
|
4967
5087
|
s3Properties?: never;
|
|
5088
|
+
snowflakeProperties?: never;
|
|
4968
5089
|
amazonQProperties?: never;
|
|
4969
5090
|
mlflowProperties?: never;
|
|
4970
5091
|
workflowsMwaaProperties?: never;
|
|
@@ -4986,6 +5107,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
4986
5107
|
sparkEmrProperties?: never;
|
|
4987
5108
|
sparkGlueProperties?: never;
|
|
4988
5109
|
s3Properties?: never;
|
|
5110
|
+
snowflakeProperties?: never;
|
|
4989
5111
|
amazonQProperties?: never;
|
|
4990
5112
|
mlflowProperties?: never;
|
|
4991
5113
|
workflowsMwaaProperties?: never;
|
|
@@ -5007,6 +5129,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5007
5129
|
sparkEmrProperties?: never;
|
|
5008
5130
|
sparkGlueProperties?: never;
|
|
5009
5131
|
s3Properties?: never;
|
|
5132
|
+
snowflakeProperties?: never;
|
|
5010
5133
|
amazonQProperties?: never;
|
|
5011
5134
|
mlflowProperties?: never;
|
|
5012
5135
|
workflowsMwaaProperties?: never;
|
|
@@ -5028,6 +5151,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5028
5151
|
sparkEmrProperties?: never;
|
|
5029
5152
|
sparkGlueProperties?: never;
|
|
5030
5153
|
s3Properties?: never;
|
|
5154
|
+
snowflakeProperties?: never;
|
|
5031
5155
|
amazonQProperties?: never;
|
|
5032
5156
|
mlflowProperties?: never;
|
|
5033
5157
|
workflowsMwaaProperties?: never;
|
|
@@ -5049,6 +5173,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5049
5173
|
sparkEmrProperties: SparkEmrPropertiesInput;
|
|
5050
5174
|
sparkGlueProperties?: never;
|
|
5051
5175
|
s3Properties?: never;
|
|
5176
|
+
snowflakeProperties?: never;
|
|
5052
5177
|
amazonQProperties?: never;
|
|
5053
5178
|
mlflowProperties?: never;
|
|
5054
5179
|
workflowsMwaaProperties?: never;
|
|
@@ -5070,6 +5195,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5070
5195
|
sparkEmrProperties?: never;
|
|
5071
5196
|
sparkGlueProperties: SparkGluePropertiesInput;
|
|
5072
5197
|
s3Properties?: never;
|
|
5198
|
+
snowflakeProperties?: never;
|
|
5073
5199
|
amazonQProperties?: never;
|
|
5074
5200
|
mlflowProperties?: never;
|
|
5075
5201
|
workflowsMwaaProperties?: never;
|
|
@@ -5091,6 +5217,29 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5091
5217
|
sparkEmrProperties?: never;
|
|
5092
5218
|
sparkGlueProperties?: never;
|
|
5093
5219
|
s3Properties: S3PropertiesInput;
|
|
5220
|
+
snowflakeProperties?: never;
|
|
5221
|
+
amazonQProperties?: never;
|
|
5222
|
+
mlflowProperties?: never;
|
|
5223
|
+
workflowsMwaaProperties?: never;
|
|
5224
|
+
workflowsServerlessProperties?: never;
|
|
5225
|
+
lakehouseProperties?: never;
|
|
5226
|
+
vpcProperties?: never;
|
|
5227
|
+
$unknown?: never;
|
|
5228
|
+
}
|
|
5229
|
+
/**
|
|
5230
|
+
* <p>The Snowflake-specific connection properties to use when creating the connection.</p>
|
|
5231
|
+
* @public
|
|
5232
|
+
*/
|
|
5233
|
+
interface SnowflakePropertiesMember {
|
|
5234
|
+
athenaProperties?: never;
|
|
5235
|
+
glueProperties?: never;
|
|
5236
|
+
hyperPodProperties?: never;
|
|
5237
|
+
iamProperties?: never;
|
|
5238
|
+
redshiftProperties?: never;
|
|
5239
|
+
sparkEmrProperties?: never;
|
|
5240
|
+
sparkGlueProperties?: never;
|
|
5241
|
+
s3Properties?: never;
|
|
5242
|
+
snowflakeProperties: SnowflakePropertiesInput;
|
|
5094
5243
|
amazonQProperties?: never;
|
|
5095
5244
|
mlflowProperties?: never;
|
|
5096
5245
|
workflowsMwaaProperties?: never;
|
|
@@ -5112,6 +5261,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5112
5261
|
sparkEmrProperties?: never;
|
|
5113
5262
|
sparkGlueProperties?: never;
|
|
5114
5263
|
s3Properties?: never;
|
|
5264
|
+
snowflakeProperties?: never;
|
|
5115
5265
|
amazonQProperties: AmazonQPropertiesInput;
|
|
5116
5266
|
mlflowProperties?: never;
|
|
5117
5267
|
workflowsMwaaProperties?: never;
|
|
@@ -5133,6 +5283,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5133
5283
|
sparkEmrProperties?: never;
|
|
5134
5284
|
sparkGlueProperties?: never;
|
|
5135
5285
|
s3Properties?: never;
|
|
5286
|
+
snowflakeProperties?: never;
|
|
5136
5287
|
amazonQProperties?: never;
|
|
5137
5288
|
mlflowProperties: MlflowPropertiesInput;
|
|
5138
5289
|
workflowsMwaaProperties?: never;
|
|
@@ -5154,6 +5305,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5154
5305
|
sparkEmrProperties?: never;
|
|
5155
5306
|
sparkGlueProperties?: never;
|
|
5156
5307
|
s3Properties?: never;
|
|
5308
|
+
snowflakeProperties?: never;
|
|
5157
5309
|
amazonQProperties?: never;
|
|
5158
5310
|
mlflowProperties?: never;
|
|
5159
5311
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesInput;
|
|
@@ -5175,6 +5327,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5175
5327
|
sparkEmrProperties?: never;
|
|
5176
5328
|
sparkGlueProperties?: never;
|
|
5177
5329
|
s3Properties?: never;
|
|
5330
|
+
snowflakeProperties?: never;
|
|
5178
5331
|
amazonQProperties?: never;
|
|
5179
5332
|
mlflowProperties?: never;
|
|
5180
5333
|
workflowsMwaaProperties?: never;
|
|
@@ -5196,6 +5349,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5196
5349
|
sparkEmrProperties?: never;
|
|
5197
5350
|
sparkGlueProperties?: never;
|
|
5198
5351
|
s3Properties?: never;
|
|
5352
|
+
snowflakeProperties?: never;
|
|
5199
5353
|
amazonQProperties?: never;
|
|
5200
5354
|
mlflowProperties?: never;
|
|
5201
5355
|
workflowsMwaaProperties?: never;
|
|
@@ -5217,6 +5371,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5217
5371
|
sparkEmrProperties?: never;
|
|
5218
5372
|
sparkGlueProperties?: never;
|
|
5219
5373
|
s3Properties?: never;
|
|
5374
|
+
snowflakeProperties?: never;
|
|
5220
5375
|
amazonQProperties?: never;
|
|
5221
5376
|
mlflowProperties?: never;
|
|
5222
5377
|
workflowsMwaaProperties?: never;
|
|
@@ -5237,6 +5392,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5237
5392
|
sparkEmrProperties?: never;
|
|
5238
5393
|
sparkGlueProperties?: never;
|
|
5239
5394
|
s3Properties?: never;
|
|
5395
|
+
snowflakeProperties?: never;
|
|
5240
5396
|
amazonQProperties?: never;
|
|
5241
5397
|
mlflowProperties?: never;
|
|
5242
5398
|
workflowsMwaaProperties?: never;
|
|
@@ -5258,6 +5414,7 @@ export declare namespace ConnectionPropertiesInput {
|
|
|
5258
5414
|
sparkEmrProperties: (value: SparkEmrPropertiesInput) => T;
|
|
5259
5415
|
sparkGlueProperties: (value: SparkGluePropertiesInput) => T;
|
|
5260
5416
|
s3Properties: (value: S3PropertiesInput) => T;
|
|
5417
|
+
snowflakeProperties: (value: SnowflakePropertiesInput) => T;
|
|
5261
5418
|
amazonQProperties: (value: AmazonQPropertiesInput) => T;
|
|
5262
5419
|
mlflowProperties: (value: MlflowPropertiesInput) => T;
|
|
5263
5420
|
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesInput) => T;
|
|
@@ -5445,6 +5602,63 @@ export interface S3PropertiesOutput {
|
|
|
5445
5602
|
*/
|
|
5446
5603
|
errorMessage?: string | undefined;
|
|
5447
5604
|
}
|
|
5605
|
+
/**
|
|
5606
|
+
* <p>Contains the current state of lineage sync for a Snowflake connection, including the schedule, timezone, enabled state, and the ID of the associated lineage job.</p>
|
|
5607
|
+
* @public
|
|
5608
|
+
*/
|
|
5609
|
+
export interface LineageSyncOutput {
|
|
5610
|
+
/**
|
|
5611
|
+
* <p>The ID of the lineage sync job.</p>
|
|
5612
|
+
* @public
|
|
5613
|
+
*/
|
|
5614
|
+
lineageJobId?: string | undefined;
|
|
5615
|
+
/**
|
|
5616
|
+
* <p>The timezone of the lineage sync schedule.</p>
|
|
5617
|
+
* @public
|
|
5618
|
+
*/
|
|
5619
|
+
timezone?: Timezone | undefined;
|
|
5620
|
+
/**
|
|
5621
|
+
* <p>Specifies whether lineage sync is enabled.</p>
|
|
5622
|
+
* @public
|
|
5623
|
+
*/
|
|
5624
|
+
enabled?: boolean | undefined;
|
|
5625
|
+
/**
|
|
5626
|
+
* <p>The schedule of the lineage sync.</p>
|
|
5627
|
+
* @public
|
|
5628
|
+
*/
|
|
5629
|
+
schedule?: string | undefined;
|
|
5630
|
+
}
|
|
5631
|
+
/**
|
|
5632
|
+
* <p>Contains the Snowflake-specific settings returned for an existing connection, including the current role, identity mapping, lineage sync state, and connection status.</p>
|
|
5633
|
+
* @public
|
|
5634
|
+
*/
|
|
5635
|
+
export interface SnowflakePropertiesOutput {
|
|
5636
|
+
/**
|
|
5637
|
+
* <p>The Snowflake role used to access Snowflake resources.</p>
|
|
5638
|
+
* @public
|
|
5639
|
+
*/
|
|
5640
|
+
snowflakeRole: string | undefined;
|
|
5641
|
+
/**
|
|
5642
|
+
* <p>The identity mapping configuration for the Snowflake connection.</p>
|
|
5643
|
+
* @public
|
|
5644
|
+
*/
|
|
5645
|
+
identityMapping: IdentityMapping | undefined;
|
|
5646
|
+
/**
|
|
5647
|
+
* <p>The lineage sync configuration for the Snowflake connection.</p>
|
|
5648
|
+
* @public
|
|
5649
|
+
*/
|
|
5650
|
+
lineageSync: LineageSyncOutput | undefined;
|
|
5651
|
+
/**
|
|
5652
|
+
* <p>The status of the Snowflake connection.</p>
|
|
5653
|
+
* @public
|
|
5654
|
+
*/
|
|
5655
|
+
status: ConnectionStatus | undefined;
|
|
5656
|
+
/**
|
|
5657
|
+
* <p>An error message returned if the Snowflake connection failed to establish or validate.</p>
|
|
5658
|
+
* @public
|
|
5659
|
+
*/
|
|
5660
|
+
errorMessage?: string | undefined;
|
|
5661
|
+
}
|
|
5448
5662
|
/**
|
|
5449
5663
|
* <p>The managed endpoint credentials of the EMR on EKS cluster.</p>
|
|
5450
5664
|
* @public
|
|
@@ -5640,7 +5854,7 @@ export interface WorkflowsServerlessPropertiesOutput {
|
|
|
5640
5854
|
* <p>The properties of a connection.</p>
|
|
5641
5855
|
* @public
|
|
5642
5856
|
*/
|
|
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;
|
|
5857
|
+
export type ConnectionPropertiesOutput = ConnectionPropertiesOutput.AmazonQPropertiesMember | ConnectionPropertiesOutput.AthenaPropertiesMember | ConnectionPropertiesOutput.GluePropertiesMember | ConnectionPropertiesOutput.HyperPodPropertiesMember | ConnectionPropertiesOutput.IamPropertiesMember | ConnectionPropertiesOutput.LakehousePropertiesMember | ConnectionPropertiesOutput.MlflowPropertiesMember | ConnectionPropertiesOutput.RedshiftPropertiesMember | ConnectionPropertiesOutput.S3PropertiesMember | ConnectionPropertiesOutput.SnowflakePropertiesMember | ConnectionPropertiesOutput.SparkEmrPropertiesMember | ConnectionPropertiesOutput.SparkGluePropertiesMember | ConnectionPropertiesOutput.VpcPropertiesMember | ConnectionPropertiesOutput.WorkflowsMwaaPropertiesMember | ConnectionPropertiesOutput.WorkflowsServerlessPropertiesMember | ConnectionPropertiesOutput.$UnknownMember;
|
|
5644
5858
|
/**
|
|
5645
5859
|
* @public
|
|
5646
5860
|
*/
|
|
@@ -5658,6 +5872,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5658
5872
|
sparkEmrProperties?: never;
|
|
5659
5873
|
sparkGlueProperties?: never;
|
|
5660
5874
|
s3Properties?: never;
|
|
5875
|
+
snowflakeProperties?: never;
|
|
5661
5876
|
amazonQProperties?: never;
|
|
5662
5877
|
mlflowProperties?: never;
|
|
5663
5878
|
workflowsMwaaProperties?: never;
|
|
@@ -5679,6 +5894,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5679
5894
|
sparkEmrProperties?: never;
|
|
5680
5895
|
sparkGlueProperties?: never;
|
|
5681
5896
|
s3Properties?: never;
|
|
5897
|
+
snowflakeProperties?: never;
|
|
5682
5898
|
amazonQProperties?: never;
|
|
5683
5899
|
mlflowProperties?: never;
|
|
5684
5900
|
workflowsMwaaProperties?: never;
|
|
@@ -5700,6 +5916,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5700
5916
|
sparkEmrProperties?: never;
|
|
5701
5917
|
sparkGlueProperties?: never;
|
|
5702
5918
|
s3Properties?: never;
|
|
5919
|
+
snowflakeProperties?: never;
|
|
5703
5920
|
amazonQProperties?: never;
|
|
5704
5921
|
mlflowProperties?: never;
|
|
5705
5922
|
workflowsMwaaProperties?: never;
|
|
@@ -5721,6 +5938,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5721
5938
|
sparkEmrProperties?: never;
|
|
5722
5939
|
sparkGlueProperties?: never;
|
|
5723
5940
|
s3Properties?: never;
|
|
5941
|
+
snowflakeProperties?: never;
|
|
5724
5942
|
amazonQProperties?: never;
|
|
5725
5943
|
mlflowProperties?: never;
|
|
5726
5944
|
workflowsMwaaProperties?: never;
|
|
@@ -5742,6 +5960,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5742
5960
|
sparkEmrProperties?: never;
|
|
5743
5961
|
sparkGlueProperties?: never;
|
|
5744
5962
|
s3Properties?: never;
|
|
5963
|
+
snowflakeProperties?: never;
|
|
5745
5964
|
amazonQProperties?: never;
|
|
5746
5965
|
mlflowProperties?: never;
|
|
5747
5966
|
workflowsMwaaProperties?: never;
|
|
@@ -5763,6 +5982,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5763
5982
|
sparkEmrProperties: SparkEmrPropertiesOutput;
|
|
5764
5983
|
sparkGlueProperties?: never;
|
|
5765
5984
|
s3Properties?: never;
|
|
5985
|
+
snowflakeProperties?: never;
|
|
5766
5986
|
amazonQProperties?: never;
|
|
5767
5987
|
mlflowProperties?: never;
|
|
5768
5988
|
workflowsMwaaProperties?: never;
|
|
@@ -5784,6 +6004,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5784
6004
|
sparkEmrProperties?: never;
|
|
5785
6005
|
sparkGlueProperties: SparkGluePropertiesOutput;
|
|
5786
6006
|
s3Properties?: never;
|
|
6007
|
+
snowflakeProperties?: never;
|
|
5787
6008
|
amazonQProperties?: never;
|
|
5788
6009
|
mlflowProperties?: never;
|
|
5789
6010
|
workflowsMwaaProperties?: never;
|
|
@@ -5805,6 +6026,29 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5805
6026
|
sparkEmrProperties?: never;
|
|
5806
6027
|
sparkGlueProperties?: never;
|
|
5807
6028
|
s3Properties: S3PropertiesOutput;
|
|
6029
|
+
snowflakeProperties?: never;
|
|
6030
|
+
amazonQProperties?: never;
|
|
6031
|
+
mlflowProperties?: never;
|
|
6032
|
+
workflowsMwaaProperties?: never;
|
|
6033
|
+
workflowsServerlessProperties?: never;
|
|
6034
|
+
lakehouseProperties?: never;
|
|
6035
|
+
vpcProperties?: never;
|
|
6036
|
+
$unknown?: never;
|
|
6037
|
+
}
|
|
6038
|
+
/**
|
|
6039
|
+
* <p>The Snowflake-specific connection properties for an existing connection.</p>
|
|
6040
|
+
* @public
|
|
6041
|
+
*/
|
|
6042
|
+
interface SnowflakePropertiesMember {
|
|
6043
|
+
athenaProperties?: never;
|
|
6044
|
+
glueProperties?: never;
|
|
6045
|
+
hyperPodProperties?: never;
|
|
6046
|
+
iamProperties?: never;
|
|
6047
|
+
redshiftProperties?: never;
|
|
6048
|
+
sparkEmrProperties?: never;
|
|
6049
|
+
sparkGlueProperties?: never;
|
|
6050
|
+
s3Properties?: never;
|
|
6051
|
+
snowflakeProperties: SnowflakePropertiesOutput;
|
|
5808
6052
|
amazonQProperties?: never;
|
|
5809
6053
|
mlflowProperties?: never;
|
|
5810
6054
|
workflowsMwaaProperties?: never;
|
|
@@ -5826,6 +6070,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5826
6070
|
sparkEmrProperties?: never;
|
|
5827
6071
|
sparkGlueProperties?: never;
|
|
5828
6072
|
s3Properties?: never;
|
|
6073
|
+
snowflakeProperties?: never;
|
|
5829
6074
|
amazonQProperties: AmazonQPropertiesOutput;
|
|
5830
6075
|
mlflowProperties?: never;
|
|
5831
6076
|
workflowsMwaaProperties?: never;
|
|
@@ -5847,6 +6092,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5847
6092
|
sparkEmrProperties?: never;
|
|
5848
6093
|
sparkGlueProperties?: never;
|
|
5849
6094
|
s3Properties?: never;
|
|
6095
|
+
snowflakeProperties?: never;
|
|
5850
6096
|
amazonQProperties?: never;
|
|
5851
6097
|
mlflowProperties: MlflowPropertiesOutput;
|
|
5852
6098
|
workflowsMwaaProperties?: never;
|
|
@@ -5868,6 +6114,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5868
6114
|
sparkEmrProperties?: never;
|
|
5869
6115
|
sparkGlueProperties?: never;
|
|
5870
6116
|
s3Properties?: never;
|
|
6117
|
+
snowflakeProperties?: never;
|
|
5871
6118
|
amazonQProperties?: never;
|
|
5872
6119
|
mlflowProperties?: never;
|
|
5873
6120
|
workflowsMwaaProperties: WorkflowsMwaaPropertiesOutput;
|
|
@@ -5889,6 +6136,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5889
6136
|
sparkEmrProperties?: never;
|
|
5890
6137
|
sparkGlueProperties?: never;
|
|
5891
6138
|
s3Properties?: never;
|
|
6139
|
+
snowflakeProperties?: never;
|
|
5892
6140
|
amazonQProperties?: never;
|
|
5893
6141
|
mlflowProperties?: never;
|
|
5894
6142
|
workflowsMwaaProperties?: never;
|
|
@@ -5910,6 +6158,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5910
6158
|
sparkEmrProperties?: never;
|
|
5911
6159
|
sparkGlueProperties?: never;
|
|
5912
6160
|
s3Properties?: never;
|
|
6161
|
+
snowflakeProperties?: never;
|
|
5913
6162
|
amazonQProperties?: never;
|
|
5914
6163
|
mlflowProperties?: never;
|
|
5915
6164
|
workflowsMwaaProperties?: never;
|
|
@@ -5931,6 +6180,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5931
6180
|
sparkEmrProperties?: never;
|
|
5932
6181
|
sparkGlueProperties?: never;
|
|
5933
6182
|
s3Properties?: never;
|
|
6183
|
+
snowflakeProperties?: never;
|
|
5934
6184
|
amazonQProperties?: never;
|
|
5935
6185
|
mlflowProperties?: never;
|
|
5936
6186
|
workflowsMwaaProperties?: never;
|
|
@@ -5951,6 +6201,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5951
6201
|
sparkEmrProperties?: never;
|
|
5952
6202
|
sparkGlueProperties?: never;
|
|
5953
6203
|
s3Properties?: never;
|
|
6204
|
+
snowflakeProperties?: never;
|
|
5954
6205
|
amazonQProperties?: never;
|
|
5955
6206
|
mlflowProperties?: never;
|
|
5956
6207
|
workflowsMwaaProperties?: never;
|
|
@@ -5972,6 +6223,7 @@ export declare namespace ConnectionPropertiesOutput {
|
|
|
5972
6223
|
sparkEmrProperties: (value: SparkEmrPropertiesOutput) => T;
|
|
5973
6224
|
sparkGlueProperties: (value: SparkGluePropertiesOutput) => T;
|
|
5974
6225
|
s3Properties: (value: S3PropertiesOutput) => T;
|
|
6226
|
+
snowflakeProperties: (value: SnowflakePropertiesOutput) => T;
|
|
5975
6227
|
amazonQProperties: (value: AmazonQPropertiesOutput) => T;
|
|
5976
6228
|
mlflowProperties: (value: MlflowPropertiesOutput) => T;
|
|
5977
6229
|
workflowsMwaaProperties: (value: WorkflowsMwaaPropertiesOutput) => T;
|
|
@@ -6103,6 +6355,48 @@ export interface S3PropertiesPatch {
|
|
|
6103
6355
|
*/
|
|
6104
6356
|
registerS3AccessGrantLocation?: boolean | undefined;
|
|
6105
6357
|
}
|
|
6358
|
+
/**
|
|
6359
|
+
* <p>Contains the connectivity settings to update on an existing connection. Include only the fields you want to change.</p>
|
|
6360
|
+
* @public
|
|
6361
|
+
*/
|
|
6362
|
+
export interface ConnectivityPropertiesPatch {
|
|
6363
|
+
/**
|
|
6364
|
+
* <p>A description of the connectivity properties update.</p>
|
|
6365
|
+
* @public
|
|
6366
|
+
*/
|
|
6367
|
+
description?: string | undefined;
|
|
6368
|
+
/**
|
|
6369
|
+
* <p>The connection properties to update.</p>
|
|
6370
|
+
* @public
|
|
6371
|
+
*/
|
|
6372
|
+
connectionProperties?: Record<string, string> | undefined;
|
|
6373
|
+
/**
|
|
6374
|
+
* <p>The authentication settings to update.</p>
|
|
6375
|
+
* @public
|
|
6376
|
+
*/
|
|
6377
|
+
authenticationConfiguration?: AuthenticationConfigurationPatch | undefined;
|
|
6378
|
+
}
|
|
6379
|
+
/**
|
|
6380
|
+
* <p>Contains the Snowflake-specific settings to update on an existing connection. Include only the fields you want to change.</p>
|
|
6381
|
+
* @public
|
|
6382
|
+
*/
|
|
6383
|
+
export interface SnowflakePropertiesPatch {
|
|
6384
|
+
/**
|
|
6385
|
+
* <p>The connectivity properties patch of the Snowflake connection.</p>
|
|
6386
|
+
* @public
|
|
6387
|
+
*/
|
|
6388
|
+
connectivityPropertiesPatch?: ConnectivityPropertiesPatch | undefined;
|
|
6389
|
+
/**
|
|
6390
|
+
* <p>The Snowflake role used to access Snowflake resources.</p>
|
|
6391
|
+
* @public
|
|
6392
|
+
*/
|
|
6393
|
+
snowflakeRole?: string | undefined;
|
|
6394
|
+
/**
|
|
6395
|
+
* <p>The lineage sync configuration for the Snowflake connection.</p>
|
|
6396
|
+
* @public
|
|
6397
|
+
*/
|
|
6398
|
+
lineageSync?: LineageSyncInput | undefined;
|
|
6399
|
+
}
|
|
6106
6400
|
/**
|
|
6107
6401
|
* <p>The Spark EMR properties patch.</p>
|
|
6108
6402
|
* @public
|
|
@@ -6174,7 +6468,7 @@ export interface VpcPropertiesPatch {
|
|
|
6174
6468
|
* <p>The connection properties patch.</p>
|
|
6175
6469
|
* @public
|
|
6176
6470
|
*/
|
|
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;
|
|
6471
|
+
export type ConnectionPropertiesPatch = ConnectionPropertiesPatch.AmazonQPropertiesMember | ConnectionPropertiesPatch.AthenaPropertiesMember | ConnectionPropertiesPatch.GluePropertiesMember | ConnectionPropertiesPatch.IamPropertiesMember | ConnectionPropertiesPatch.LakehousePropertiesMember | ConnectionPropertiesPatch.MlflowPropertiesMember | ConnectionPropertiesPatch.RedshiftPropertiesMember | ConnectionPropertiesPatch.S3PropertiesMember | ConnectionPropertiesPatch.SnowflakePropertiesMember | ConnectionPropertiesPatch.SparkEmrPropertiesMember | ConnectionPropertiesPatch.VpcPropertiesMember | ConnectionPropertiesPatch.$UnknownMember;
|
|
6178
6472
|
/**
|
|
6179
6473
|
* @public
|
|
6180
6474
|
*/
|
|
@@ -6190,6 +6484,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6190
6484
|
redshiftProperties?: never;
|
|
6191
6485
|
sparkEmrProperties?: never;
|
|
6192
6486
|
s3Properties?: never;
|
|
6487
|
+
snowflakeProperties?: never;
|
|
6193
6488
|
amazonQProperties?: never;
|
|
6194
6489
|
mlflowProperties?: never;
|
|
6195
6490
|
lakehouseProperties?: never;
|
|
@@ -6207,6 +6502,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6207
6502
|
redshiftProperties?: never;
|
|
6208
6503
|
sparkEmrProperties?: never;
|
|
6209
6504
|
s3Properties?: never;
|
|
6505
|
+
snowflakeProperties?: never;
|
|
6210
6506
|
amazonQProperties?: never;
|
|
6211
6507
|
mlflowProperties?: never;
|
|
6212
6508
|
lakehouseProperties?: never;
|
|
@@ -6224,6 +6520,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6224
6520
|
redshiftProperties?: never;
|
|
6225
6521
|
sparkEmrProperties?: never;
|
|
6226
6522
|
s3Properties?: never;
|
|
6523
|
+
snowflakeProperties?: never;
|
|
6227
6524
|
amazonQProperties?: never;
|
|
6228
6525
|
mlflowProperties?: never;
|
|
6229
6526
|
lakehouseProperties?: never;
|
|
@@ -6241,6 +6538,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6241
6538
|
redshiftProperties: RedshiftPropertiesPatch;
|
|
6242
6539
|
sparkEmrProperties?: never;
|
|
6243
6540
|
s3Properties?: never;
|
|
6541
|
+
snowflakeProperties?: never;
|
|
6244
6542
|
amazonQProperties?: never;
|
|
6245
6543
|
mlflowProperties?: never;
|
|
6246
6544
|
lakehouseProperties?: never;
|
|
@@ -6258,6 +6556,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6258
6556
|
redshiftProperties?: never;
|
|
6259
6557
|
sparkEmrProperties: SparkEmrPropertiesPatch;
|
|
6260
6558
|
s3Properties?: never;
|
|
6559
|
+
snowflakeProperties?: never;
|
|
6261
6560
|
amazonQProperties?: never;
|
|
6262
6561
|
mlflowProperties?: never;
|
|
6263
6562
|
lakehouseProperties?: never;
|
|
@@ -6275,6 +6574,25 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6275
6574
|
redshiftProperties?: never;
|
|
6276
6575
|
sparkEmrProperties?: never;
|
|
6277
6576
|
s3Properties: S3PropertiesPatch;
|
|
6577
|
+
snowflakeProperties?: never;
|
|
6578
|
+
amazonQProperties?: never;
|
|
6579
|
+
mlflowProperties?: never;
|
|
6580
|
+
lakehouseProperties?: never;
|
|
6581
|
+
vpcProperties?: never;
|
|
6582
|
+
$unknown?: never;
|
|
6583
|
+
}
|
|
6584
|
+
/**
|
|
6585
|
+
* <p>The Snowflake-specific connection properties to update.</p>
|
|
6586
|
+
* @public
|
|
6587
|
+
*/
|
|
6588
|
+
interface SnowflakePropertiesMember {
|
|
6589
|
+
athenaProperties?: never;
|
|
6590
|
+
glueProperties?: never;
|
|
6591
|
+
iamProperties?: never;
|
|
6592
|
+
redshiftProperties?: never;
|
|
6593
|
+
sparkEmrProperties?: never;
|
|
6594
|
+
s3Properties?: never;
|
|
6595
|
+
snowflakeProperties: SnowflakePropertiesPatch;
|
|
6278
6596
|
amazonQProperties?: never;
|
|
6279
6597
|
mlflowProperties?: never;
|
|
6280
6598
|
lakehouseProperties?: never;
|
|
@@ -6292,6 +6610,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6292
6610
|
redshiftProperties?: never;
|
|
6293
6611
|
sparkEmrProperties?: never;
|
|
6294
6612
|
s3Properties?: never;
|
|
6613
|
+
snowflakeProperties?: never;
|
|
6295
6614
|
amazonQProperties: AmazonQPropertiesPatch;
|
|
6296
6615
|
mlflowProperties?: never;
|
|
6297
6616
|
lakehouseProperties?: never;
|
|
@@ -6309,6 +6628,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6309
6628
|
redshiftProperties?: never;
|
|
6310
6629
|
sparkEmrProperties?: never;
|
|
6311
6630
|
s3Properties?: never;
|
|
6631
|
+
snowflakeProperties?: never;
|
|
6312
6632
|
amazonQProperties?: never;
|
|
6313
6633
|
mlflowProperties: MlflowPropertiesPatch;
|
|
6314
6634
|
lakehouseProperties?: never;
|
|
@@ -6326,6 +6646,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6326
6646
|
redshiftProperties?: never;
|
|
6327
6647
|
sparkEmrProperties?: never;
|
|
6328
6648
|
s3Properties?: never;
|
|
6649
|
+
snowflakeProperties?: never;
|
|
6329
6650
|
amazonQProperties?: never;
|
|
6330
6651
|
mlflowProperties?: never;
|
|
6331
6652
|
lakehouseProperties: LakehousePropertiesPatch;
|
|
@@ -6343,6 +6664,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6343
6664
|
redshiftProperties?: never;
|
|
6344
6665
|
sparkEmrProperties?: never;
|
|
6345
6666
|
s3Properties?: never;
|
|
6667
|
+
snowflakeProperties?: never;
|
|
6346
6668
|
amazonQProperties?: never;
|
|
6347
6669
|
mlflowProperties?: never;
|
|
6348
6670
|
lakehouseProperties?: never;
|
|
@@ -6359,6 +6681,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6359
6681
|
redshiftProperties?: never;
|
|
6360
6682
|
sparkEmrProperties?: never;
|
|
6361
6683
|
s3Properties?: never;
|
|
6684
|
+
snowflakeProperties?: never;
|
|
6362
6685
|
amazonQProperties?: never;
|
|
6363
6686
|
mlflowProperties?: never;
|
|
6364
6687
|
lakehouseProperties?: never;
|
|
@@ -6376,6 +6699,7 @@ export declare namespace ConnectionPropertiesPatch {
|
|
|
6376
6699
|
redshiftProperties: (value: RedshiftPropertiesPatch) => T;
|
|
6377
6700
|
sparkEmrProperties: (value: SparkEmrPropertiesPatch) => T;
|
|
6378
6701
|
s3Properties: (value: S3PropertiesPatch) => T;
|
|
6702
|
+
snowflakeProperties: (value: SnowflakePropertiesPatch) => T;
|
|
6379
6703
|
amazonQProperties: (value: AmazonQPropertiesPatch) => T;
|
|
6380
6704
|
mlflowProperties: (value: MlflowPropertiesPatch) => T;
|
|
6381
6705
|
lakehouseProperties: (value: LakehousePropertiesPatch) => T;
|
|
@@ -8038,7 +8362,7 @@ export interface CreateEnvironmentInput {
|
|
|
8038
8362
|
*/
|
|
8039
8363
|
environmentAccountRegion?: string | undefined;
|
|
8040
8364
|
/**
|
|
8041
|
-
* <p>The ID of the blueprint with which the environment is being created.</p>
|
|
8365
|
+
* <p>The ID of the blueprint with which the environment is being created.</p> <note> <p>This parameter is only valid for V1 domains. If provided for a V2 domain, the service returns a ValidationException.</p> </note>
|
|
8042
8366
|
* @public
|
|
8043
8367
|
*/
|
|
8044
8368
|
environmentBlueprintIdentifier?: string | undefined;
|
|
@@ -9922,262 +10246,3 @@ export interface ProjectsForRule {
|
|
|
9922
10246
|
*/
|
|
9923
10247
|
specificProjects?: string[] | undefined;
|
|
9924
10248
|
}
|
|
9925
|
-
/**
|
|
9926
|
-
* <p>The scope of a rule.</p>
|
|
9927
|
-
* @public
|
|
9928
|
-
*/
|
|
9929
|
-
export interface RuleScope {
|
|
9930
|
-
/**
|
|
9931
|
-
* <p>The asset type included in the rule scope.</p>
|
|
9932
|
-
* @public
|
|
9933
|
-
*/
|
|
9934
|
-
assetType?: AssetTypesForRule | undefined;
|
|
9935
|
-
/**
|
|
9936
|
-
* <p>The data product included in the rule scope.</p>
|
|
9937
|
-
* @public
|
|
9938
|
-
*/
|
|
9939
|
-
dataProduct?: boolean | undefined;
|
|
9940
|
-
/**
|
|
9941
|
-
* <p>The project included in the rule scope.</p>
|
|
9942
|
-
* @public
|
|
9943
|
-
*/
|
|
9944
|
-
project?: ProjectsForRule | undefined;
|
|
9945
|
-
}
|
|
9946
|
-
/**
|
|
9947
|
-
* <p>The target for the domain unit.</p>
|
|
9948
|
-
* @public
|
|
9949
|
-
*/
|
|
9950
|
-
export interface DomainUnitTarget {
|
|
9951
|
-
/**
|
|
9952
|
-
* <p>The ID of the domain unit.</p>
|
|
9953
|
-
* @public
|
|
9954
|
-
*/
|
|
9955
|
-
domainUnitId: string | undefined;
|
|
9956
|
-
/**
|
|
9957
|
-
* <p>Specifies whether to apply a rule to the child domain units.</p>
|
|
9958
|
-
* @public
|
|
9959
|
-
*/
|
|
9960
|
-
includeChildDomainUnits?: boolean | undefined;
|
|
9961
|
-
}
|
|
9962
|
-
/**
|
|
9963
|
-
* <p>The target of the rule.</p>
|
|
9964
|
-
* @public
|
|
9965
|
-
*/
|
|
9966
|
-
export type RuleTarget = RuleTarget.DomainUnitTargetMember | RuleTarget.$UnknownMember;
|
|
9967
|
-
/**
|
|
9968
|
-
* @public
|
|
9969
|
-
*/
|
|
9970
|
-
export declare namespace RuleTarget {
|
|
9971
|
-
/**
|
|
9972
|
-
* <p>The ID of the domain unit.</p>
|
|
9973
|
-
* @public
|
|
9974
|
-
*/
|
|
9975
|
-
interface DomainUnitTargetMember {
|
|
9976
|
-
domainUnitTarget: DomainUnitTarget;
|
|
9977
|
-
$unknown?: never;
|
|
9978
|
-
}
|
|
9979
|
-
/**
|
|
9980
|
-
* @public
|
|
9981
|
-
*/
|
|
9982
|
-
interface $UnknownMember {
|
|
9983
|
-
domainUnitTarget?: never;
|
|
9984
|
-
$unknown: [string, any];
|
|
9985
|
-
}
|
|
9986
|
-
/**
|
|
9987
|
-
* @deprecated unused in schema-serde mode.
|
|
9988
|
-
*
|
|
9989
|
-
*/
|
|
9990
|
-
interface Visitor<T> {
|
|
9991
|
-
domainUnitTarget: (value: DomainUnitTarget) => T;
|
|
9992
|
-
_: (name: string, value: any) => T;
|
|
9993
|
-
}
|
|
9994
|
-
}
|
|
9995
|
-
/**
|
|
9996
|
-
* @public
|
|
9997
|
-
*/
|
|
9998
|
-
export interface CreateRuleInput {
|
|
9999
|
-
/**
|
|
10000
|
-
* <p>The ID of the domain where the rule is created.</p>
|
|
10001
|
-
* @public
|
|
10002
|
-
*/
|
|
10003
|
-
domainIdentifier: string | undefined;
|
|
10004
|
-
/**
|
|
10005
|
-
* <p>The name of the rule.</p>
|
|
10006
|
-
* @public
|
|
10007
|
-
*/
|
|
10008
|
-
name: string | undefined;
|
|
10009
|
-
/**
|
|
10010
|
-
* <p>The target of the rule.</p>
|
|
10011
|
-
* @public
|
|
10012
|
-
*/
|
|
10013
|
-
target: RuleTarget | undefined;
|
|
10014
|
-
/**
|
|
10015
|
-
* <p>The action of the rule.</p>
|
|
10016
|
-
* @public
|
|
10017
|
-
*/
|
|
10018
|
-
action: RuleAction | undefined;
|
|
10019
|
-
/**
|
|
10020
|
-
* <p>The scope of the rule.</p>
|
|
10021
|
-
* @public
|
|
10022
|
-
*/
|
|
10023
|
-
scope: RuleScope | undefined;
|
|
10024
|
-
/**
|
|
10025
|
-
* <p>The detail of the rule.</p>
|
|
10026
|
-
* @public
|
|
10027
|
-
*/
|
|
10028
|
-
detail: RuleDetail | undefined;
|
|
10029
|
-
/**
|
|
10030
|
-
* <p>The description of the rule.</p>
|
|
10031
|
-
* @public
|
|
10032
|
-
*/
|
|
10033
|
-
description?: string | undefined;
|
|
10034
|
-
/**
|
|
10035
|
-
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
|
|
10036
|
-
* @public
|
|
10037
|
-
*/
|
|
10038
|
-
clientToken?: string | undefined;
|
|
10039
|
-
}
|
|
10040
|
-
/**
|
|
10041
|
-
* @public
|
|
10042
|
-
*/
|
|
10043
|
-
export interface CreateRuleOutput {
|
|
10044
|
-
/**
|
|
10045
|
-
* <p>The ID of the rule.</p>
|
|
10046
|
-
* @public
|
|
10047
|
-
*/
|
|
10048
|
-
identifier: string | undefined;
|
|
10049
|
-
/**
|
|
10050
|
-
* <p>The name of the rule.</p>
|
|
10051
|
-
* @public
|
|
10052
|
-
*/
|
|
10053
|
-
name: string | undefined;
|
|
10054
|
-
/**
|
|
10055
|
-
* <p>The type of the rule.</p>
|
|
10056
|
-
* @public
|
|
10057
|
-
*/
|
|
10058
|
-
ruleType: RuleType | undefined;
|
|
10059
|
-
/**
|
|
10060
|
-
* <p>The target of the rule.</p>
|
|
10061
|
-
* @public
|
|
10062
|
-
*/
|
|
10063
|
-
target: RuleTarget | undefined;
|
|
10064
|
-
/**
|
|
10065
|
-
* <p>The action of the rule.</p>
|
|
10066
|
-
* @public
|
|
10067
|
-
*/
|
|
10068
|
-
action: RuleAction | undefined;
|
|
10069
|
-
/**
|
|
10070
|
-
* <p>The scope of the rule.</p>
|
|
10071
|
-
* @public
|
|
10072
|
-
*/
|
|
10073
|
-
scope: RuleScope | undefined;
|
|
10074
|
-
/**
|
|
10075
|
-
* <p>The detail of the rule.</p>
|
|
10076
|
-
* @public
|
|
10077
|
-
*/
|
|
10078
|
-
detail: RuleDetail | undefined;
|
|
10079
|
-
/**
|
|
10080
|
-
* <p>The target type of the rule.</p>
|
|
10081
|
-
* @public
|
|
10082
|
-
*/
|
|
10083
|
-
targetType?: RuleTargetType | undefined;
|
|
10084
|
-
/**
|
|
10085
|
-
* <p>The description of the rule.</p>
|
|
10086
|
-
* @public
|
|
10087
|
-
*/
|
|
10088
|
-
description?: string | undefined;
|
|
10089
|
-
/**
|
|
10090
|
-
* <p>The timestamp at which the rule is created.</p>
|
|
10091
|
-
* @public
|
|
10092
|
-
*/
|
|
10093
|
-
createdAt: Date | undefined;
|
|
10094
|
-
/**
|
|
10095
|
-
* <p>The user who creates the rule.</p>
|
|
10096
|
-
* @public
|
|
10097
|
-
*/
|
|
10098
|
-
createdBy: string | undefined;
|
|
10099
|
-
}
|
|
10100
|
-
/**
|
|
10101
|
-
* <p>A revision to be made to an asset published in a Amazon DataZone catalog.</p>
|
|
10102
|
-
* @public
|
|
10103
|
-
*/
|
|
10104
|
-
export interface ListingRevisionInput {
|
|
10105
|
-
/**
|
|
10106
|
-
* <p>An identifier of revision to be made to an asset published in a Amazon DataZone catalog.</p>
|
|
10107
|
-
* @public
|
|
10108
|
-
*/
|
|
10109
|
-
identifier: string | undefined;
|
|
10110
|
-
/**
|
|
10111
|
-
* <p>The details of a revision to be made to an asset published in a Amazon DataZone catalog.</p>
|
|
10112
|
-
* @public
|
|
10113
|
-
*/
|
|
10114
|
-
revision: string | undefined;
|
|
10115
|
-
}
|
|
10116
|
-
/**
|
|
10117
|
-
* <p>The details of a listing for which a subscription is to be granted.</p>
|
|
10118
|
-
* @public
|
|
10119
|
-
*/
|
|
10120
|
-
export type GrantedEntityInput = GrantedEntityInput.ListingMember | GrantedEntityInput.$UnknownMember;
|
|
10121
|
-
/**
|
|
10122
|
-
* @public
|
|
10123
|
-
*/
|
|
10124
|
-
export declare namespace GrantedEntityInput {
|
|
10125
|
-
/**
|
|
10126
|
-
* <p>The listing for which a subscription is to be granted.</p>
|
|
10127
|
-
* @public
|
|
10128
|
-
*/
|
|
10129
|
-
interface ListingMember {
|
|
10130
|
-
listing: ListingRevisionInput;
|
|
10131
|
-
$unknown?: never;
|
|
10132
|
-
}
|
|
10133
|
-
/**
|
|
10134
|
-
* @public
|
|
10135
|
-
*/
|
|
10136
|
-
interface $UnknownMember {
|
|
10137
|
-
listing?: never;
|
|
10138
|
-
$unknown: [string, any];
|
|
10139
|
-
}
|
|
10140
|
-
/**
|
|
10141
|
-
* @deprecated unused in schema-serde mode.
|
|
10142
|
-
*
|
|
10143
|
-
*/
|
|
10144
|
-
interface Visitor<T> {
|
|
10145
|
-
listing: (value: ListingRevisionInput) => T;
|
|
10146
|
-
_: (name: string, value: any) => T;
|
|
10147
|
-
}
|
|
10148
|
-
}
|
|
10149
|
-
/**
|
|
10150
|
-
* @public
|
|
10151
|
-
*/
|
|
10152
|
-
export interface CreateSubscriptionGrantInput {
|
|
10153
|
-
/**
|
|
10154
|
-
* <p>The ID of the Amazon DataZone domain in which the subscription grant is created.</p>
|
|
10155
|
-
* @public
|
|
10156
|
-
*/
|
|
10157
|
-
domainIdentifier: string | undefined;
|
|
10158
|
-
/**
|
|
10159
|
-
* <p>The ID of the environment in which the subscription grant is created.</p>
|
|
10160
|
-
* @public
|
|
10161
|
-
*/
|
|
10162
|
-
environmentIdentifier: string | undefined;
|
|
10163
|
-
/**
|
|
10164
|
-
* <p>The ID of the subscription target for which the subscription grant is created.</p>
|
|
10165
|
-
* @public
|
|
10166
|
-
*/
|
|
10167
|
-
subscriptionTargetIdentifier?: string | undefined;
|
|
10168
|
-
/**
|
|
10169
|
-
* <p>The entity to which the subscription is to be granted.</p>
|
|
10170
|
-
* @public
|
|
10171
|
-
*/
|
|
10172
|
-
grantedEntity: GrantedEntityInput | undefined;
|
|
10173
|
-
/**
|
|
10174
|
-
* <p>The names of the assets for which the subscription grant is created.</p>
|
|
10175
|
-
* @public
|
|
10176
|
-
*/
|
|
10177
|
-
assetTargetNames?: AssetTargetNameMap[] | undefined;
|
|
10178
|
-
/**
|
|
10179
|
-
* <p>A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.</p>
|
|
10180
|
-
* @public
|
|
10181
|
-
*/
|
|
10182
|
-
clientToken?: string | undefined;
|
|
10183
|
-
}
|