@aws-sdk/client-amplify 3.169.0 → 3.171.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Amplify.d.ts +633 -190
- package/dist-types/ts3.4/AmplifyClient.d.ts +326 -110
- package/dist-types/ts3.4/commands/CreateAppCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateBackendEnvironmentCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateBranchCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateDomainAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateWebhookCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteAppCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteBackendEnvironmentCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteBranchCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteDomainAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GenerateAccessLogsCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/GetAppCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetArtifactUrlCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/GetBackendEnvironmentCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetBranchCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/GetDomainAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/GetJobCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/GetWebhookCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListAppsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListBackendEnvironmentsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListBranchesCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListDomainAssociationsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StartDeploymentCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/StartJobCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/StopJobCommand.d.ts +30 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateAppCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateBranchCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateWebhookCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/index.d.ts +37 -37
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/AmplifyServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +844 -1196
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +449 -113
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { GetBranchRequest, GetBranchResult } from "../models/models_0";
|
|
14
|
+
export interface GetBranchCommandInput extends GetBranchRequest {}
|
|
15
|
+
export interface GetBranchCommandOutput
|
|
16
|
+
extends GetBranchResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetBranchCommand extends $Command<
|
|
19
|
+
GetBranchCommandInput,
|
|
20
|
+
GetBranchCommandOutput,
|
|
21
|
+
AmplifyClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetBranchCommandInput;
|
|
24
|
+
constructor(input: GetBranchCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetBranchCommandInput, GetBranchCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
GetDomainAssociationRequest,
|
|
15
|
+
GetDomainAssociationResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface GetDomainAssociationCommandInput
|
|
18
|
+
extends GetDomainAssociationRequest {}
|
|
19
|
+
export interface GetDomainAssociationCommandOutput
|
|
20
|
+
extends GetDomainAssociationResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetDomainAssociationCommand extends $Command<
|
|
23
|
+
GetDomainAssociationCommandInput,
|
|
24
|
+
GetDomainAssociationCommandOutput,
|
|
25
|
+
AmplifyClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetDomainAssociationCommandInput;
|
|
28
|
+
constructor(input: GetDomainAssociationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AmplifyClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
GetDomainAssociationCommandInput,
|
|
35
|
+
GetDomainAssociationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { GetJobRequest, GetJobResult } from "../models/models_0";
|
|
14
|
+
export interface GetJobCommandInput extends GetJobRequest {}
|
|
15
|
+
export interface GetJobCommandOutput extends GetJobResult, __MetadataBearer {}
|
|
16
|
+
export declare class GetJobCommand extends $Command<
|
|
17
|
+
GetJobCommandInput,
|
|
18
|
+
GetJobCommandOutput,
|
|
19
|
+
AmplifyClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: GetJobCommandInput;
|
|
22
|
+
constructor(input: GetJobCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: AmplifyClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<GetJobCommandInput, GetJobCommandOutput>;
|
|
28
|
+
private serialize;
|
|
29
|
+
private deserialize;
|
|
30
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { GetWebhookRequest, GetWebhookResult } from "../models/models_0";
|
|
14
|
+
export interface GetWebhookCommandInput extends GetWebhookRequest {}
|
|
15
|
+
export interface GetWebhookCommandOutput
|
|
16
|
+
extends GetWebhookResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class GetWebhookCommand extends $Command<
|
|
19
|
+
GetWebhookCommandInput,
|
|
20
|
+
GetWebhookCommandOutput,
|
|
21
|
+
AmplifyClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: GetWebhookCommandInput;
|
|
24
|
+
constructor(input: GetWebhookCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<GetWebhookCommandInput, GetWebhookCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListAppsRequest, ListAppsResult } from "../models/models_0";
|
|
14
|
+
export interface ListAppsCommandInput extends ListAppsRequest {}
|
|
15
|
+
export interface ListAppsCommandOutput
|
|
16
|
+
extends ListAppsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListAppsCommand extends $Command<
|
|
19
|
+
ListAppsCommandInput,
|
|
20
|
+
ListAppsCommandOutput,
|
|
21
|
+
AmplifyClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListAppsCommandInput;
|
|
24
|
+
constructor(input: ListAppsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListAppsCommandInput, ListAppsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListArtifactsRequest, ListArtifactsResult } from "../models/models_0";
|
|
14
|
+
export interface ListArtifactsCommandInput extends ListArtifactsRequest {}
|
|
15
|
+
export interface ListArtifactsCommandOutput
|
|
16
|
+
extends ListArtifactsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListArtifactsCommand extends $Command<
|
|
19
|
+
ListArtifactsCommandInput,
|
|
20
|
+
ListArtifactsCommandOutput,
|
|
21
|
+
AmplifyClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListArtifactsCommandInput;
|
|
24
|
+
constructor(input: ListArtifactsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListArtifactsCommandInput, ListArtifactsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
ListBackendEnvironmentsRequest,
|
|
15
|
+
ListBackendEnvironmentsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListBackendEnvironmentsCommandInput
|
|
18
|
+
extends ListBackendEnvironmentsRequest {}
|
|
19
|
+
export interface ListBackendEnvironmentsCommandOutput
|
|
20
|
+
extends ListBackendEnvironmentsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListBackendEnvironmentsCommand extends $Command<
|
|
23
|
+
ListBackendEnvironmentsCommandInput,
|
|
24
|
+
ListBackendEnvironmentsCommandOutput,
|
|
25
|
+
AmplifyClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListBackendEnvironmentsCommandInput;
|
|
28
|
+
constructor(input: ListBackendEnvironmentsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AmplifyClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListBackendEnvironmentsCommandInput,
|
|
35
|
+
ListBackendEnvironmentsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListBranchesRequest, ListBranchesResult } from "../models/models_0";
|
|
14
|
+
export interface ListBranchesCommandInput extends ListBranchesRequest {}
|
|
15
|
+
export interface ListBranchesCommandOutput
|
|
16
|
+
extends ListBranchesResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListBranchesCommand extends $Command<
|
|
19
|
+
ListBranchesCommandInput,
|
|
20
|
+
ListBranchesCommandOutput,
|
|
21
|
+
AmplifyClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListBranchesCommandInput;
|
|
24
|
+
constructor(input: ListBranchesCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListBranchesCommandInput, ListBranchesCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
ListDomainAssociationsRequest,
|
|
15
|
+
ListDomainAssociationsResult,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListDomainAssociationsCommandInput
|
|
18
|
+
extends ListDomainAssociationsRequest {}
|
|
19
|
+
export interface ListDomainAssociationsCommandOutput
|
|
20
|
+
extends ListDomainAssociationsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListDomainAssociationsCommand extends $Command<
|
|
23
|
+
ListDomainAssociationsCommandInput,
|
|
24
|
+
ListDomainAssociationsCommandOutput,
|
|
25
|
+
AmplifyClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListDomainAssociationsCommandInput;
|
|
28
|
+
constructor(input: ListDomainAssociationsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AmplifyClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
ListDomainAssociationsCommandInput,
|
|
35
|
+
ListDomainAssociationsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListJobsRequest, ListJobsResult } from "../models/models_0";
|
|
14
|
+
export interface ListJobsCommandInput extends ListJobsRequest {}
|
|
15
|
+
export interface ListJobsCommandOutput
|
|
16
|
+
extends ListJobsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListJobsCommand extends $Command<
|
|
19
|
+
ListJobsCommandInput,
|
|
20
|
+
ListJobsCommandOutput,
|
|
21
|
+
AmplifyClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListJobsCommandInput;
|
|
24
|
+
constructor(input: ListJobsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import {
|
|
14
|
+
ListTagsForResourceRequest,
|
|
15
|
+
ListTagsForResourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface ListTagsForResourceCommandInput
|
|
18
|
+
extends ListTagsForResourceRequest {}
|
|
19
|
+
export interface ListTagsForResourceCommandOutput
|
|
20
|
+
extends ListTagsForResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
AmplifyClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
28
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: AmplifyClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
AmplifyClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../AmplifyClient";
|
|
13
|
+
import { ListWebhooksRequest, ListWebhooksResult } from "../models/models_0";
|
|
14
|
+
export interface ListWebhooksCommandInput extends ListWebhooksRequest {}
|
|
15
|
+
export interface ListWebhooksCommandOutput
|
|
16
|
+
extends ListWebhooksResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListWebhooksCommand extends $Command<
|
|
19
|
+
ListWebhooksCommandInput,
|
|
20
|
+
ListWebhooksCommandOutput,
|
|
21
|
+
AmplifyClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListWebhooksCommandInput;
|
|
24
|
+
constructor(input: ListWebhooksCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: AmplifyClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListWebhooksCommandInput, ListWebhooksCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|