@aws-sdk/client-appsync 3.1019.0 → 3.1020.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.
@@ -12,7 +12,7 @@ import { CreateDomainNameCommand, } from "./commands/CreateDomainNameCommand";
12
12
  import { CreateFunctionCommand, } from "./commands/CreateFunctionCommand";
13
13
  import { CreateGraphqlApiCommand, } from "./commands/CreateGraphqlApiCommand";
14
14
  import { CreateResolverCommand, } from "./commands/CreateResolverCommand";
15
- import { CreateTypeCommand } from "./commands/CreateTypeCommand";
15
+ import { CreateTypeCommand, } from "./commands/CreateTypeCommand";
16
16
  import { DeleteApiCacheCommand, } from "./commands/DeleteApiCacheCommand";
17
17
  import { DeleteApiCommand } from "./commands/DeleteApiCommand";
18
18
  import { DeleteApiKeyCommand, } from "./commands/DeleteApiKeyCommand";
@@ -22,7 +22,7 @@ import { DeleteDomainNameCommand, } from "./commands/DeleteDomainNameCommand";
22
22
  import { DeleteFunctionCommand, } from "./commands/DeleteFunctionCommand";
23
23
  import { DeleteGraphqlApiCommand, } from "./commands/DeleteGraphqlApiCommand";
24
24
  import { DeleteResolverCommand, } from "./commands/DeleteResolverCommand";
25
- import { DeleteTypeCommand } from "./commands/DeleteTypeCommand";
25
+ import { DeleteTypeCommand, } from "./commands/DeleteTypeCommand";
26
26
  import { DisassociateApiCommand, } from "./commands/DisassociateApiCommand";
27
27
  import { DisassociateMergedGraphqlApiCommand, } from "./commands/DisassociateMergedGraphqlApiCommand";
28
28
  import { DisassociateSourceGraphqlApiCommand, } from "./commands/DisassociateSourceGraphqlApiCommand";
@@ -30,21 +30,21 @@ import { EvaluateCodeCommand, } from "./commands/EvaluateCodeCommand";
30
30
  import { EvaluateMappingTemplateCommand, } from "./commands/EvaluateMappingTemplateCommand";
31
31
  import { FlushApiCacheCommand, } from "./commands/FlushApiCacheCommand";
32
32
  import { GetApiAssociationCommand, } from "./commands/GetApiAssociationCommand";
33
- import { GetApiCacheCommand } from "./commands/GetApiCacheCommand";
33
+ import { GetApiCacheCommand, } from "./commands/GetApiCacheCommand";
34
34
  import { GetApiCommand } from "./commands/GetApiCommand";
35
35
  import { GetChannelNamespaceCommand, } from "./commands/GetChannelNamespaceCommand";
36
36
  import { GetDataSourceCommand, } from "./commands/GetDataSourceCommand";
37
37
  import { GetDataSourceIntrospectionCommand, } from "./commands/GetDataSourceIntrospectionCommand";
38
38
  import { GetDomainNameCommand, } from "./commands/GetDomainNameCommand";
39
- import { GetFunctionCommand } from "./commands/GetFunctionCommand";
39
+ import { GetFunctionCommand, } from "./commands/GetFunctionCommand";
40
40
  import { GetGraphqlApiCommand, } from "./commands/GetGraphqlApiCommand";
41
41
  import { GetGraphqlApiEnvironmentVariablesCommand, } from "./commands/GetGraphqlApiEnvironmentVariablesCommand";
42
42
  import { GetIntrospectionSchemaCommand, } from "./commands/GetIntrospectionSchemaCommand";
43
- import { GetResolverCommand } from "./commands/GetResolverCommand";
43
+ import { GetResolverCommand, } from "./commands/GetResolverCommand";
44
44
  import { GetSchemaCreationStatusCommand, } from "./commands/GetSchemaCreationStatusCommand";
45
45
  import { GetSourceApiAssociationCommand, } from "./commands/GetSourceApiAssociationCommand";
46
46
  import { GetTypeCommand } from "./commands/GetTypeCommand";
47
- import { ListApiKeysCommand } from "./commands/ListApiKeysCommand";
47
+ import { ListApiKeysCommand, } from "./commands/ListApiKeysCommand";
48
48
  import { ListApisCommand } from "./commands/ListApisCommand";
49
49
  import { ListChannelNamespacesCommand, } from "./commands/ListChannelNamespacesCommand";
50
50
  import { ListDataSourcesCommand, } from "./commands/ListDataSourcesCommand";
@@ -61,7 +61,7 @@ import { PutGraphqlApiEnvironmentVariablesCommand, } from "./commands/PutGraphql
61
61
  import { StartDataSourceIntrospectionCommand, } from "./commands/StartDataSourceIntrospectionCommand";
62
62
  import { StartSchemaCreationCommand, } from "./commands/StartSchemaCreationCommand";
63
63
  import { StartSchemaMergeCommand, } from "./commands/StartSchemaMergeCommand";
64
- import { TagResourceCommand } from "./commands/TagResourceCommand";
64
+ import { TagResourceCommand, } from "./commands/TagResourceCommand";
65
65
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
66
66
  import { UpdateApiCacheCommand, } from "./commands/UpdateApiCacheCommand";
67
67
  import { UpdateApiCommand } from "./commands/UpdateApiCommand";
@@ -73,7 +73,7 @@ import { UpdateFunctionCommand, } from "./commands/UpdateFunctionCommand";
73
73
  import { UpdateGraphqlApiCommand, } from "./commands/UpdateGraphqlApiCommand";
74
74
  import { UpdateResolverCommand, } from "./commands/UpdateResolverCommand";
75
75
  import { UpdateSourceApiAssociationCommand, } from "./commands/UpdateSourceApiAssociationCommand";
76
- import { UpdateTypeCommand } from "./commands/UpdateTypeCommand";
76
+ import { UpdateTypeCommand, } from "./commands/UpdateTypeCommand";
77
77
  import { paginateListApiKeys } from "./pagination/ListApiKeysPaginator";
78
78
  import { paginateListApis } from "./pagination/ListApisPaginator";
79
79
  import { paginateListChannelNamespaces } from "./pagination/ListChannelNamespacesPaginator";
@@ -1,79 +1,79 @@
1
1
  import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
2
2
  import { AppSyncClient } from "./AppSyncClient";
