@aws-sdk/client-appsync 3.40.0 → 3.45.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 (96) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/README.md +7 -7
  3. package/dist-cjs/AppSync.js +120 -0
  4. package/dist-cjs/commands/AssociateApiCommand.js +36 -0
  5. package/dist-cjs/commands/CreateDomainNameCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteDomainNameCommand.js +36 -0
  7. package/dist-cjs/commands/DisassociateApiCommand.js +36 -0
  8. package/dist-cjs/commands/GetApiAssociationCommand.js +36 -0
  9. package/dist-cjs/commands/GetDomainNameCommand.js +36 -0
  10. package/dist-cjs/commands/ListDomainNamesCommand.js +36 -0
  11. package/dist-cjs/commands/UpdateDomainNameCommand.js +36 -0
  12. package/dist-cjs/commands/index.js +8 -0
  13. package/dist-cjs/endpoints.js +9 -0
  14. package/dist-cjs/models/models_0.js +136 -21
  15. package/dist-cjs/protocols/Aws_restJson1.js +911 -93
  16. package/dist-es/AppSync.js +120 -0
  17. package/dist-es/commands/AssociateApiCommand.js +39 -0
  18. package/dist-es/commands/CreateDomainNameCommand.js +39 -0
  19. package/dist-es/commands/DeleteDomainNameCommand.js +39 -0
  20. package/dist-es/commands/DisassociateApiCommand.js +39 -0
  21. package/dist-es/commands/GetApiAssociationCommand.js +39 -0
  22. package/dist-es/commands/GetDomainNameCommand.js +39 -0
  23. package/dist-es/commands/ListDomainNamesCommand.js +39 -0
  24. package/dist-es/commands/UpdateDomainNameCommand.js +39 -0
  25. package/dist-es/commands/index.js +8 -0
  26. package/dist-es/endpoints.js +9 -0
  27. package/dist-es/models/models_0.js +90 -12
  28. package/dist-es/protocols/Aws_restJson1.js +1039 -84
  29. package/dist-types/AppSync.d.ts +60 -5
  30. package/dist-types/AppSyncClient.d.ts +10 -2
  31. package/dist-types/commands/AssociateApiCommand.d.ts +35 -0
  32. package/dist-types/commands/CreateApiCacheCommand.d.ts +1 -1
  33. package/dist-types/commands/CreateApiKeyCommand.d.ts +2 -3
  34. package/dist-types/commands/CreateDataSourceCommand.d.ts +1 -1
  35. package/dist-types/commands/CreateDomainNameCommand.d.ts +35 -0
  36. package/dist-types/commands/CreateFunctionCommand.d.ts +2 -2
  37. package/dist-types/commands/CreateGraphqlApiCommand.d.ts +1 -1
  38. package/dist-types/commands/CreateResolverCommand.d.ts +2 -2
  39. package/dist-types/commands/CreateTypeCommand.d.ts +1 -1
  40. package/dist-types/commands/DeleteApiCacheCommand.d.ts +1 -1
  41. package/dist-types/commands/DeleteApiKeyCommand.d.ts +1 -1
  42. package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -1
  43. package/dist-types/commands/DeleteDomainNameCommand.d.ts +35 -0
  44. package/dist-types/commands/DeleteFunctionCommand.d.ts +1 -1
  45. package/dist-types/commands/DeleteGraphqlApiCommand.d.ts +1 -1
  46. package/dist-types/commands/DeleteResolverCommand.d.ts +1 -1
  47. package/dist-types/commands/DeleteTypeCommand.d.ts +1 -1
  48. package/dist-types/commands/DisassociateApiCommand.d.ts +35 -0
  49. package/dist-types/commands/FlushApiCacheCommand.d.ts +1 -1
  50. package/dist-types/commands/GetApiAssociationCommand.d.ts +35 -0
  51. package/dist-types/commands/GetApiCacheCommand.d.ts +1 -1
  52. package/dist-types/commands/GetDataSourceCommand.d.ts +1 -1
  53. package/dist-types/commands/GetDomainNameCommand.d.ts +35 -0
  54. package/dist-types/commands/GetFunctionCommand.d.ts +1 -1
  55. package/dist-types/commands/GetGraphqlApiCommand.d.ts +1 -1
  56. package/dist-types/commands/GetIntrospectionSchemaCommand.d.ts +1 -1
  57. package/dist-types/commands/GetResolverCommand.d.ts +1 -1
  58. package/dist-types/commands/GetSchemaCreationStatusCommand.d.ts +1 -1
  59. package/dist-types/commands/GetTypeCommand.d.ts +1 -1
  60. package/dist-types/commands/ListApiKeysCommand.d.ts +1 -1
  61. package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -1
  62. package/dist-types/commands/ListDomainNamesCommand.d.ts +35 -0
  63. package/dist-types/commands/ListFunctionsCommand.d.ts +1 -1
  64. package/dist-types/commands/ListGraphqlApisCommand.d.ts +1 -1
  65. package/dist-types/commands/ListResolversByFunctionCommand.d.ts +1 -1
  66. package/dist-types/commands/ListResolversCommand.d.ts +1 -1
  67. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  68. package/dist-types/commands/ListTypesCommand.d.ts +1 -1
  69. package/dist-types/commands/StartSchemaCreationCommand.d.ts +1 -1
  70. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  71. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateApiCacheCommand.d.ts +1 -1
  73. package/dist-types/commands/UpdateApiKeyCommand.d.ts +2 -2
  74. package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -1
  75. package/dist-types/commands/UpdateDomainNameCommand.d.ts +35 -0
  76. package/dist-types/commands/UpdateFunctionCommand.d.ts +1 -1
  77. package/dist-types/commands/UpdateGraphqlApiCommand.d.ts +1 -1
  78. package/dist-types/commands/UpdateResolverCommand.d.ts +1 -1
  79. package/dist-types/commands/UpdateTypeCommand.d.ts +1 -1
  80. package/dist-types/commands/index.d.ts +8 -0
  81. package/dist-types/models/models_0.d.ts +554 -255
  82. package/dist-types/protocols/Aws_restJson1.d.ts +24 -0
  83. package/dist-types/ts3.4/AppSync.d.ts +40 -0
  84. package/dist-types/ts3.4/AppSyncClient.d.ts +10 -2
  85. package/dist-types/ts3.4/commands/AssociateApiCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/CreateDomainNameCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/DeleteDomainNameCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/DisassociateApiCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/GetApiAssociationCommand.d.ts +17 -0
  90. package/dist-types/ts3.4/commands/GetDomainNameCommand.d.ts +17 -0
  91. package/dist-types/ts3.4/commands/ListDomainNamesCommand.d.ts +17 -0
  92. package/dist-types/ts3.4/commands/UpdateDomainNameCommand.d.ts +17 -0
  93. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  94. package/dist-types/ts3.4/models/models_0.d.ts +203 -30
  95. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
  96. package/package.json +6 -6
