@aws-sdk/client-global-accelerator 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/GlobalAccelerator.d.ts +50 -0
- package/dist-types/GlobalAcceleratorClient.d.ts +24 -4
- package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/AddEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +16 -0
- package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +16 -0
- package/dist-types/commands/CreateAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +16 -0
- package/dist-types/commands/CreateEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteListenerCommand.d.ts +16 -0
- package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +16 -0
- package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/DescribeListenerCommand.d.ts +16 -0
- package/dist-types/commands/ListAcceleratorsCommand.d.ts +16 -0
- package/dist-types/commands/ListByoipCidrsCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +16 -0
- package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +16 -0
- package/dist-types/commands/ListEndpointGroupsCommand.d.ts +16 -0
- package/dist-types/commands/ListListenersCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +16 -0
- package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +16 -0
- package/dist-types/commands/RemoveEndpointsCommand.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/UpdateAcceleratorAttributesCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +16 -0
- package/dist-types/commands/UpdateListenerCommand.d.ts +16 -0
- package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +16 -0
- package/dist-types/models/GlobalAcceleratorServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +342 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListAcceleratorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListByoipCidrsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomRoutingAcceleratorsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomRoutingEndpointGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomRoutingListenersPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomRoutingPortMappingsByDestinationPaginator.d.ts +3 -0
- package/dist-types/pagination/ListCustomRoutingPortMappingsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListEndpointGroupsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListListenersPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListByoipCidrsRequest, ListByoipCidrsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListByoipCidrsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListByoipCidrsCommandInput extends ListByoipCidrsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListByoipCidrsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the IP address ranges that were specified in calls to <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/ProvisionByoipCidr.html">ProvisionByoipCidr</a>, including
|
|
18
23
|
* the current state and a history of state changes.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListByoipCidrsCommandInput - {@link ListByoipCidrsCommandInput}
|
|
35
|
+
* @returns {@link ListByoipCidrsCommandOutput}
|
|
29
36
|
* @see {@link ListByoipCidrsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListByoipCidrsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __M
|
|
|
47
54
|
export declare class ListByoipCidrsCommand extends $Command<ListByoipCidrsCommandInput, ListByoipCidrsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
48
55
|
readonly input: ListByoipCidrsCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: ListByoipCidrsCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListByoipCidrsCommandInput, ListByoipCidrsCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListCustomRoutingAcceleratorsRequest, ListCustomRoutingAcceleratorsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCustomRoutingAcceleratorsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCustomRoutingAcceleratorsCommandInput extends ListCustomRoutingAcceleratorsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCustomRoutingAcceleratorsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCustomRoutingAcceleratorsCommandOutput extends ListCustomRoutingAcceleratorsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the custom routing accelerators for an Amazon Web Services account. </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 ListCustomRoutingAcceleratorsCommandOutput extends ListCustomRo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCustomRoutingAcceleratorsCommandInput - {@link ListCustomRoutingAcceleratorsCommandInput}
|
|
34
|
+
* @returns {@link ListCustomRoutingAcceleratorsCommandOutput}
|
|
28
35
|
* @see {@link ListCustomRoutingAcceleratorsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCustomRoutingAcceleratorsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface ListCustomRoutingAcceleratorsCommandOutput extends ListCustomRo
|
|
|
43
50
|
export declare class ListCustomRoutingAcceleratorsCommand extends $Command<ListCustomRoutingAcceleratorsCommandInput, ListCustomRoutingAcceleratorsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
44
51
|
readonly input: ListCustomRoutingAcceleratorsCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: ListCustomRoutingAcceleratorsCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomRoutingAcceleratorsCommandInput, ListCustomRoutingAcceleratorsCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListCustomRoutingEndpointGroupsRequest, ListCustomRoutingEndpointGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCustomRoutingEndpointGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCustomRoutingEndpointGroupsCommandInput extends ListCustomRoutingEndpointGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCustomRoutingEndpointGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCustomRoutingEndpointGroupsCommandOutput extends ListCustomRoutingEndpointGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the endpoint groups that are associated with a listener for a custom routing accelerator. </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 ListCustomRoutingEndpointGroupsCommandOutput extends ListCustom
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCustomRoutingEndpointGroupsCommandInput - {@link ListCustomRoutingEndpointGroupsCommandInput}
|
|
34
|
+
* @returns {@link ListCustomRoutingEndpointGroupsCommandOutput}
|
|
28
35
|
* @see {@link ListCustomRoutingEndpointGroupsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCustomRoutingEndpointGroupsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListCustomRoutingEndpointGroupsCommandOutput extends ListCustom
|
|
|
46
53
|
export declare class ListCustomRoutingEndpointGroupsCommand extends $Command<ListCustomRoutingEndpointGroupsCommandInput, ListCustomRoutingEndpointGroupsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
47
54
|
readonly input: ListCustomRoutingEndpointGroupsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListCustomRoutingEndpointGroupsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomRoutingEndpointGroupsCommandInput, ListCustomRoutingEndpointGroupsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListCustomRoutingListenersRequest, ListCustomRoutingListenersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCustomRoutingListenersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCustomRoutingListenersCommandInput extends ListCustomRoutingListenersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCustomRoutingListenersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCustomRoutingListenersCommandOutput extends ListCustomRoutingListenersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the listeners for a custom routing accelerator. </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 ListCustomRoutingListenersCommandOutput extends ListCustomRouti
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListCustomRoutingListenersCommandInput - {@link ListCustomRoutingListenersCommandInput}
|
|
34
|
+
* @returns {@link ListCustomRoutingListenersCommandOutput}
|
|
28
35
|
* @see {@link ListCustomRoutingListenersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListCustomRoutingListenersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListCustomRoutingListenersCommandOutput extends ListCustomRouti
|
|
|
46
53
|
export declare class ListCustomRoutingListenersCommand extends $Command<ListCustomRoutingListenersCommandInput, ListCustomRoutingListenersCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
47
54
|
readonly input: ListCustomRoutingListenersCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListCustomRoutingListenersCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomRoutingListenersCommandInput, ListCustomRoutingListenersCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListCustomRoutingPortMappingsByDestinationRequest, ListCustomRoutingPortMappingsByDestinationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCustomRoutingPortMappingsByDestinationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCustomRoutingPortMappingsByDestinationCommandInput extends ListCustomRoutingPortMappingsByDestinationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCustomRoutingPortMappingsByDestinationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCustomRoutingPortMappingsByDestinationCommandOutput extends ListCustomRoutingPortMappingsByDestinationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the port mappings for a specific EC2 instance (destination) in a VPC subnet endpoint. The
|
|
18
23
|
* response is the mappings for one destination IP address. This is useful when your subnet endpoint has mappings that
|
|
19
24
|
* span multiple custom routing accelerators in your account, or for scenarios where you only want to
|
|
@@ -28,6 +33,8 @@ export interface ListCustomRoutingPortMappingsByDestinationCommandOutput extends
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param ListCustomRoutingPortMappingsByDestinationCommandInput - {@link ListCustomRoutingPortMappingsByDestinationCommandInput}
|
|
37
|
+
* @returns {@link ListCustomRoutingPortMappingsByDestinationCommandOutput}
|
|
31
38
|
* @see {@link ListCustomRoutingPortMappingsByDestinationCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link ListCustomRoutingPortMappingsByDestinationCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface ListCustomRoutingPortMappingsByDestinationCommandOutput extends
|
|
|
49
56
|
export declare class ListCustomRoutingPortMappingsByDestinationCommand extends $Command<ListCustomRoutingPortMappingsByDestinationCommandInput, ListCustomRoutingPortMappingsByDestinationCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
50
57
|
readonly input: ListCustomRoutingPortMappingsByDestinationCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: ListCustomRoutingPortMappingsByDestinationCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomRoutingPortMappingsByDestinationCommandInput, ListCustomRoutingPortMappingsByDestinationCommandOutput>;
|
|
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 { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListCustomRoutingPortMappingsRequest, ListCustomRoutingPortMappingsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListCustomRoutingPortMappingsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListCustomRoutingPortMappingsCommandInput extends ListCustomRoutingPortMappingsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListCustomRoutingPortMappingsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListCustomRoutingPortMappingsCommandOutput extends ListCustomRoutingPortMappingsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provides a complete mapping from the public accelerator IP address and port to destination EC2 instance
|
|
18
23
|
* IP addresses and ports in the virtual public cloud (VPC) subnet endpoint for a custom routing accelerator.
|
|
19
24
|
* For each subnet endpoint that you add, Global Accelerator creates a new static port mapping for the accelerator. The port
|
|
@@ -33,6 +38,8 @@ export interface ListCustomRoutingPortMappingsCommandOutput extends ListCustomRo
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param ListCustomRoutingPortMappingsCommandInput - {@link ListCustomRoutingPortMappingsCommandInput}
|
|
42
|
+
* @returns {@link ListCustomRoutingPortMappingsCommandOutput}
|
|
36
43
|
* @see {@link ListCustomRoutingPortMappingsCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link ListCustomRoutingPortMappingsCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -57,11 +64,20 @@ export interface ListCustomRoutingPortMappingsCommandOutput extends ListCustomRo
|
|
|
57
64
|
export declare class ListCustomRoutingPortMappingsCommand extends $Command<ListCustomRoutingPortMappingsCommandInput, ListCustomRoutingPortMappingsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
58
65
|
readonly input: ListCustomRoutingPortMappingsCommandInput;
|
|
59
66
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
60
70
|
constructor(input: ListCustomRoutingPortMappingsCommandInput);
|
|
61
71
|
/**
|
|
62
72
|
* @internal
|
|
63
73
|
*/
|
|
64
74
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListCustomRoutingPortMappingsCommandInput, ListCustomRoutingPortMappingsCommandOutput>;
|
|
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 { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListEndpointGroupsRequest, ListEndpointGroupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListEndpointGroupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListEndpointGroupsCommandInput extends ListEndpointGroupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListEndpointGroupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListEndpointGroupsCommandOutput extends ListEndpointGroupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the endpoint groups that are associated with a listener. </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 ListEndpointGroupsCommandOutput extends ListEndpointGroupsRespo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListEndpointGroupsCommandInput - {@link ListEndpointGroupsCommandInput}
|
|
34
|
+
* @returns {@link ListEndpointGroupsCommandOutput}
|
|
28
35
|
* @see {@link ListEndpointGroupsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListEndpointGroupsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListEndpointGroupsCommandOutput extends ListEndpointGroupsRespo
|
|
|
46
53
|
export declare class ListEndpointGroupsCommand extends $Command<ListEndpointGroupsCommandInput, ListEndpointGroupsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
47
54
|
readonly input: ListEndpointGroupsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListEndpointGroupsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEndpointGroupsCommandInput, ListEndpointGroupsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListListenersRequest, ListListenersResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListListenersCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListListenersCommandInput extends ListListenersRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListListenersCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListListenersCommandOutput extends ListListenersResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List the listeners for an accelerator. </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 ListListenersCommandOutput extends ListListenersResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListListenersCommandInput - {@link ListListenersCommandInput}
|
|
34
|
+
* @returns {@link ListListenersCommandOutput}
|
|
28
35
|
* @see {@link ListListenersCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListListenersCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met
|
|
|
46
53
|
export declare class ListListenersCommand extends $Command<ListListenersCommandInput, ListListenersCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
47
54
|
readonly input: ListListenersCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: ListListenersCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListListenersCommandInput, ListListenersCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListTagsForResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListTagsForResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>List all tags for an accelerator. </p>
|
|
18
23
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/global-accelerator/latest/dg/tagging-in-global-accelerator.html">Tagging
|
|
19
24
|
* in Global Accelerator</a> in the <i>Global Accelerator Developer Guide</i>. </p>
|
|
@@ -27,6 +32,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
36
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
30
37
|
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
45
52
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
46
53
|
readonly input: ListTagsForResourceCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: ListTagsForResourceCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { ProvisionByoipCidrRequest, ProvisionByoipCidrResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ProvisionByoipCidrCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ProvisionByoipCidrCommandInput extends ProvisionByoipCidrRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ProvisionByoipCidrCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Provisions an IP address range to use with your Amazon Web Services resources through bring your own IP
|
|
18
23
|
* addresses (BYOIP) and creates a corresponding address pool. After the address range is provisioned,
|
|
19
24
|
* it is ready to be advertised using <a href="https://docs.aws.amazon.com/global-accelerator/latest/api/AdvertiseByoipCidr.html">
|
|
@@ -30,6 +35,8 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrRespo
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param ProvisionByoipCidrCommandInput - {@link ProvisionByoipCidrCommandInput}
|
|
39
|
+
* @returns {@link ProvisionByoipCidrCommandOutput}
|
|
33
40
|
* @see {@link ProvisionByoipCidrCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link ProvisionByoipCidrCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrRespo
|
|
|
55
62
|
export declare class ProvisionByoipCidrCommand extends $Command<ProvisionByoipCidrCommandInput, ProvisionByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
56
63
|
readonly input: ProvisionByoipCidrCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: ProvisionByoipCidrCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ProvisionByoipCidrCommandInput, ProvisionByoipCidrCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { RemoveCustomRoutingEndpointsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemoveCustomRoutingEndpointsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemoveCustomRoutingEndpointsCommandInput extends RemoveCustomRoutingEndpointsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemoveCustomRoutingEndpointsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Remove endpoints from a custom routing accelerator.</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 RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBea
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RemoveCustomRoutingEndpointsCommandInput - {@link RemoveCustomRoutingEndpointsCommandInput}
|
|
34
|
+
* @returns {@link RemoveCustomRoutingEndpointsCommandOutput}
|
|
28
35
|
* @see {@link RemoveCustomRoutingEndpointsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RemoveCustomRoutingEndpointsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBea
|
|
|
52
59
|
export declare class RemoveCustomRoutingEndpointsCommand extends $Command<RemoveCustomRoutingEndpointsCommandInput, RemoveCustomRoutingEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
53
60
|
readonly input: RemoveCustomRoutingEndpointsCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: RemoveCustomRoutingEndpointsCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveCustomRoutingEndpointsCommandInput, RemoveCustomRoutingEndpointsCommandOutput>;
|
|
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 { GlobalAcceleratorClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlobalAcceleratorClient";
|
|
5
5
|
import { RemoveEndpointsRequest } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RemoveEndpointsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RemoveEndpointsCommandInput extends RemoveEndpointsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RemoveEndpointsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RemoveEndpointsCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Remove endpoints from an endpoint group. </p>
|
|
18
23
|
* <p>The <code>RemoveEndpoints</code> API operation is the recommended option for removing endpoints. The alternative is to remove
|
|
19
24
|
* endpoints by updating an endpoint group by using the
|
|
@@ -41,6 +46,8 @@ export interface RemoveEndpointsCommandOutput extends __MetadataBearer {
|
|
|
41
46
|
* const response = await client.send(command);
|
|
42
47
|
* ```
|
|
43
48
|
*
|
|
49
|
+
* @param RemoveEndpointsCommandInput - {@link RemoveEndpointsCommandInput}
|
|
50
|
+
* @returns {@link RemoveEndpointsCommandOutput}
|
|
44
51
|
* @see {@link RemoveEndpointsCommandInput} for command's `input` shape.
|
|
45
52
|
* @see {@link RemoveEndpointsCommandOutput} for command's `response` shape.
|
|
46
53
|
* @see {@link GlobalAcceleratorClientResolvedConfig | config} for GlobalAcceleratorClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface RemoveEndpointsCommandOutput extends __MetadataBearer {
|
|
|
65
72
|
export declare class RemoveEndpointsCommand extends $Command<RemoveEndpointsCommandInput, RemoveEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
66
73
|
readonly input: RemoveEndpointsCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: RemoveEndpointsCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlobalAcceleratorClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveEndpointsCommandInput, RemoveEndpointsCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|