@aws-sdk/client-appflow 3.948.0 → 3.953.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.
Files changed (45) hide show
  1. package/dist-cjs/index.js +785 -535
  2. package/dist-cjs/runtimeConfig.shared.js +6 -1
  3. package/dist-es/commands/CancelFlowExecutionsCommand.js +2 -2
  4. package/dist-es/commands/CreateConnectorProfileCommand.js +2 -2
  5. package/dist-es/commands/CreateFlowCommand.js +2 -2
  6. package/dist-es/commands/DeleteConnectorProfileCommand.js +2 -2
  7. package/dist-es/commands/DeleteFlowCommand.js +2 -2
  8. package/dist-es/commands/DescribeConnectorCommand.js +2 -2
  9. package/dist-es/commands/DescribeConnectorEntityCommand.js +2 -2
  10. package/dist-es/commands/DescribeConnectorProfilesCommand.js +2 -2
  11. package/dist-es/commands/DescribeConnectorsCommand.js +2 -2
  12. package/dist-es/commands/DescribeFlowCommand.js +2 -2
  13. package/dist-es/commands/DescribeFlowExecutionRecordsCommand.js +2 -2
  14. package/dist-es/commands/ListConnectorEntitiesCommand.js +2 -2
  15. package/dist-es/commands/ListConnectorsCommand.js +2 -2
  16. package/dist-es/commands/ListFlowsCommand.js +2 -2
  17. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  18. package/dist-es/commands/RegisterConnectorCommand.js +2 -2
  19. package/dist-es/commands/ResetConnectorMetadataCacheCommand.js +2 -2
  20. package/dist-es/commands/StartFlowCommand.js +2 -2
  21. package/dist-es/commands/StopFlowCommand.js +2 -2
  22. package/dist-es/commands/TagResourceCommand.js +2 -2
  23. package/dist-es/commands/UnregisterConnectorCommand.js +2 -2
  24. package/dist-es/commands/UntagResourceCommand.js +2 -2
  25. package/dist-es/commands/UpdateConnectorProfileCommand.js +2 -2
  26. package/dist-es/commands/UpdateConnectorRegistrationCommand.js +2 -2
  27. package/dist-es/commands/UpdateFlowCommand.js +2 -2
  28. package/dist-es/index.js +1 -0
  29. package/dist-es/runtimeConfig.shared.js +6 -1
  30. package/dist-es/schemas/schemas_0.js +534 -520
  31. package/dist-types/AppflowClient.d.ts +1 -10
  32. package/dist-types/index.d.ts +1 -0
  33. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  34. package/dist-types/runtimeConfig.d.ts +6 -2
  35. package/dist-types/runtimeConfig.native.d.ts +6 -2
  36. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  37. package/dist-types/schemas/schemas_0.d.ts +237 -294
  38. package/dist-types/ts3.4/AppflowClient.d.ts +0 -4
  39. package/dist-types/ts3.4/index.d.ts +1 -0
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  44. package/dist-types/ts3.4/schemas/schemas_0.d.ts +236 -296
  45. package/package.json +34 -34
@@ -26,7 +26,12 @@ const getRuntimeConfig = (config) => {
26
26
  },
27
27
  ],
28
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
- protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.appflow" }),
29
+ protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
30
+ protocolSettings: config?.protocolSettings ?? {
31
+ defaultNamespace: "com.amazonaws.appflow",
32
+ version: "2020-08-23",
33
+ serviceTarget: "SandstoneConfigurationServiceLambda",
34
+ },
30
35
  serviceId: config?.serviceId ?? "Appflow",
31
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
32
37
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CancelFlowExecutions } from "../schemas/schemas_0";
4
+ import { CancelFlowExecutions$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CancelFlowExecutionsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CancelFlowExecutionsCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "CancelFlowExecutions", {})
13
13
  .n("AppflowClient", "CancelFlowExecutionsCommand")
14
- .sc(CancelFlowExecutions)
14
+ .sc(CancelFlowExecutions$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateConnectorProfile } from "../schemas/schemas_0";
4
+ import { CreateConnectorProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateConnectorProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateConnectorProfileCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "CreateConnectorProfile", {})
13
13
  .n("AppflowClient", "CreateConnectorProfileCommand")