@@ -20,7 +20,7 @@ export interface GetApiCacheCommandOutput extends GetApiCacheResponse, __Metadat
20
20
  *
21
21
  * @see {@link GetApiCacheCommandInput} for command's `input` shape.
22
22
  * @see {@link GetApiCacheCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetApiCacheCommand extends $Command<GetApiCacheCommandInput, GetApiCacheCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceResponse, __Met
20
20
  *
21
21
  * @see {@link GetDataSourceCommandInput} for command's `input` shape.
22
22
  * @see {@link GetDataSourceCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetDataSourceCommand extends $Command<GetDataSourceCommandInput, GetDataSourceCommandOutput, AppSyncClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
4
+ import { GetDomainNameRequest, GetDomainNameResponse } from "../models/models_0";
5
+ export interface GetDomainNameCommandInput extends GetDomainNameRequest {
6
+ }
7
+ export interface GetDomainNameCommandOutput extends GetDomainNameResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Retrieves a custom <code>DomainName</code> object.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { AppSyncClient, GetDomainNameCommand } from "@aws-sdk/client-appsync"; // ES Modules import
15
+ * // const { AppSyncClient, GetDomainNameCommand } = require("@aws-sdk/client-appsync"); // CommonJS import
16
+ * const client = new AppSyncClient(config);
17
+ * const command = new GetDomainNameCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link GetDomainNameCommandInput} for command's `input` shape.
22
+ * @see {@link GetDomainNameCommandOutput} for command's `response` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class GetDomainNameCommand extends $Command<GetDomainNameCommandInput, GetDomainNameCommandOutput, AppSyncClientResolvedConfig> {
27
+ readonly input: GetDomainNameCommandInput;
28
+ constructor(input: GetDomainNameCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDomainNameCommandInput, GetDomainNameCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface GetFunctionCommandOutput extends GetFunctionResponse, __Metadat
20
20
  *
21
21
  * @see {@link GetFunctionCommandInput} for command's `input` shape.
22
22
  * @see {@link GetFunctionCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetFunctionCommand extends $Command<GetFunctionCommandInput, GetFunctionCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetGraphqlApiCommandOutput extends GetGraphqlApiResponse, __Met
20
20
  *
21
21
  * @see {@link GetGraphqlApiCommandInput} for command's `input` shape.
22
22
  * @see {@link GetGraphqlApiCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetGraphqlApiCommand extends $Command<GetGraphqlApiCommandInput, GetGraphqlApiCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetIntrospectionSchemaCommandOutput extends GetIntrospectionSch
20
20
  *
21
21
  * @see {@link GetIntrospectionSchemaCommandInput} for command's `input` shape.
22
22
  * @see {@link GetIntrospectionSchemaCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetIntrospectionSchemaCommand extends $Command<GetIntrospectionSchemaCommandInput, GetIntrospectionSchemaCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetResolverCommandOutput extends GetResolverResponse, __Metadat
20
20
  *
21
21
  * @see {@link GetResolverCommandInput} for command's `input` shape.
22
22
  * @see {@link GetResolverCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetResolverCommand extends $Command<GetResolverCommandInput, GetResolverCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetSchemaCreationStatusCommandOutput extends GetSchemaCreationS
20
20
  *
21
21
  * @see {@link GetSchemaCreationStatusCommandInput} for command's `input` shape.
22
22
  * @see {@link GetSchemaCreationStatusCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetSchemaCreationStatusCommand extends $Command<GetSchemaCreationStatusCommandInput, GetSchemaCreationStatusCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface GetTypeCommandOutput extends GetTypeResponse, __MetadataBearer
20
20
  *
21
21
  * @see {@link GetTypeCommandInput} for command's `input` shape.
22
22
  * @see {@link GetTypeCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class GetTypeCommand extends $Command<GetTypeCommandInput, GetTypeCommandOutput, AppSyncClientResolvedConfig> {
@@ -26,7 +26,7 @@ export interface ListApiKeysCommandOutput extends ListApiKeysResponse, __Metadat
26
26
  *
27
27
  * @see {@link ListApiKeysCommandInput} for command's `input` shape.
28
28
  * @see {@link ListApiKeysCommandOutput} for command's `response` shape.
29
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
29
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
30
30
  *
31
31
  */
32
32
  export declare class ListApiKeysCommand extends $Command<ListApiKeysCommandInput, ListApiKeysCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListDataSourcesCommandOutput extends ListDataSourcesResponse, _
20
20
  *
21
21
  * @see {@link ListDataSourcesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListDataSourcesCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListDataSourcesCommand extends $Command<ListDataSourcesCommandInput, ListDataSourcesCommandOutput, AppSyncClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
4
+ import { ListDomainNamesRequest, ListDomainNamesResponse } from "../models/models_0";
5
+ export interface ListDomainNamesCommandInput extends ListDomainNamesRequest {
6
+ }
7
+ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Lists multiple custom domain names.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { AppSyncClient, ListDomainNamesCommand } from "@aws-sdk/client-appsync"; // ES Modules import
15
+ * // const { AppSyncClient, ListDomainNamesCommand } = require("@aws-sdk/client-appsync"); // CommonJS import
16
+ * const client = new AppSyncClient(config);
17
+ * const command = new ListDomainNamesCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ListDomainNamesCommandInput} for command's `input` shape.
22
+ * @see {@link ListDomainNamesCommandOutput} for command's `response` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ListDomainNamesCommand extends $Command<ListDomainNamesCommandInput, ListDomainNamesCommandOutput, AppSyncClientResolvedConfig> {
27
+ readonly input: ListDomainNamesCommandInput;
28
+ constructor(input: ListDomainNamesCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDomainNamesCommandInput, ListDomainNamesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface ListFunctionsCommandOutput extends ListFunctionsResponse, __Met
20
20
  *
21
21
  * @see {@link ListFunctionsCommandInput} for command's `input` shape.
22
22
  * @see {@link ListFunctionsCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListFunctionsCommand extends $Command<ListFunctionsCommandInput, ListFunctionsCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListGraphqlApisCommandOutput extends ListGraphqlApisResponse, _
20
20
  *
21
21
  * @see {@link ListGraphqlApisCommandInput} for command's `input` shape.
22
22
  * @see {@link ListGraphqlApisCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListGraphqlApisCommand extends $Command<ListGraphqlApisCommandInput, ListGraphqlApisCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListResolversByFunctionCommandOutput extends ListResolversByFun
20
20
  *
21
21
  * @see {@link ListResolversByFunctionCommandInput} for command's `input` shape.
22
22
  * @see {@link ListResolversByFunctionCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListResolversByFunctionCommand extends $Command<ListResolversByFunctionCommandInput, ListResolversByFunctionCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListResolversCommandOutput extends ListResolversResponse, __Met
20
20
  *
21
21
  * @see {@link ListResolversCommandInput} for command's `input` shape.
22
22
  * @see {@link ListResolversCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListResolversCommand extends $Command<ListResolversCommandInput, ListResolversCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
20
20
  *
21
21
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface ListTypesCommandOutput extends ListTypesResponse, __MetadataBea
20
20
  *
21
21
  * @see {@link ListTypesCommandInput} for command's `input` shape.
22
22
  * @see {@link ListTypesCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class ListTypesCommand extends $Command<ListTypesCommandInput, ListTypesCommandOutput, AppSyncClientResolvedConfig> {
@@ -22,7 +22,7 @@ export interface StartSchemaCreationCommandOutput extends StartSchemaCreationRes
22
22
  *
23
23
  * @see {@link StartSchemaCreationCommandInput} for command's `input` shape.
24
24
  * @see {@link StartSchemaCreationCommandOutput} for command's `response` shape.
25
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
25
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
26
26
  *
27
27
  */
28
28
  export declare class StartSchemaCreationCommand extends $Command<StartSchemaCreationCommandInput, StartSchemaCreationCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
20
20
  *
21
21
  * @see {@link TagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
20
20
  *
21
21
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateApiCacheCommandOutput extends UpdateApiCacheResponse, __M
20
20
  *
21
21
  * @see {@link UpdateApiCacheCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateApiCacheCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateApiCacheCommand extends $Command<UpdateApiCacheCommandInput, UpdateApiCacheCommandOutput, AppSyncClientResolvedConfig> {
@@ -7,7 +7,7 @@ export interface UpdateApiKeyCommandInput extends UpdateApiKeyRequest {
7
7
  export interface UpdateApiKeyCommandOutput extends UpdateApiKeyResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Updates an API key. The key can be updated while it is not deleted.</p>
10
+ * <p>Updates an API key. You can update the key as long as it's not deleted.</p>
11
11
  * @example
12
12
  * Use a bare-bones client and the command you need to make an API call.
13
13
  * ```javascript
@@ -20,7 +20,7 @@ export interface UpdateApiKeyCommandOutput extends UpdateApiKeyResponse, __Metad
20
20
  *
21
21
  * @see {@link UpdateApiKeyCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateApiKeyCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateApiKeyCommand extends $Command<UpdateApiKeyCommandInput, UpdateApiKeyCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceResponse,
20
20
  *
21
21
  * @see {@link UpdateDataSourceCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateDataSourceCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateDataSourceCommand extends $Command<UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput, AppSyncClientResolvedConfig> {
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
4
+ import { UpdateDomainNameRequest, UpdateDomainNameResponse } from "../models/models_0";
5
+ export interface UpdateDomainNameCommandInput extends UpdateDomainNameRequest {
6
+ }
7
+ export interface UpdateDomainNameCommandOutput extends UpdateDomainNameResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Updates a custom <code>DomainName</code> object.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { AppSyncClient, UpdateDomainNameCommand } from "@aws-sdk/client-appsync"; // ES Modules import
15
+ * // const { AppSyncClient, UpdateDomainNameCommand } = require("@aws-sdk/client-appsync"); // CommonJS import
16
+ * const client = new AppSyncClient(config);
17
+ * const command = new UpdateDomainNameCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link UpdateDomainNameCommandInput} for command's `input` shape.
22
+ * @see {@link UpdateDomainNameCommandOutput} for command's `response` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class UpdateDomainNameCommand extends $Command<UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput, AppSyncClientResolvedConfig> {
27
+ readonly input: UpdateDomainNameCommandInput;
28
+ constructor(input: UpdateDomainNameCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppSyncClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -20,7 +20,7 @@ export interface UpdateFunctionCommandOutput extends UpdateFunctionResponse, __M
20
20
  *
21
21
  * @see {@link UpdateFunctionCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateFunctionCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateFunctionCommand extends $Command<UpdateFunctionCommandInput, UpdateFunctionCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateGraphqlApiCommandOutput extends UpdateGraphqlApiResponse,
20
20
  *
21
21
  * @see {@link UpdateGraphqlApiCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateGraphqlApiCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateGraphqlApiCommand extends $Command<UpdateGraphqlApiCommandInput, UpdateGraphqlApiCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateResolverCommandOutput extends UpdateResolverResponse, __M
20
20
  *
21
21
  * @see {@link UpdateResolverCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateResolverCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateResolverCommand extends $Command<UpdateResolverCommandInput, UpdateResolverCommandOutput, AppSyncClientResolvedConfig> {
@@ -20,7 +20,7 @@ export interface UpdateTypeCommandOutput extends UpdateTypeResponse, __MetadataB
20
20
  *
21
21
  * @see {@link UpdateTypeCommandInput} for command's `input` shape.
22
22
  * @see {@link UpdateTypeCommandOutput} for command's `response` shape.
23
- * @see {@link AppSyncClientResolvedConfig | config} for command's `input` shape.
23
+ * @see {@link AppSyncClientResolvedConfig | config} for AppSyncClient's `config` shape.
24
24
  *
25
25
  */
26
26
  export declare class UpdateTypeCommand extends $Command<UpdateTypeCommandInput, UpdateTypeCommandOutput, AppSyncClientResolvedConfig> {
@@ -1,6 +1,8 @@
1
+ export * from "./AssociateApiCommand";
1
2
  export * from "./CreateApiCacheCommand";
2
3
  export * from "./CreateApiKeyCommand";
3
4
  export * from "./CreateDataSourceCommand";
5
+ export * from "./CreateDomainNameCommand";
4
6
  export * from "./CreateFunctionCommand";
5
7
  export * from "./CreateGraphqlApiCommand";
6
8
  export * from "./CreateResolverCommand";
@@ -8,13 +10,17 @@ export * from "./CreateTypeCommand";
8
10
  export * from "./DeleteApiCacheCommand";
9
11
  export * from "./DeleteApiKeyCommand";
10
12
  export * from "./DeleteDataSourceCommand";
13
+ export * from "./DeleteDomainNameCommand";
11
14
  export * from "./DeleteFunctionCommand";
12
15
  export * from "./DeleteGraphqlApiCommand";
13
16
  export * from "./DeleteResolverCommand";
14
17
  export * from "./DeleteTypeCommand";
18
+ export * from "./DisassociateApiCommand";
15
19
  export * from "./FlushApiCacheCommand";
20
+ export * from "./GetApiAssociationCommand";
16
21
  export * from "./GetApiCacheCommand";
17
22
  export * from "./GetDataSourceCommand";
23
+ export * from "./GetDomainNameCommand";
18
24
  export * from "./GetFunctionCommand";
19
25
  export * from "./GetGraphqlApiCommand";
20
26
  export * from "./GetIntrospectionSchemaCommand";
@@ -23,6 +29,7 @@ export * from "./GetSchemaCreationStatusCommand";
23
29
  export * from "./GetTypeCommand";
24
30
  export * from "./ListApiKeysCommand";
25
31
  export * from "./ListDataSourcesCommand";
32
+ export * from "./ListDomainNamesCommand";
26
33
  export * from "./ListFunctionsCommand";
27
34
  export * from "./ListGraphqlApisCommand";
28
35
  export * from "./ListResolversByFunctionCommand";
@@ -35,6 +42,7 @@ export * from "./UntagResourceCommand";
35
42
  export * from "./UpdateApiCacheCommand";
36
43
  export * from "./UpdateApiKeyCommand";
37
44
  export * from "./UpdateDataSourceCommand";
45
+ export * from "./UpdateDomainNameCommand";
38
46
  export * from "./UpdateFunctionCommand";
39
47
  export * from "./UpdateGraphqlApiCommand";
40
48
  export * from "./UpdateResolverCommand";