@aws-sdk/client-wellarchitected 3.296.0 → 3.297.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/dist-types/WellArchitected.d.ts +43 -0
- package/dist-types/WellArchitectedClient.d.ts +24 -4
- package/dist-types/commands/AssociateLensesCommand.d.ts +16 -0
- package/dist-types/commands/CreateLensShareCommand.d.ts +16 -0
- package/dist-types/commands/CreateLensVersionCommand.d.ts +16 -0
- package/dist-types/commands/CreateMilestoneCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkloadCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkloadShareCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLensCommand.d.ts +16 -0
- package/dist-types/commands/DeleteLensShareCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkloadCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkloadShareCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateLensesCommand.d.ts +16 -0
- package/dist-types/commands/ExportLensCommand.d.ts +16 -0
- package/dist-types/commands/GetAnswerCommand.d.ts +16 -0
- package/dist-types/commands/GetLensCommand.d.ts +16 -0
- package/dist-types/commands/GetLensReviewCommand.d.ts +16 -0
- package/dist-types/commands/GetLensReviewReportCommand.d.ts +16 -0
- package/dist-types/commands/GetLensVersionDifferenceCommand.d.ts +16 -0
- package/dist-types/commands/GetMilestoneCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkloadCommand.d.ts +16 -0
- package/dist-types/commands/ImportLensCommand.d.ts +16 -0
- package/dist-types/commands/ListAnswersCommand.d.ts +16 -0
- package/dist-types/commands/ListCheckDetailsCommand.d.ts +16 -0
- package/dist-types/commands/ListCheckSummariesCommand.d.ts +16 -0
- package/dist-types/commands/ListLensReviewImprovementsCommand.d.ts +16 -0
- package/dist-types/commands/ListLensReviewsCommand.d.ts +16 -0
- package/dist-types/commands/ListLensSharesCommand.d.ts +16 -0
- package/dist-types/commands/ListLensesCommand.d.ts +16 -0
- package/dist-types/commands/ListMilestonesCommand.d.ts +16 -0
- package/dist-types/commands/ListNotificationsCommand.d.ts +16 -0
- package/dist-types/commands/ListShareInvitationsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkloadSharesCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkloadsCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAnswerCommand.d.ts +16 -0
- package/dist-types/commands/UpdateGlobalSettingsCommand.d.ts +16 -0
- package/dist-types/commands/UpdateLensReviewCommand.d.ts +16 -0
- package/dist-types/commands/UpdateShareInvitationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkloadCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkloadShareCommand.d.ts +16 -0
- package/dist-types/commands/UpgradeLensReviewCommand.d.ts +16 -0
- package/dist-types/models/WellArchitectedServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +248 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAnswersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCheckDetailsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCheckSummariesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLensReviewImprovementsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLensReviewsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLensSharesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListLensesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMilestonesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNotificationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListShareInvitationsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkloadSharesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkloadsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CreateWorkloadShareInput, CreateWorkloadShareOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateWorkloadShareCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateWorkloadShareCommandInput extends CreateWorkloadShareInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateWorkloadShareCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateWorkloadShareCommandOutput extends CreateWorkloadShareOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Create a workload share.</p>
|
|
18
23
|
* <p>The owner of a workload can share it with other Amazon Web Services accounts and IAM users in the same
|
|
19
24
|
* Amazon Web Services Region. Shared access to a workload is not removed until the workload invitation is
|
|
@@ -30,6 +35,8 @@ export interface CreateWorkloadShareCommandOutput extends CreateWorkloadShareOut
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param CreateWorkloadShareCommandInput - {@link CreateWorkloadShareCommandInput}
|
|
39
|
+
* @returns {@link CreateWorkloadShareCommandOutput}
|
|
33
40
|
* @see {@link CreateWorkloadShareCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link CreateWorkloadShareCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface CreateWorkloadShareCommandOutput extends CreateWorkloadShareOut
|
|
|
60
67
|
export declare class CreateWorkloadShareCommand extends $Command<CreateWorkloadShareCommandInput, CreateWorkloadShareCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
61
68
|
readonly input: CreateWorkloadShareCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: CreateWorkloadShareCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateWorkloadShareCommandInput, CreateWorkloadShareCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteLensInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLensCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLensCommandInput extends DeleteLensInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLensCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLensCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an existing lens.</p>
|
|
18
23
|
* <p>Only the owner of a lens can delete it. After the lens is deleted, Amazon Web Services accounts and IAM users
|
|
19
24
|
* that you shared the lens with can continue to use it, but they will no longer be able to apply it to new workloads.
|
|
@@ -39,6 +44,8 @@ export interface DeleteLensCommandOutput extends __MetadataBearer {
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param DeleteLensCommandInput - {@link DeleteLensCommandInput}
|
|
48
|
+
* @returns {@link DeleteLensCommandOutput}
|
|
42
49
|
* @see {@link DeleteLensCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link DeleteLensCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface DeleteLensCommandOutput extends __MetadataBearer {
|
|
|
66
73
|
export declare class DeleteLensCommand extends $Command<DeleteLensCommandInput, DeleteLensCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
67
74
|
readonly input: DeleteLensCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: DeleteLensCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLensCommandInput, DeleteLensCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteLensShareInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteLensShareCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteLensShareCommandInput extends DeleteLensShareInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteLensShareCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteLensShareCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete a lens share.</p>
|
|
18
23
|
* <p>After the lens share is deleted, Amazon Web Services accounts, IAM users, organizations,
|
|
19
24
|
* and organizational units (OUs)
|
|
@@ -39,6 +44,8 @@ export interface DeleteLensShareCommandOutput extends __MetadataBearer {
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param DeleteLensShareCommandInput - {@link DeleteLensShareCommandInput}
|
|
48
|
+
* @returns {@link DeleteLensShareCommandOutput}
|
|
42
49
|
* @see {@link DeleteLensShareCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link DeleteLensShareCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -66,11 +73,20 @@ export interface DeleteLensShareCommandOutput extends __MetadataBearer {
|
|
|
66
73
|
export declare class DeleteLensShareCommand extends $Command<DeleteLensShareCommandInput, DeleteLensShareCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
67
74
|
readonly input: DeleteLensShareCommandInput;
|
|
68
75
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
69
79
|
constructor(input: DeleteLensShareCommandInput);
|
|
70
80
|
/**
|
|
71
81
|
* @internal
|
|
72
82
|
*/
|
|
73
83
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLensShareCommandInput, DeleteLensShareCommandOutput>;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
74
87
|
private serialize;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
75
91
|
private deserialize;
|
|
76
92
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteWorkloadInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteWorkloadCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteWorkloadCommandInput extends DeleteWorkloadInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteWorkloadCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteWorkloadCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete an existing workload.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteWorkloadCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteWorkloadCommandInput - {@link DeleteWorkloadCommandInput}
|
|
34
|
+
* @returns {@link DeleteWorkloadCommandOutput}
|
|
28
35
|
* @see {@link DeleteWorkloadCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteWorkloadCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteWorkloadCommandOutput extends __MetadataBearer {
|
|
|
52
59
|
export declare class DeleteWorkloadCommand extends $Command<DeleteWorkloadCommandInput, DeleteWorkloadCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteWorkloadCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteWorkloadCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteWorkloadCommandInput, DeleteWorkloadCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DeleteWorkloadShareInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteWorkloadShareCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteWorkloadShareCommandInput extends DeleteWorkloadShareInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteWorkloadShareCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteWorkloadShareCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Delete a workload share.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteWorkloadShareCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteWorkloadShareCommandInput - {@link DeleteWorkloadShareCommandInput}
|
|
34
|
+
* @returns {@link DeleteWorkloadShareCommandOutput}
|
|
28
35
|
* @see {@link DeleteWorkloadShareCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteWorkloadShareCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface DeleteWorkloadShareCommandOutput extends __MetadataBearer {
|
|
|
52
59
|
export declare class DeleteWorkloadShareCommand extends $Command<DeleteWorkloadShareCommandInput, DeleteWorkloadShareCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
53
60
|
readonly input: DeleteWorkloadShareCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: DeleteWorkloadShareCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteWorkloadShareCommandInput, DeleteWorkloadShareCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { DisassociateLensesInput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateLensesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateLensesCommandInput extends DisassociateLensesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateLensesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateLensesCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Disassociate a lens from a workload.</p>
|
|
18
23
|
* <p>Up to 10 lenses can be disassociated from a workload in a single API operation.</p>
|
|
19
24
|
* <note>
|
|
@@ -30,6 +35,8 @@ export interface DisassociateLensesCommandOutput extends __MetadataBearer {
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DisassociateLensesCommandInput - {@link DisassociateLensesCommandInput}
|
|
39
|
+
* @returns {@link DisassociateLensesCommandOutput}
|
|
33
40
|
* @see {@link DisassociateLensesCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DisassociateLensesCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface DisassociateLensesCommandOutput extends __MetadataBearer {
|
|
|
57
64
|
export declare class DisassociateLensesCommand extends $Command<DisassociateLensesCommandInput, DisassociateLensesCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
58
65
|
readonly input: DisassociateLensesCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: DisassociateLensesCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateLensesCommandInput, DisassociateLensesCommandOutput>;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
65
78
|
private serialize;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
66
82
|
private deserialize;
|
|
67
83
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { ExportLensInput, ExportLensOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ExportLensCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ExportLensCommandInput extends ExportLensInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ExportLensCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ExportLensCommandOutput extends ExportLensOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Export an existing lens.</p>
|
|
18
23
|
* <p>Lenses are defined in JSON. For more information, see <a href="https://docs.aws.amazon.com/wellarchitected/latest/userguide/lenses-format-specification.html">JSON format specification</a>
|
|
19
24
|
* in the <i>Well-Architected Tool User Guide</i>. Only the owner of a lens can export it.
|
|
@@ -39,6 +44,8 @@ export interface ExportLensCommandOutput extends ExportLensOutput, __MetadataBea
|
|
|
39
44
|
* const response = await client.send(command);
|
|
40
45
|
* ```
|
|
41
46
|
*
|
|
47
|
+
* @param ExportLensCommandInput - {@link ExportLensCommandInput}
|
|
48
|
+
* @returns {@link ExportLensCommandOutput}
|
|
42
49
|
* @see {@link ExportLensCommandInput} for command's `input` shape.
|
|
43
50
|
* @see {@link ExportLensCommandOutput} for command's `response` shape.
|
|
44
51
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface ExportLensCommandOutput extends ExportLensOutput, __MetadataBea
|
|
|
63
70
|
export declare class ExportLensCommand extends $Command<ExportLensCommandInput, ExportLensCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
64
71
|
readonly input: ExportLensCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: ExportLensCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ExportLensCommandInput, ExportLensCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetAnswerInput, GetAnswerOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetAnswerCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetAnswerCommandInput extends GetAnswerInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetAnswerCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetAnswerCommandOutput extends GetAnswerOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get the answer to a specific question in a workload review.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetAnswerCommandOutput extends GetAnswerOutput, __MetadataBeare
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetAnswerCommandInput - {@link GetAnswerCommandInput}
|
|
34
|
+
* @returns {@link GetAnswerCommandOutput}
|
|
28
35
|
* @see {@link GetAnswerCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetAnswerCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetAnswerCommandOutput extends GetAnswerOutput, __MetadataBeare
|
|
|
49
56
|
export declare class GetAnswerCommand extends $Command<GetAnswerCommandInput, GetAnswerCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
50
57
|
readonly input: GetAnswerCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetAnswerCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAnswerCommandInput, GetAnswerCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetLensInput, GetLensOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLensCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLensCommandInput extends GetLensInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLensCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLensCommandOutput extends GetLensOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get an existing lens.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetLensCommandOutput extends GetLensOutput, __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetLensCommandInput - {@link GetLensCommandInput}
|
|
34
|
+
* @returns {@link GetLensCommandOutput}
|
|
28
35
|
* @see {@link GetLensCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetLensCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetLensCommandOutput extends GetLensOutput, __MetadataBearer {
|
|
|
49
56
|
export declare class GetLensCommand extends $Command<GetLensCommandInput, GetLensCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
50
57
|
readonly input: GetLensCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetLensCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLensCommandInput, GetLensCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetLensReviewInput, GetLensReviewOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLensReviewCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLensReviewCommandInput extends GetLensReviewInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLensReviewCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLensReviewCommandOutput extends GetLensReviewOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get lens review.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetLensReviewCommandOutput extends GetLensReviewOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetLensReviewCommandInput - {@link GetLensReviewCommandInput}
|
|
34
|
+
* @returns {@link GetLensReviewCommandOutput}
|
|
28
35
|
* @see {@link GetLensReviewCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetLensReviewCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetLensReviewCommandOutput extends GetLensReviewOutput, __Metad
|
|
|
49
56
|
export declare class GetLensReviewCommand extends $Command<GetLensReviewCommandInput, GetLensReviewCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
50
57
|
readonly input: GetLensReviewCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetLensReviewCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLensReviewCommandInput, GetLensReviewCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetLensReviewReportInput, GetLensReviewReportOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLensReviewReportCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLensReviewReportCommandInput extends GetLensReviewReportInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLensReviewReportCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLensReviewReportCommandOutput extends GetLensReviewReportOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get lens review report.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetLensReviewReportCommandOutput extends GetLensReviewReportOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetLensReviewReportCommandInput - {@link GetLensReviewReportCommandInput}
|
|
34
|
+
* @returns {@link GetLensReviewReportCommandOutput}
|
|
28
35
|
* @see {@link GetLensReviewReportCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetLensReviewReportCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetLensReviewReportCommandOutput extends GetLensReviewReportOut
|
|
|
49
56
|
export declare class GetLensReviewReportCommand extends $Command<GetLensReviewReportCommandInput, GetLensReviewReportCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
50
57
|
readonly input: GetLensReviewReportCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetLensReviewReportCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLensReviewReportCommandInput, GetLensReviewReportCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetLensVersionDifferenceInput, GetLensVersionDifferenceOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetLensVersionDifferenceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetLensVersionDifferenceCommandInput extends GetLensVersionDifferenceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetLensVersionDifferenceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetLensVersionDifferenceCommandOutput extends GetLensVersionDifferenceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get lens version differences.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetLensVersionDifferenceCommandOutput extends GetLensVersionDif
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetLensVersionDifferenceCommandInput - {@link GetLensVersionDifferenceCommandInput}
|
|
34
|
+
* @returns {@link GetLensVersionDifferenceCommandOutput}
|
|
28
35
|
* @see {@link GetLensVersionDifferenceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetLensVersionDifferenceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetLensVersionDifferenceCommandOutput extends GetLensVersionDif
|
|
|
49
56
|
export declare class GetLensVersionDifferenceCommand extends $Command<GetLensVersionDifferenceCommandInput, GetLensVersionDifferenceCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
50
57
|
readonly input: GetLensVersionDifferenceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetLensVersionDifferenceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetLensVersionDifferenceCommandInput, GetLensVersionDifferenceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GetMilestoneInput, GetMilestoneOutput } from "../models/models_0";
|
|
5
5
|
import { ServiceInputTypes, ServiceOutputTypes, WellArchitectedClientResolvedConfig } from "../WellArchitectedClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetMilestoneCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetMilestoneCommandInput extends GetMilestoneInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetMilestoneCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetMilestoneCommandOutput extends GetMilestoneOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Get a milestone for an existing workload.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface GetMilestoneCommandOutput extends GetMilestoneOutput, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param GetMilestoneCommandInput - {@link GetMilestoneCommandInput}
|
|
34
|
+
* @returns {@link GetMilestoneCommandOutput}
|
|
28
35
|
* @see {@link GetMilestoneCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link GetMilestoneCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link WellArchitectedClientResolvedConfig | config} for WellArchitectedClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface GetMilestoneCommandOutput extends GetMilestoneOutput, __Metadat
|
|
|
49
56
|
export declare class GetMilestoneCommand extends $Command<GetMilestoneCommandInput, GetMilestoneCommandOutput, WellArchitectedClientResolvedConfig> {
|
|
50
57
|
readonly input: GetMilestoneCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: GetMilestoneCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: WellArchitectedClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMilestoneCommandInput, GetMilestoneCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|