14
- .sc(CreateConnectorProfile)
14
+ .sc(CreateConnectorProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { CreateFlow } from "../schemas/schemas_0";
4
+ import { CreateFlow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class CreateFlowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class CreateFlowCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "CreateFlow", {})
13
13
  .n("AppflowClient", "CreateFlowCommand")
14
- .sc(CreateFlow)
14
+ .sc(CreateFlow$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteConnectorProfile } from "../schemas/schemas_0";
4
+ import { DeleteConnectorProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteConnectorProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteConnectorProfileCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DeleteConnectorProfile", {})
13
13
  .n("AppflowClient", "DeleteConnectorProfileCommand")
14
- .sc(DeleteConnectorProfile)
14
+ .sc(DeleteConnectorProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DeleteFlow } from "../schemas/schemas_0";
4
+ import { DeleteFlow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DeleteFlowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DeleteFlowCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DeleteFlow", {})
13
13
  .n("AppflowClient", "DeleteFlowCommand")
14
- .sc(DeleteFlow)
14
+ .sc(DeleteFlow$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeConnector } from "../schemas/schemas_0";
4
+ import { DescribeConnector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeConnectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeConnectorCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnector", {})
13
13
  .n("AppflowClient", "DescribeConnectorCommand")
14
- .sc(DescribeConnector)
14
+ .sc(DescribeConnector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeConnectorEntity } from "../schemas/schemas_0";
4
+ import { DescribeConnectorEntity$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeConnectorEntityCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeConnectorEntityCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorEntity", {})
13
13
  .n("AppflowClient", "DescribeConnectorEntityCommand")
14
- .sc(DescribeConnectorEntity)
14
+ .sc(DescribeConnectorEntity$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeConnectorProfiles } from "../schemas/schemas_0";
4
+ import { DescribeConnectorProfiles$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeConnectorProfilesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeConnectorProfilesCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorProfiles", {})
13
13
  .n("AppflowClient", "DescribeConnectorProfilesCommand")
14
- .sc(DescribeConnectorProfiles)
14
+ .sc(DescribeConnectorProfiles$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeConnectors } from "../schemas/schemas_0";
4
+ import { DescribeConnectors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeConnectorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeConnectorsCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectors", {})
13
13
  .n("AppflowClient", "DescribeConnectorsCommand")
14
- .sc(DescribeConnectors)
14
+ .sc(DescribeConnectors$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeFlow } from "../schemas/schemas_0";
4
+ import { DescribeFlow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeFlowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeFlowCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DescribeFlow", {})
13
13
  .n("AppflowClient", "DescribeFlowCommand")
14
- .sc(DescribeFlow)
14
+ .sc(DescribeFlow$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { DescribeFlowExecutionRecords } from "../schemas/schemas_0";
4
+ import { DescribeFlowExecutionRecords$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class DescribeFlowExecutionRecordsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class DescribeFlowExecutionRecordsCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "DescribeFlowExecutionRecords", {})
13
13
  .n("AppflowClient", "DescribeFlowExecutionRecordsCommand")
14
- .sc(DescribeFlowExecutionRecords)
14
+ .sc(DescribeFlowExecutionRecords$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListConnectorEntities } from "../schemas/schemas_0";
4
+ import { ListConnectorEntities$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListConnectorEntitiesCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListConnectorEntitiesCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "ListConnectorEntities", {})
13
13
  .n("AppflowClient", "ListConnectorEntitiesCommand")
14
- .sc(ListConnectorEntities)
14
+ .sc(ListConnectorEntities$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListConnectors } from "../schemas/schemas_0";
4
+ import { ListConnectors$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListConnectorsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListConnectorsCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "ListConnectors", {})
13
13
  .n("AppflowClient", "ListConnectorsCommand")
14
- .sc(ListConnectors)
14
+ .sc(ListConnectors$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListFlows } from "../schemas/schemas_0";
4
+ import { ListFlows$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListFlowsCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListFlowsCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "ListFlows", {})
13
13
  .n("AppflowClient", "ListFlowsCommand")
14
- .sc(ListFlows)
14
+ .sc(ListFlows$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ListTagsForResource } from "../schemas/schemas_0";
4
+ import { ListTagsForResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ListTagsForResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "ListTagsForResource", {})
13
13
  .n("AppflowClient", "ListTagsForResourceCommand")
14
- .sc(ListTagsForResource)
14
+ .sc(ListTagsForResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { RegisterConnector } from "../schemas/schemas_0";
4
+ import { RegisterConnector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class RegisterConnectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class RegisterConnectorCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "RegisterConnector", {})
13
13
  .n("AppflowClient", "RegisterConnectorCommand")
14
- .sc(RegisterConnector)
14
+ .sc(RegisterConnector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { ResetConnectorMetadataCache } from "../schemas/schemas_0";
4
+ import { ResetConnectorMetadataCache$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class ResetConnectorMetadataCacheCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class ResetConnectorMetadataCacheCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "ResetConnectorMetadataCache", {})
13
13
  .n("AppflowClient", "ResetConnectorMetadataCacheCommand")
14
- .sc(ResetConnectorMetadataCache)
14
+ .sc(ResetConnectorMetadataCache$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StartFlow } from "../schemas/schemas_0";
4
+ import { StartFlow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StartFlowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StartFlowCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "StartFlow", {})
13
13
  .n("AppflowClient", "StartFlowCommand")
14
- .sc(StartFlow)
14
+ .sc(StartFlow$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { StopFlow } from "../schemas/schemas_0";
4
+ import { StopFlow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class StopFlowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class StopFlowCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "StopFlow", {})
13
13
  .n("AppflowClient", "StopFlowCommand")
14
- .sc(StopFlow)
14
+ .sc(StopFlow$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { TagResource } from "../schemas/schemas_0";
4
+ import { TagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class TagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "TagResource", {})
13
13
  .n("AppflowClient", "TagResourceCommand")
14
- .sc(TagResource)
14
+ .sc(TagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UnregisterConnector } from "../schemas/schemas_0";
4
+ import { UnregisterConnector$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UnregisterConnectorCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UnregisterConnectorCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "UnregisterConnector", {})
13
13
  .n("AppflowClient", "UnregisterConnectorCommand")
14
- .sc(UnregisterConnector)
14
+ .sc(UnregisterConnector$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UntagResource } from "../schemas/schemas_0";
4
+ import { UntagResource$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UntagResourceCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "UntagResource", {})
13
13
  .n("AppflowClient", "UntagResourceCommand")
14
- .sc(UntagResource)
14
+ .sc(UntagResource$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateConnectorProfile } from "../schemas/schemas_0";
4
+ import { UpdateConnectorProfile$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateConnectorProfileCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateConnectorProfileCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "UpdateConnectorProfile", {})
13
13
  .n("AppflowClient", "UpdateConnectorProfileCommand")
14
- .sc(UpdateConnectorProfile)
14
+ .sc(UpdateConnectorProfile$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateConnectorRegistration } from "../schemas/schemas_0";
4
+ import { UpdateConnectorRegistration$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateConnectorRegistrationCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateConnectorRegistrationCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "UpdateConnectorRegistration", {})
13
13
  .n("AppflowClient", "UpdateConnectorRegistrationCommand")
14
- .sc(UpdateConnectorRegistration)
14
+ .sc(UpdateConnectorRegistration$)
15
15
  .build() {
16
16
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { Command as $Command } from "@smithy/smithy-client";
3
3
  import { commonParams } from "../endpoint/EndpointParameters";
4
- import { UpdateFlow } from "../schemas/schemas_0";
4
+ import { UpdateFlow$ } from "../schemas/schemas_0";
5
5
  export { $Command };
6
6
  export class UpdateFlowCommand extends $Command
7
7
  .classBuilder()
@@ -11,6 +11,6 @@ export class UpdateFlowCommand extends $Command
11
11
  })
12
12
  .s("SandstoneConfigurationServiceLambda", "UpdateFlow", {})
13
13
  .n("AppflowClient", "UpdateFlowCommand")
14
- .sc(UpdateFlow)
14
+ .sc(UpdateFlow$)
15
15
  .build() {
16
16
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./AppflowClient";
2
2
  export * from "./Appflow";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -23,7 +23,12 @@ export const getRuntimeConfig = (config) => {
23
23
  },
24
24
  ],
25
25
  logger: config?.logger ?? new NoOpLogger(),
26
- protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.appflow" }),
26
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
27
+ protocolSettings: config?.protocolSettings ?? {
28
+ defaultNamespace: "com.amazonaws.appflow",
29
+ version: "2020-08-23",
30
+ serviceTarget: "SandstoneConfigurationServiceLambda",
31
+ },
27
32
  serviceId: config?.serviceId ?? "Appflow",
28
33
  urlParser: config?.urlParser ?? parseUrl,
29
34
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,