Skip to content

Commit b76f82b

Browse files
author
awstools
committed
feat(client-datazone): Add workflow properties support to connections APIs
1 parent fb08e5f commit b76f82b

File tree

15 files changed

+501
-211
lines changed

15 files changed

+501
-211
lines changed

clients/client-datazone/src/commands/CreateConnectionCommand.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,10 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
181181
* mlflowProperties: { // MlflowPropertiesInput
182182
* trackingServerArn: "STRING_VALUE",
183183
* },
184+
* workflowsMwaaProperties: { // WorkflowsMwaaPropertiesInput
185+
* mwaaEnvironmentName: "STRING_VALUE",
186+
* },
187+
* workflowsServerlessProperties: {},
184188
* },
185189
* enableTrustedIdentityPropagation: true || false,
186190
* scope: "DOMAIN" || "PROJECT",
@@ -367,6 +371,10 @@ export interface CreateConnectionCommandOutput extends CreateConnectionOutput, _
367371
* // mlflowProperties: { // MlflowPropertiesOutput
368372
* // trackingServerArn: "STRING_VALUE",
369373
* // },
374+
* // workflowsMwaaProperties: { // WorkflowsMwaaPropertiesOutput
375+
* // mwaaEnvironmentName: "STRING_VALUE",
376+
* // },
377+
* // workflowsServerlessProperties: {},
370378
* // },
371379
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
372380
* // scope: "DOMAIN" || "PROJECT",

clients/client-datazone/src/commands/CreateUserProfileCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
55

66
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import type { CreateUserProfileInput, CreateUserProfileOutput } from "../models/models_0";
8+
import type { CreateUserProfileInput, CreateUserProfileOutput } from "../models/models_1";
99
import { CreateUserProfile$ } from "../schemas/schemas_0";
1010

1111
/**

clients/client-datazone/src/commands/DeleteDataProductCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
55

66
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import type { DeleteDataProductInput, DeleteDataProductOutput } from "../models/models_0";
8+
import type { DeleteDataProductInput, DeleteDataProductOutput } from "../models/models_1";
99
import { DeleteDataProduct$ } from "../schemas/schemas_0";
1010

1111
/**

clients/client-datazone/src/commands/GetConnectionCommand.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,10 @@ export interface GetConnectionCommandOutput extends GetConnectionOutput, __Metad
230230
* // mlflowProperties: { // MlflowPropertiesOutput
231231
* // trackingServerArn: "STRING_VALUE",
232232
* // },
233+
* // workflowsMwaaProperties: { // WorkflowsMwaaPropertiesOutput
234+
* // mwaaEnvironmentName: "STRING_VALUE",
235+
* // },
236+
* // workflowsServerlessProperties: {},
233237
* // },
234238
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
235239
* // scope: "DOMAIN" || "PROJECT",

clients/client-datazone/src/commands/ListConnectionsCommand.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,10 @@ export interface ListConnectionsCommandOutput extends ListConnectionsOutput, __M
231231
* // mlflowProperties: { // MlflowPropertiesOutput
232232
* // trackingServerArn: "STRING_VALUE",
233233
* // },
234+
* // workflowsMwaaProperties: { // WorkflowsMwaaPropertiesOutput
235+
* // mwaaEnvironmentName: "STRING_VALUE",
236+
* // },
237+
* // workflowsServerlessProperties: {},
234238
* // },
235239
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
236240
* // scope: "DOMAIN" || "PROJECT",

clients/client-datazone/src/commands/SearchTypesCommand.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
55

66
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import type { SearchTypesOutput } from "../models/models_1";
9-
import type { SearchTypesInput } from "../models/models_2";
8+
import type { SearchTypesInput, SearchTypesOutput } from "../models/models_2";
109
import { SearchTypes$ } from "../schemas/schemas_0";
1110

1211
/**

clients/client-datazone/src/commands/SearchUserProfilesCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
55

66
import type { DataZoneClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataZoneClient";
77
import { commonParams } from "../endpoint/EndpointParameters";
8-
import type { SearchUserProfilesInput, SearchUserProfilesOutput } from "../models/models_1";
8+
import type { SearchUserProfilesInput, SearchUserProfilesOutput } from "../models/models_2";
99
import { SearchUserProfiles$ } from "../schemas/schemas_0";
1010

1111
/**

clients/client-datazone/src/commands/UpdateConnectionCommand.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,10 @@ export interface UpdateConnectionCommandOutput extends UpdateConnectionOutput, _
296296
* // mlflowProperties: { // MlflowPropertiesOutput
297297
* // trackingServerArn: "STRING_VALUE",
298298
* // },
299+
* // workflowsMwaaProperties: { // WorkflowsMwaaPropertiesOutput
300+
* // mwaaEnvironmentName: "STRING_VALUE",
301+
* // },
302+
* // workflowsServerlessProperties: {},
299303
* // },
300304
* // type: "ATHENA" || "BIGQUERY" || "DATABRICKS" || "DOCUMENTDB" || "DYNAMODB" || "HYPERPOD" || "IAM" || "MYSQL" || "OPENSEARCH" || "ORACLE" || "POSTGRESQL" || "REDSHIFT" || "S3" || "SAPHANA" || "SNOWFLAKE" || "SPARK" || "SQLSERVER" || "TERADATA" || "VERTICA" || "WORKFLOWS_MWAA" || "AMAZON_Q" || "MLFLOW", // required
301305
* // scope: "DOMAIN" || "PROJECT",

0 commit comments

Comments
 (0)