3
- import { AssociateApiCommandInput, AssociateApiCommandOutput } from "./commands/AssociateApiCommand";
4
- import { AssociateMergedGraphqlApiCommandInput, AssociateMergedGraphqlApiCommandOutput } from "./commands/AssociateMergedGraphqlApiCommand";
5
- import { AssociateSourceGraphqlApiCommandInput, AssociateSourceGraphqlApiCommandOutput } from "./commands/AssociateSourceGraphqlApiCommand";
6
- import { CreateApiCacheCommandInput, CreateApiCacheCommandOutput } from "./commands/CreateApiCacheCommand";
7
- import { CreateApiCommandInput, CreateApiCommandOutput } from "./commands/CreateApiCommand";
8
- import { CreateApiKeyCommandInput, CreateApiKeyCommandOutput } from "./commands/CreateApiKeyCommand";
9
- import { CreateChannelNamespaceCommandInput, CreateChannelNamespaceCommandOutput } from "./commands/CreateChannelNamespaceCommand";
10
- import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
11
- import { CreateDomainNameCommandInput, CreateDomainNameCommandOutput } from "./commands/CreateDomainNameCommand";
12
- import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
13
- import { CreateGraphqlApiCommandInput, CreateGraphqlApiCommandOutput } from "./commands/CreateGraphqlApiCommand";
14
- import { CreateResolverCommandInput, CreateResolverCommandOutput } from "./commands/CreateResolverCommand";
15
- import { CreateTypeCommandInput, CreateTypeCommandOutput } from "./commands/CreateTypeCommand";
16
- import { DeleteApiCacheCommandInput, DeleteApiCacheCommandOutput } from "./commands/DeleteApiCacheCommand";
17
- import { DeleteApiCommandInput, DeleteApiCommandOutput } from "./commands/DeleteApiCommand";
18
- import { DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput } from "./commands/DeleteApiKeyCommand";
19
- import { DeleteChannelNamespaceCommandInput, DeleteChannelNamespaceCommandOutput } from "./commands/DeleteChannelNamespaceCommand";
20
- import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
21
- import { DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput } from "./commands/DeleteDomainNameCommand";
22
- import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
23
- import { DeleteGraphqlApiCommandInput, DeleteGraphqlApiCommandOutput } from "./commands/DeleteGraphqlApiCommand";
24
- import { DeleteResolverCommandInput, DeleteResolverCommandOutput } from "./commands/DeleteResolverCommand";
25
- import { DeleteTypeCommandInput, DeleteTypeCommandOutput } from "./commands/DeleteTypeCommand";
26
- import { DisassociateApiCommandInput, DisassociateApiCommandOutput } from "./commands/DisassociateApiCommand";
27
- import { DisassociateMergedGraphqlApiCommandInput, DisassociateMergedGraphqlApiCommandOutput } from "./commands/DisassociateMergedGraphqlApiCommand";
28
- import { DisassociateSourceGraphqlApiCommandInput, DisassociateSourceGraphqlApiCommandOutput } from "./commands/DisassociateSourceGraphqlApiCommand";
29
- import { EvaluateCodeCommandInput, EvaluateCodeCommandOutput } from "./commands/EvaluateCodeCommand";
30
- import { EvaluateMappingTemplateCommandInput, EvaluateMappingTemplateCommandOutput } from "./commands/EvaluateMappingTemplateCommand";
31
- import { FlushApiCacheCommandInput, FlushApiCacheCommandOutput } from "./commands/FlushApiCacheCommand";
32
- import { GetApiAssociationCommandInput, GetApiAssociationCommandOutput } from "./commands/GetApiAssociationCommand";
33
- import { GetApiCacheCommandInput, GetApiCacheCommandOutput } from "./commands/GetApiCacheCommand";
34
- import { GetApiCommandInput, GetApiCommandOutput } from "./commands/GetApiCommand";
35
- import { GetChannelNamespaceCommandInput, GetChannelNamespaceCommandOutput } from "./commands/GetChannelNamespaceCommand";
36
- import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
37
- import { GetDataSourceIntrospectionCommandInput, GetDataSourceIntrospectionCommandOutput } from "./commands/GetDataSourceIntrospectionCommand";
38
- import { GetDomainNameCommandInput, GetDomainNameCommandOutput } from "./commands/GetDomainNameCommand";
39
- import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
40
- import { GetGraphqlApiCommandInput, GetGraphqlApiCommandOutput } from "./commands/GetGraphqlApiCommand";
41
- import { GetGraphqlApiEnvironmentVariablesCommandInput, GetGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/GetGraphqlApiEnvironmentVariablesCommand";
42
- import { GetIntrospectionSchemaCommandInput, GetIntrospectionSchemaCommandOutput } from "./commands/GetIntrospectionSchemaCommand";
43
- import { GetResolverCommandInput, GetResolverCommandOutput } from "./commands/GetResolverCommand";
44
- import { GetSchemaCreationStatusCommandInput, GetSchemaCreationStatusCommandOutput } from "./commands/GetSchemaCreationStatusCommand";
45
- import { GetSourceApiAssociationCommandInput, GetSourceApiAssociationCommandOutput } from "./commands/GetSourceApiAssociationCommand";
46
- import { GetTypeCommandInput, GetTypeCommandOutput } from "./commands/GetTypeCommand";
47
- import { ListApiKeysCommandInput, ListApiKeysCommandOutput } from "./commands/ListApiKeysCommand";
48
- import { ListApisCommandInput, ListApisCommandOutput } from "./commands/ListApisCommand";
49
- import { ListChannelNamespacesCommandInput, ListChannelNamespacesCommandOutput } from "./commands/ListChannelNamespacesCommand";
50
- import { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "./commands/ListDataSourcesCommand";
51
- import { ListDomainNamesCommandInput, ListDomainNamesCommandOutput } from "./commands/ListDomainNamesCommand";
52
- import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
53
- import { ListGraphqlApisCommandInput, ListGraphqlApisCommandOutput } from "./commands/ListGraphqlApisCommand";
54
- import { ListResolversByFunctionCommandInput, ListResolversByFunctionCommandOutput } from "./commands/ListResolversByFunctionCommand";
55
- import { ListResolversCommandInput, ListResolversCommandOutput } from "./commands/ListResolversCommand";
56
- import { ListSourceApiAssociationsCommandInput, ListSourceApiAssociationsCommandOutput } from "./commands/ListSourceApiAssociationsCommand";
57
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
58
- import { ListTypesByAssociationCommandInput, ListTypesByAssociationCommandOutput } from "./commands/ListTypesByAssociationCommand";
59
- import { ListTypesCommandInput, ListTypesCommandOutput } from "./commands/ListTypesCommand";
60
- import { PutGraphqlApiEnvironmentVariablesCommandInput, PutGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/PutGraphqlApiEnvironmentVariablesCommand";
61
- import { StartDataSourceIntrospectionCommandInput, StartDataSourceIntrospectionCommandOutput } from "./commands/StartDataSourceIntrospectionCommand";
62
- import { StartSchemaCreationCommandInput, StartSchemaCreationCommandOutput } from "./commands/StartSchemaCreationCommand";
63
- import { StartSchemaMergeCommandInput, StartSchemaMergeCommandOutput } from "./commands/StartSchemaMergeCommand";
64
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
65
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
66
- import { UpdateApiCacheCommandInput, UpdateApiCacheCommandOutput } from "./commands/UpdateApiCacheCommand";
67
- import { UpdateApiCommandInput, UpdateApiCommandOutput } from "./commands/UpdateApiCommand";
68
- import { UpdateApiKeyCommandInput, UpdateApiKeyCommandOutput } from "./commands/UpdateApiKeyCommand";
69
- import { UpdateChannelNamespaceCommandInput, UpdateChannelNamespaceCommandOutput } from "./commands/UpdateChannelNamespaceCommand";
70
- import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
71
- import { UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput } from "./commands/UpdateDomainNameCommand";
72
- import { UpdateFunctionCommandInput, UpdateFunctionCommandOutput } from "./commands/UpdateFunctionCommand";
73
- import { UpdateGraphqlApiCommandInput, UpdateGraphqlApiCommandOutput } from "./commands/UpdateGraphqlApiCommand";
74
- import { UpdateResolverCommandInput, UpdateResolverCommandOutput } from "./commands/UpdateResolverCommand";
75
- import { UpdateSourceApiAssociationCommandInput, UpdateSourceApiAssociationCommandOutput } from "./commands/UpdateSourceApiAssociationCommand";
76
- import { UpdateTypeCommandInput, UpdateTypeCommandOutput } from "./commands/UpdateTypeCommand";
3
+ import { type AssociateApiCommandInput, type AssociateApiCommandOutput } from "./commands/AssociateApiCommand";
4
+ import { type AssociateMergedGraphqlApiCommandInput, type AssociateMergedGraphqlApiCommandOutput } from "./commands/AssociateMergedGraphqlApiCommand";
5
+ import { type AssociateSourceGraphqlApiCommandInput, type AssociateSourceGraphqlApiCommandOutput } from "./commands/AssociateSourceGraphqlApiCommand";
6
+ import { type CreateApiCacheCommandInput, type CreateApiCacheCommandOutput } from "./commands/CreateApiCacheCommand";
7
+ import { type CreateApiCommandInput, type CreateApiCommandOutput } from "./commands/CreateApiCommand";
8
+ import { type CreateApiKeyCommandInput, type CreateApiKeyCommandOutput } from "./commands/CreateApiKeyCommand";
9
+ import { type CreateChannelNamespaceCommandInput, type CreateChannelNamespaceCommandOutput } from "./commands/CreateChannelNamespaceCommand";
10
+ import { type CreateDataSourceCommandInput, type CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
11
+ import { type CreateDomainNameCommandInput, type CreateDomainNameCommandOutput } from "./commands/CreateDomainNameCommand";
12
+ import { type CreateFunctionCommandInput, type CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
13
+ import { type CreateGraphqlApiCommandInput, type CreateGraphqlApiCommandOutput } from "./commands/CreateGraphqlApiCommand";
14
+ import { type CreateResolverCommandInput, type CreateResolverCommandOutput } from "./commands/CreateResolverCommand";
15
+ import { type CreateTypeCommandInput, type CreateTypeCommandOutput } from "./commands/CreateTypeCommand";
16
+ import { type DeleteApiCacheCommandInput, type DeleteApiCacheCommandOutput } from "./commands/DeleteApiCacheCommand";
17
+ import { type DeleteApiCommandInput, type DeleteApiCommandOutput } from "./commands/DeleteApiCommand";
18
+ import { type DeleteApiKeyCommandInput, type DeleteApiKeyCommandOutput } from "./commands/DeleteApiKeyCommand";
19
+ import { type DeleteChannelNamespaceCommandInput, type DeleteChannelNamespaceCommandOutput } from "./commands/DeleteChannelNamespaceCommand";
20
+ import { type DeleteDataSourceCommandInput, type DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
21
+ import { type DeleteDomainNameCommandInput, type DeleteDomainNameCommandOutput } from "./commands/DeleteDomainNameCommand";
22
+ import { type DeleteFunctionCommandInput, type DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
23
+ import { type DeleteGraphqlApiCommandInput, type DeleteGraphqlApiCommandOutput } from "./commands/DeleteGraphqlApiCommand";
24
+ import { type DeleteResolverCommandInput, type DeleteResolverCommandOutput } from "./commands/DeleteResolverCommand";
25
+ import { type DeleteTypeCommandInput, type DeleteTypeCommandOutput } from "./commands/DeleteTypeCommand";
26
+ import { type DisassociateApiCommandInput, type DisassociateApiCommandOutput } from "./commands/DisassociateApiCommand";
27
+ import { type DisassociateMergedGraphqlApiCommandInput, type DisassociateMergedGraphqlApiCommandOutput } from "./commands/DisassociateMergedGraphqlApiCommand";
28
+ import { type DisassociateSourceGraphqlApiCommandInput, type DisassociateSourceGraphqlApiCommandOutput } from "./commands/DisassociateSourceGraphqlApiCommand";
29
+ import { type EvaluateCodeCommandInput, type EvaluateCodeCommandOutput } from "./commands/EvaluateCodeCommand";
30
+ import { type EvaluateMappingTemplateCommandInput, type EvaluateMappingTemplateCommandOutput } from "./commands/EvaluateMappingTemplateCommand";
31
+ import { type FlushApiCacheCommandInput, type FlushApiCacheCommandOutput } from "./commands/FlushApiCacheCommand";
32
+ import { type GetApiAssociationCommandInput, type GetApiAssociationCommandOutput } from "./commands/GetApiAssociationCommand";
33
+ import { type GetApiCacheCommandInput, type GetApiCacheCommandOutput } from "./commands/GetApiCacheCommand";
34
+ import { type GetApiCommandInput, type GetApiCommandOutput } from "./commands/GetApiCommand";
35
+ import { type GetChannelNamespaceCommandInput, type GetChannelNamespaceCommandOutput } from "./commands/GetChannelNamespaceCommand";
36
+ import { type GetDataSourceCommandInput, type GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
37
+ import { type GetDataSourceIntrospectionCommandInput, type GetDataSourceIntrospectionCommandOutput } from "./commands/GetDataSourceIntrospectionCommand";
38
+ import { type GetDomainNameCommandInput, type GetDomainNameCommandOutput } from "./commands/GetDomainNameCommand";
39
+ import { type GetFunctionCommandInput, type GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
40
+ import { type GetGraphqlApiCommandInput, type GetGraphqlApiCommandOutput } from "./commands/GetGraphqlApiCommand";
41
+ import { type GetGraphqlApiEnvironmentVariablesCommandInput, type GetGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/GetGraphqlApiEnvironmentVariablesCommand";
42
+ import { type GetIntrospectionSchemaCommandInput, type GetIntrospectionSchemaCommandOutput } from "./commands/GetIntrospectionSchemaCommand";
43
+ import { type GetResolverCommandInput, type GetResolverCommandOutput } from "./commands/GetResolverCommand";
44
+ import { type GetSchemaCreationStatusCommandInput, type GetSchemaCreationStatusCommandOutput } from "./commands/GetSchemaCreationStatusCommand";
45
+ import { type GetSourceApiAssociationCommandInput, type GetSourceApiAssociationCommandOutput } from "./commands/GetSourceApiAssociationCommand";
46
+ import { type GetTypeCommandInput, type GetTypeCommandOutput } from "./commands/GetTypeCommand";
47
+ import { type ListApiKeysCommandInput, type ListApiKeysCommandOutput } from "./commands/ListApiKeysCommand";
48
+ import { type ListApisCommandInput, type ListApisCommandOutput } from "./commands/ListApisCommand";
49
+ import { type ListChannelNamespacesCommandInput, type ListChannelNamespacesCommandOutput } from "./commands/ListChannelNamespacesCommand";
50
+ import { type ListDataSourcesCommandInput, type ListDataSourcesCommandOutput } from "./commands/ListDataSourcesCommand";
51
+ import { type ListDomainNamesCommandInput, type ListDomainNamesCommandOutput } from "./commands/ListDomainNamesCommand";
52
+ import { type ListFunctionsCommandInput, type ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
53
+ import { type ListGraphqlApisCommandInput, type ListGraphqlApisCommandOutput } from "./commands/ListGraphqlApisCommand";
54
+ import { type ListResolversByFunctionCommandInput, type ListResolversByFunctionCommandOutput } from "./commands/ListResolversByFunctionCommand";
55
+ import { type ListResolversCommandInput, type ListResolversCommandOutput } from "./commands/ListResolversCommand";
56
+ import { type ListSourceApiAssociationsCommandInput, type ListSourceApiAssociationsCommandOutput } from "./commands/ListSourceApiAssociationsCommand";
57
+ import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
58
+ import { type ListTypesByAssociationCommandInput, type ListTypesByAssociationCommandOutput } from "./commands/ListTypesByAssociationCommand";
59
+ import { type ListTypesCommandInput, type ListTypesCommandOutput } from "./commands/ListTypesCommand";
60
+ import { type PutGraphqlApiEnvironmentVariablesCommandInput, type PutGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/PutGraphqlApiEnvironmentVariablesCommand";
61
+ import { type StartDataSourceIntrospectionCommandInput, type StartDataSourceIntrospectionCommandOutput } from "./commands/StartDataSourceIntrospectionCommand";
62
+ import { type StartSchemaCreationCommandInput, type StartSchemaCreationCommandOutput } from "./commands/StartSchemaCreationCommand";
63
+ import { type StartSchemaMergeCommandInput, type StartSchemaMergeCommandOutput } from "./commands/StartSchemaMergeCommand";
64
+ import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
65
+ import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
66
+ import { type UpdateApiCacheCommandInput, type UpdateApiCacheCommandOutput } from "./commands/UpdateApiCacheCommand";
67
+ import { type UpdateApiCommandInput, type UpdateApiCommandOutput } from "./commands/UpdateApiCommand";
68
+ import { type UpdateApiKeyCommandInput, type UpdateApiKeyCommandOutput } from "./commands/UpdateApiKeyCommand";
69
+ import { type UpdateChannelNamespaceCommandInput, type UpdateChannelNamespaceCommandOutput } from "./commands/UpdateChannelNamespaceCommand";
70
+ import { type UpdateDataSourceCommandInput, type UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
71
+ import { type UpdateDomainNameCommandInput, type UpdateDomainNameCommandOutput } from "./commands/UpdateDomainNameCommand";
72
+ import { type UpdateFunctionCommandInput, type UpdateFunctionCommandOutput } from "./commands/UpdateFunctionCommand";
73
+ import { type UpdateGraphqlApiCommandInput, type UpdateGraphqlApiCommandOutput } from "./commands/UpdateGraphqlApiCommand";
74
+ import { type UpdateResolverCommandInput, type UpdateResolverCommandOutput } from "./commands/UpdateResolverCommand";
75
+ import { type UpdateSourceApiAssociationCommandInput, type UpdateSourceApiAssociationCommandOutput } from "./commands/UpdateSourceApiAssociationCommand";
76
+ import { type UpdateTypeCommandInput, type UpdateTypeCommandOutput } from "./commands/UpdateTypeCommand";
77
77
  export interface AppSync {
78
78
  /**
79
79
  * @see {@link AssociateApiCommand}
@@ -5,83 +5,83 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
5
5
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
8
+ import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
- import { AssociateApiCommandInput, AssociateApiCommandOutput } from "./commands/AssociateApiCommand";
11
- import { AssociateMergedGraphqlApiCommandInput, AssociateMergedGraphqlApiCommandOutput } from "./commands/AssociateMergedGraphqlApiCommand";
12
- import { AssociateSourceGraphqlApiCommandInput, AssociateSourceGraphqlApiCommandOutput } from "./commands/AssociateSourceGraphqlApiCommand";
13
- import { CreateApiCacheCommandInput, CreateApiCacheCommandOutput } from "./commands/CreateApiCacheCommand";
14
- import { CreateApiCommandInput, CreateApiCommandOutput } from "./commands/CreateApiCommand";
15
- import { CreateApiKeyCommandInput, CreateApiKeyCommandOutput } from "./commands/CreateApiKeyCommand";
16
- import { CreateChannelNamespaceCommandInput, CreateChannelNamespaceCommandOutput } from "./commands/CreateChannelNamespaceCommand";
17
- import { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
18
- import { CreateDomainNameCommandInput, CreateDomainNameCommandOutput } from "./commands/CreateDomainNameCommand";
19
- import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
20
- import { CreateGraphqlApiCommandInput, CreateGraphqlApiCommandOutput } from "./commands/CreateGraphqlApiCommand";
21
- import { CreateResolverCommandInput, CreateResolverCommandOutput } from "./commands/CreateResolverCommand";
22
- import { CreateTypeCommandInput, CreateTypeCommandOutput } from "./commands/CreateTypeCommand";
23
- import { DeleteApiCacheCommandInput, DeleteApiCacheCommandOutput } from "./commands/DeleteApiCacheCommand";
24
- import { DeleteApiCommandInput, DeleteApiCommandOutput } from "./commands/DeleteApiCommand";
25
- import { DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput } from "./commands/DeleteApiKeyCommand";
26
- import { DeleteChannelNamespaceCommandInput, DeleteChannelNamespaceCommandOutput } from "./commands/DeleteChannelNamespaceCommand";
27
- import { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
28
- import { DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput } from "./commands/DeleteDomainNameCommand";
29
- import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
30
- import { DeleteGraphqlApiCommandInput, DeleteGraphqlApiCommandOutput } from "./commands/DeleteGraphqlApiCommand";
31
- import { DeleteResolverCommandInput, DeleteResolverCommandOutput } from "./commands/DeleteResolverCommand";
32
- import { DeleteTypeCommandInput, DeleteTypeCommandOutput } from "./commands/DeleteTypeCommand";
33
- import { DisassociateApiCommandInput, DisassociateApiCommandOutput } from "./commands/DisassociateApiCommand";
34
- import { DisassociateMergedGraphqlApiCommandInput, DisassociateMergedGraphqlApiCommandOutput } from "./commands/DisassociateMergedGraphqlApiCommand";
35
- import { DisassociateSourceGraphqlApiCommandInput, DisassociateSourceGraphqlApiCommandOutput } from "./commands/DisassociateSourceGraphqlApiCommand";
36
- import { EvaluateCodeCommandInput, EvaluateCodeCommandOutput } from "./commands/EvaluateCodeCommand";
37
- import { EvaluateMappingTemplateCommandInput, EvaluateMappingTemplateCommandOutput } from "./commands/EvaluateMappingTemplateCommand";
38
- import { FlushApiCacheCommandInput, FlushApiCacheCommandOutput } from "./commands/FlushApiCacheCommand";
39
- import { GetApiAssociationCommandInput, GetApiAssociationCommandOutput } from "./commands/GetApiAssociationCommand";
40
- import { GetApiCacheCommandInput, GetApiCacheCommandOutput } from "./commands/GetApiCacheCommand";
41
- import { GetApiCommandInput, GetApiCommandOutput } from "./commands/GetApiCommand";
42
- import { GetChannelNamespaceCommandInput, GetChannelNamespaceCommandOutput } from "./commands/GetChannelNamespaceCommand";
43
- import { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
44
- import { GetDataSourceIntrospectionCommandInput, GetDataSourceIntrospectionCommandOutput } from "./commands/GetDataSourceIntrospectionCommand";
45
- import { GetDomainNameCommandInput, GetDomainNameCommandOutput } from "./commands/GetDomainNameCommand";
46
- import { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
47
- import { GetGraphqlApiCommandInput, GetGraphqlApiCommandOutput } from "./commands/GetGraphqlApiCommand";
48
- import { GetGraphqlApiEnvironmentVariablesCommandInput, GetGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/GetGraphqlApiEnvironmentVariablesCommand";
49
- import { GetIntrospectionSchemaCommandInput, GetIntrospectionSchemaCommandOutput } from "./commands/GetIntrospectionSchemaCommand";
50
- import { GetResolverCommandInput, GetResolverCommandOutput } from "./commands/GetResolverCommand";
51
- import { GetSchemaCreationStatusCommandInput, GetSchemaCreationStatusCommandOutput } from "./commands/GetSchemaCreationStatusCommand";
52
- import { GetSourceApiAssociationCommandInput, GetSourceApiAssociationCommandOutput } from "./commands/GetSourceApiAssociationCommand";
53
- import { GetTypeCommandInput, GetTypeCommandOutput } from "./commands/GetTypeCommand";
54
- import { ListApiKeysCommandInput, ListApiKeysCommandOutput } from "./commands/ListApiKeysCommand";
55
- import { ListApisCommandInput, ListApisCommandOutput } from "./commands/ListApisCommand";
56
- import { ListChannelNamespacesCommandInput, ListChannelNamespacesCommandOutput } from "./commands/ListChannelNamespacesCommand";
57
- import { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "./commands/ListDataSourcesCommand";
58
- import { ListDomainNamesCommandInput, ListDomainNamesCommandOutput } from "./commands/ListDomainNamesCommand";
59
- import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
60
- import { ListGraphqlApisCommandInput, ListGraphqlApisCommandOutput } from "./commands/ListGraphqlApisCommand";
61
- import { ListResolversByFunctionCommandInput, ListResolversByFunctionCommandOutput } from "./commands/ListResolversByFunctionCommand";
62
- import { ListResolversCommandInput, ListResolversCommandOutput } from "./commands/ListResolversCommand";
63
- import { ListSourceApiAssociationsCommandInput, ListSourceApiAssociationsCommandOutput } from "./commands/ListSourceApiAssociationsCommand";
64
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
65
- import { ListTypesByAssociationCommandInput, ListTypesByAssociationCommandOutput } from "./commands/ListTypesByAssociationCommand";
66
- import { ListTypesCommandInput, ListTypesCommandOutput } from "./commands/ListTypesCommand";
67
- import { PutGraphqlApiEnvironmentVariablesCommandInput, PutGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/PutGraphqlApiEnvironmentVariablesCommand";
68
- import { StartDataSourceIntrospectionCommandInput, StartDataSourceIntrospectionCommandOutput } from "./commands/StartDataSourceIntrospectionCommand";
69
- import { StartSchemaCreationCommandInput, StartSchemaCreationCommandOutput } from "./commands/StartSchemaCreationCommand";
70
- import { StartSchemaMergeCommandInput, StartSchemaMergeCommandOutput } from "./commands/StartSchemaMergeCommand";
71
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
72
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
73
- import { UpdateApiCacheCommandInput, UpdateApiCacheCommandOutput } from "./commands/UpdateApiCacheCommand";
74
- import { UpdateApiCommandInput, UpdateApiCommandOutput } from "./commands/UpdateApiCommand";
75
- import { UpdateApiKeyCommandInput, UpdateApiKeyCommandOutput } from "./commands/UpdateApiKeyCommand";
76
- import { UpdateChannelNamespaceCommandInput, UpdateChannelNamespaceCommandOutput } from "./commands/UpdateChannelNamespaceCommand";
77
- import { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
78
- import { UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput } from "./commands/UpdateDomainNameCommand";
79
- import { UpdateFunctionCommandInput, UpdateFunctionCommandOutput } from "./commands/UpdateFunctionCommand";
80
- import { UpdateGraphqlApiCommandInput, UpdateGraphqlApiCommandOutput } from "./commands/UpdateGraphqlApiCommand";
81
- import { UpdateResolverCommandInput, UpdateResolverCommandOutput } from "./commands/UpdateResolverCommand";
82
- import { UpdateSourceApiAssociationCommandInput, UpdateSourceApiAssociationCommandOutput } from "./commands/UpdateSourceApiAssociationCommand";
83
- import { UpdateTypeCommandInput, UpdateTypeCommandOutput } from "./commands/UpdateTypeCommand";
84
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
10
+ import type { AssociateApiCommandInput, AssociateApiCommandOutput } from "./commands/AssociateApiCommand";
11
+ import type { AssociateMergedGraphqlApiCommandInput, AssociateMergedGraphqlApiCommandOutput } from "./commands/AssociateMergedGraphqlApiCommand";
12
+ import type { AssociateSourceGraphqlApiCommandInput, AssociateSourceGraphqlApiCommandOutput } from "./commands/AssociateSourceGraphqlApiCommand";
13
+ import type { CreateApiCacheCommandInput, CreateApiCacheCommandOutput } from "./commands/CreateApiCacheCommand";
14
+ import type { CreateApiCommandInput, CreateApiCommandOutput } from "./commands/CreateApiCommand";
15
+ import type { CreateApiKeyCommandInput, CreateApiKeyCommandOutput } from "./commands/CreateApiKeyCommand";
16
+ import type { CreateChannelNamespaceCommandInput, CreateChannelNamespaceCommandOutput } from "./commands/CreateChannelNamespaceCommand";
17
+ import type { CreateDataSourceCommandInput, CreateDataSourceCommandOutput } from "./commands/CreateDataSourceCommand";
18
+ import type { CreateDomainNameCommandInput, CreateDomainNameCommandOutput } from "./commands/CreateDomainNameCommand";
19
+ import type { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "./commands/CreateFunctionCommand";
20
+ import type { CreateGraphqlApiCommandInput, CreateGraphqlApiCommandOutput } from "./commands/CreateGraphqlApiCommand";
21
+ import type { CreateResolverCommandInput, CreateResolverCommandOutput } from "./commands/CreateResolverCommand";
22
+ import type { CreateTypeCommandInput, CreateTypeCommandOutput } from "./commands/CreateTypeCommand";
23
+ import type { DeleteApiCacheCommandInput, DeleteApiCacheCommandOutput } from "./commands/DeleteApiCacheCommand";
24
+ import type { DeleteApiCommandInput, DeleteApiCommandOutput } from "./commands/DeleteApiCommand";
25
+ import type { DeleteApiKeyCommandInput, DeleteApiKeyCommandOutput } from "./commands/DeleteApiKeyCommand";
26
+ import type { DeleteChannelNamespaceCommandInput, DeleteChannelNamespaceCommandOutput } from "./commands/DeleteChannelNamespaceCommand";
27
+ import type { DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput } from "./commands/DeleteDataSourceCommand";
28
+ import type { DeleteDomainNameCommandInput, DeleteDomainNameCommandOutput } from "./commands/DeleteDomainNameCommand";
29
+ import type { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "./commands/DeleteFunctionCommand";
30
+ import type { DeleteGraphqlApiCommandInput, DeleteGraphqlApiCommandOutput } from "./commands/DeleteGraphqlApiCommand";
31
+ import type { DeleteResolverCommandInput, DeleteResolverCommandOutput } from "./commands/DeleteResolverCommand";
32
+ import type { DeleteTypeCommandInput, DeleteTypeCommandOutput } from "./commands/DeleteTypeCommand";
33
+ import type { DisassociateApiCommandInput, DisassociateApiCommandOutput } from "./commands/DisassociateApiCommand";
34
+ import type { DisassociateMergedGraphqlApiCommandInput, DisassociateMergedGraphqlApiCommandOutput } from "./commands/DisassociateMergedGraphqlApiCommand";
35
+ import type { DisassociateSourceGraphqlApiCommandInput, DisassociateSourceGraphqlApiCommandOutput } from "./commands/DisassociateSourceGraphqlApiCommand";
36
+ import type { EvaluateCodeCommandInput, EvaluateCodeCommandOutput } from "./commands/EvaluateCodeCommand";
37
+ import type { EvaluateMappingTemplateCommandInput, EvaluateMappingTemplateCommandOutput } from "./commands/EvaluateMappingTemplateCommand";
38
+ import type { FlushApiCacheCommandInput, FlushApiCacheCommandOutput } from "./commands/FlushApiCacheCommand";
39
+ import type { GetApiAssociationCommandInput, GetApiAssociationCommandOutput } from "./commands/GetApiAssociationCommand";
40
+ import type { GetApiCacheCommandInput, GetApiCacheCommandOutput } from "./commands/GetApiCacheCommand";
41
+ import type { GetApiCommandInput, GetApiCommandOutput } from "./commands/GetApiCommand";
42
+ import type { GetChannelNamespaceCommandInput, GetChannelNamespaceCommandOutput } from "./commands/GetChannelNamespaceCommand";
43
+ import type { GetDataSourceCommandInput, GetDataSourceCommandOutput } from "./commands/GetDataSourceCommand";
44
+ import type { GetDataSourceIntrospectionCommandInput, GetDataSourceIntrospectionCommandOutput } from "./commands/GetDataSourceIntrospectionCommand";
45
+ import type { GetDomainNameCommandInput, GetDomainNameCommandOutput } from "./commands/GetDomainNameCommand";
46
+ import type { GetFunctionCommandInput, GetFunctionCommandOutput } from "./commands/GetFunctionCommand";
47
+ import type { GetGraphqlApiCommandInput, GetGraphqlApiCommandOutput } from "./commands/GetGraphqlApiCommand";
48
+ import type { GetGraphqlApiEnvironmentVariablesCommandInput, GetGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/GetGraphqlApiEnvironmentVariablesCommand";
49
+ import type { GetIntrospectionSchemaCommandInput, GetIntrospectionSchemaCommandOutput } from "./commands/GetIntrospectionSchemaCommand";
50
+ import type { GetResolverCommandInput, GetResolverCommandOutput } from "./commands/GetResolverCommand";
51
+ import type { GetSchemaCreationStatusCommandInput, GetSchemaCreationStatusCommandOutput } from "./commands/GetSchemaCreationStatusCommand";
52
+ import type { GetSourceApiAssociationCommandInput, GetSourceApiAssociationCommandOutput } from "./commands/GetSourceApiAssociationCommand";
53
+ import type { GetTypeCommandInput, GetTypeCommandOutput } from "./commands/GetTypeCommand";
54
+ import type { ListApiKeysCommandInput, ListApiKeysCommandOutput } from "./commands/ListApiKeysCommand";
55
+ import type { ListApisCommandInput, ListApisCommandOutput } from "./commands/ListApisCommand";
56
+ import type { ListChannelNamespacesCommandInput, ListChannelNamespacesCommandOutput } from "./commands/ListChannelNamespacesCommand";
57
+ import type { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "./commands/ListDataSourcesCommand";
58
+ import type { ListDomainNamesCommandInput, ListDomainNamesCommandOutput } from "./commands/ListDomainNamesCommand";
59
+ import type { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "./commands/ListFunctionsCommand";
60
+ import type { ListGraphqlApisCommandInput, ListGraphqlApisCommandOutput } from "./commands/ListGraphqlApisCommand";
61
+ import type { ListResolversByFunctionCommandInput, ListResolversByFunctionCommandOutput } from "./commands/ListResolversByFunctionCommand";
62
+ import type { ListResolversCommandInput, ListResolversCommandOutput } from "./commands/ListResolversCommand";
63
+ import type { ListSourceApiAssociationsCommandInput, ListSourceApiAssociationsCommandOutput } from "./commands/ListSourceApiAssociationsCommand";
64
+ import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
65
+ import type { ListTypesByAssociationCommandInput, ListTypesByAssociationCommandOutput } from "./commands/ListTypesByAssociationCommand";
66
+ import type { ListTypesCommandInput, ListTypesCommandOutput } from "./commands/ListTypesCommand";
67
+ import type { PutGraphqlApiEnvironmentVariablesCommandInput, PutGraphqlApiEnvironmentVariablesCommandOutput } from "./commands/PutGraphqlApiEnvironmentVariablesCommand";
68
+ import type { StartDataSourceIntrospectionCommandInput, StartDataSourceIntrospectionCommandOutput } from "./commands/StartDataSourceIntrospectionCommand";
69
+ import type { StartSchemaCreationCommandInput, StartSchemaCreationCommandOutput } from "./commands/StartSchemaCreationCommand";
70
+ import type { StartSchemaMergeCommandInput, StartSchemaMergeCommandOutput } from "./commands/StartSchemaMergeCommand";
71
+ import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
72
+ import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
73
+ import type { UpdateApiCacheCommandInput, UpdateApiCacheCommandOutput } from "./commands/UpdateApiCacheCommand";
74
+ import type { UpdateApiCommandInput, UpdateApiCommandOutput } from "./commands/UpdateApiCommand";
75
+ import type { UpdateApiKeyCommandInput, UpdateApiKeyCommandOutput } from "./commands/UpdateApiKeyCommand";
76
+ import type { UpdateChannelNamespaceCommandInput, UpdateChannelNamespaceCommandOutput } from "./commands/UpdateChannelNamespaceCommand";
77
+ import type { UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput } from "./commands/UpdateDataSourceCommand";
78
+ import type { UpdateDomainNameCommandInput, UpdateDomainNameCommandOutput } from "./commands/UpdateDomainNameCommand";
79
+ import type { UpdateFunctionCommandInput, UpdateFunctionCommandOutput } from "./commands/UpdateFunctionCommand";
80
+ import type { UpdateGraphqlApiCommandInput, UpdateGraphqlApiCommandOutput } from "./commands/UpdateGraphqlApiCommand";
81
+ import type { UpdateResolverCommandInput, UpdateResolverCommandOutput } from "./commands/UpdateResolverCommand";
82
+ import type { UpdateSourceApiAssociationCommandInput, UpdateSourceApiAssociationCommandOutput } from "./commands/UpdateSourceApiAssociationCommand";
83
+ import type { UpdateTypeCommandInput, UpdateTypeCommandOutput } from "./commands/UpdateTypeCommand";
84
+ import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
85
85
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
86
86
  export { __Client };
87
87
  /**
@@ -190,7 +190,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
190
190
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
191
191
  * @internal
192
192
  */
193
- defaultUserAgentProvider?: Provider<__UserAgent>;
193
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
194
194
  /**
195
195
  * Default credentials provider; Not available in browser runtime.
196
196
  * @deprecated
@@ -1,4 +1,4 @@
1
- import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types";
1
+ import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
2
  import type { AppSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
3
  /**
4
4
  * @internal
@@ -2,7 +2,7 @@ import { Command as $Command } from "@smithy/smithy-client";
2
2
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
4
4
  import type { AppSyncClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppSyncClient";
5
- import { type GetIntrospectionSchemaRequest, GetIntrospectionSchemaResponse } from "../models/models_0";
5
+ import type { GetIntrospectionSchemaRequest, GetIntrospectionSchemaResponse } from "../models/models_0";
6
6
  /**
7
7
  * @public
8
8
  */
@@ -6,7 +6,7 @@
6
6
  */
7
7
  export * from "./AppSyncClient";
8
8
  export * from "./AppSync";
9
- export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
9
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
10
10
  export type { RuntimeExtension } from "./runtimeExtensions";
11
11
  export type { AppSyncExtensionConfiguration } from "./extensionConfiguration";
12
12
  export * from "./commands";
@@ -1,6 +1,6 @@
1
1
  import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { AppSyncServiceException as __BaseException } from "./AppSyncServiceException";
3
- import { BadRequestReason } from "./enums";
3
+ import type { BadRequestReason } from "./enums";
4
4
  import type { BadRequestDetail } from "./models_0";
5
5
  /**
6
6
  * <p>You don't have access to perform this operation on this resource.</p>
@@ -1,4 +1,4 @@
1
- import { ApiCacheStatus, ApiCacheType, ApiCachingBehavior, AssociationStatus, AuthenticationType, AuthorizationType, CacheHealthMetricsConfig, ConflictDetectionType, ConflictHandlerType, DataSourceIntrospectionStatus, DataSourceLevelMetricsBehavior, DataSourceLevelMetricsConfig, DataSourceType, DefaultAction, EventLogLevel, FieldLogLevel, GraphQLApiIntrospectionConfig, GraphQLApiType, GraphQLApiVisibility, HandlerBehavior, InvokeType, MergeType, OperationLevelMetricsConfig, OutputType, Ownership, RelationalDatabaseSourceType, ResolverKind, ResolverLevelMetricsBehavior, ResolverLevelMetricsConfig, RuntimeName, SchemaStatus, SourceApiAssociationStatus, TypeDefinitionFormat } from "./enums";
1
+ import type { ApiCacheStatus, ApiCacheType, ApiCachingBehavior, AssociationStatus, AuthenticationType, AuthorizationType, CacheHealthMetricsConfig, ConflictDetectionType, ConflictHandlerType, DataSourceIntrospectionStatus, DataSourceLevelMetricsBehavior, DataSourceLevelMetricsConfig, DataSourceType, DefaultAction, EventLogLevel, FieldLogLevel, GraphQLApiIntrospectionConfig, GraphQLApiType, GraphQLApiVisibility, HandlerBehavior, InvokeType, MergeType, OperationLevelMetricsConfig, OutputType, Ownership, RelationalDatabaseSourceType, ResolverKind, ResolverLevelMetricsBehavior, ResolverLevelMetricsConfig, RuntimeName, SchemaStatus, SourceApiAssociationStatus, TypeDefinitionFormat } from "./enums";
2
2
  /**
3
3
  * <p>A <code>LambdaAuthorizerConfig</code> specifies how to authorize AppSync
4
4
  * API access when using the <code>AWS_LAMBDA</code> authorizer mode. Be aware that an AppSync API can have only one Lambda authorizer configured at a
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListApiKeysCommandInput, ListApiKeysCommandOutput } from "../commands/ListApiKeysCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListApisCommandInput, ListApisCommandOutput } from "../commands/ListApisCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListChannelNamespacesCommandInput, ListChannelNamespacesCommandOutput } from "../commands/ListChannelNamespacesCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListDataSourcesCommandInput, ListDataSourcesCommandOutput } from "../commands/ListDataSourcesCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListDomainNamesCommandInput, ListDomainNamesCommandOutput } from "../commands/ListDomainNamesCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "../commands/ListFunctionsCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListGraphqlApisCommandInput, ListGraphqlApisCommandOutput } from "../commands/ListGraphqlApisCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListResolversByFunctionCommandInput, ListResolversByFunctionCommandOutput } from "../commands/ListResolversByFunctionCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListResolversCommandInput, ListResolversCommandOutput } from "../commands/ListResolversCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListSourceApiAssociationsCommandInput, ListSourceApiAssociationsCommandOutput } from "../commands/ListSourceApiAssociationsCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListTypesByAssociationCommandInput, ListTypesByAssociationCommandOutput } from "../commands/ListTypesByAssociationCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListTypesCommandInput, ListTypesCommandOutput } from "../commands/ListTypesCommand";
3
- import { AppSyncPaginationConfiguration } from "./Interfaces";
3
+ import type { AppSyncPaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -26,6 +26,7 @@ import {
26
26
  Client as __Client,
27
27
  } from "@smithy/smithy-client";
28
28
  import {
29
+ AwsCredentialIdentityProvider,
29
30
  BodyLengthCalculator as __BodyLengthCalculator,
30
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
31
32
  ChecksumConstructor as __ChecksumConstructor,
@@ -37,8 +38,6 @@ import {
37
38
  Provider as __Provider,
38
39
  StreamCollector as __StreamCollector,
39
40
  UrlParser as __UrlParser,
40
- AwsCredentialIdentityProvider,
41
- Provider,
42
41
  UserAgent as __UserAgent,
43
42
  } from "@smithy/types";
44
43
  import {
@@ -516,7 +515,7 @@ export interface ClientDefaults
516
515
  useFipsEndpoint?: boolean | __Provider<boolean>;
517
516
  region?: string | __Provider<string>;
518
517
  profile?: string;
519
- defaultUserAgentProvider?: Provider<__UserAgent>;
518
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
520
519
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
521
520
  maxAttempts?: number | __Provider<number>;
522
521
  retryMode?: string | __Provider<string>;
@@ -1,7 +1,7 @@
1
1
  import {
2
- HttpAuthScheme,
3
2
  AwsCredentialIdentity,
4
3
  AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
5
  } from "@smithy/types";
6
6
  import { AppSyncHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appsync",
3
3
  "description": "AWS SDK for JavaScript Appsync Client for Node.js, Browser and React Native",
4
- "version": "3.1019.0",
4
+ "version": "3.1020.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-appsync",
@@ -21,42 +21,42 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.973.25",
25
- "@aws-sdk/credential-provider-node": "^3.972.27",
24
+ "@aws-sdk/core": "^3.973.26",
25
+ "@aws-sdk/credential-provider-node": "^3.972.28",
26
26
  "@aws-sdk/middleware-host-header": "^3.972.8",
27
27
  "@aws-sdk/middleware-logger": "^3.972.8",
28
28
  "@aws-sdk/middleware-recursion-detection": "^3.972.9",
29
- "@aws-sdk/middleware-user-agent": "^3.972.26",
29
+ "@aws-sdk/middleware-user-agent": "^3.972.27",
30
30
  "@aws-sdk/region-config-resolver": "^3.972.10",
31
31
  "@aws-sdk/types": "^3.973.6",
32
32
  "@aws-sdk/util-endpoints": "^3.996.5",
33
33
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
34
- "@aws-sdk/util-user-agent-node": "^3.973.12",
34
+ "@aws-sdk/util-user-agent-node": "^3.973.13",
35
35
  "@smithy/config-resolver": "^4.4.13",
36
- "@smithy/core": "^3.23.12",
36
+ "@smithy/core": "^3.23.13",
37
37
  "@smithy/fetch-http-handler": "^5.3.15",
38
38
  "@smithy/hash-node": "^4.2.12",
39
39
  "@smithy/invalid-dependency": "^4.2.12",
40
40
  "@smithy/middleware-content-length": "^4.2.12",
41
- "@smithy/middleware-endpoint": "^4.4.27",
42
- "@smithy/middleware-retry": "^4.4.44",
43
- "@smithy/middleware-serde": "^4.2.15",
41
+ "@smithy/middleware-endpoint": "^4.4.28",
42
+ "@smithy/middleware-retry": "^4.4.45",
43
+ "@smithy/middleware-serde": "^4.2.16",
44
44
  "@smithy/middleware-stack": "^4.2.12",
45
45
  "@smithy/node-config-provider": "^4.3.12",
46
- "@smithy/node-http-handler": "^4.5.0",
46
+ "@smithy/node-http-handler": "^4.5.1",
47
47
  "@smithy/protocol-http": "^5.3.12",
48
- "@smithy/smithy-client": "^4.12.7",
48
+ "@smithy/smithy-client": "^4.12.8",
49
49
  "@smithy/types": "^4.13.1",
50
50
  "@smithy/url-parser": "^4.2.12",
51
51
  "@smithy/util-base64": "^4.3.2",
52
52
  "@smithy/util-body-length-browser": "^4.2.2",
53
53
  "@smithy/util-body-length-node": "^4.2.3",
54
- "@smithy/util-defaults-mode-browser": "^4.3.43",
55
- "@smithy/util-defaults-mode-node": "^4.2.47",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.44",
55
+ "@smithy/util-defaults-mode-node": "^4.2.48",
56
56
  "@smithy/util-endpoints": "^3.3.3",
57
57
  "@smithy/util-middleware": "^4.2.12",
58
58
  "@smithy/util-retry": "^4.2.12",
59
- "@smithy/util-stream": "^4.5.20",
59
+ "@smithy/util-stream": "^4.5.21",
60
60
  "@smithy/util-utf8": "^4.2.2",
61
61
  "tslib": "^2.6.2"
62
62
  },