@aws-sdk/client-global-accelerator 3.325.0 → 3.326.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/commands/AddCustomRoutingEndpointsCommand.d.ts +11 -0
- package/dist-types/commands/AddEndpointsCommand.d.ts +15 -0
- package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +15 -0
- package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +4 -0
- package/dist-types/commands/CreateAcceleratorCommand.d.ts +31 -0
- package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +24 -0
- package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +23 -0
- package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +14 -0
- package/dist-types/commands/CreateEndpointGroupCommand.d.ts +30 -0
- package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAcceleratorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +4 -0
- package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteListenerCommand.d.ts +4 -0
- package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +4 -0
- package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +15 -0
- package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeAcceleratorCommand.d.ts +31 -0
- package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +24 -0
- package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +23 -0
- package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +14 -0
- package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +30 -0
- package/dist-types/commands/DescribeListenerCommand.d.ts +16 -0
- package/dist-types/commands/ListAcceleratorsCommand.d.ts +34 -0
- package/dist-types/commands/ListByoipCidrsCommand.d.ts +18 -0
- package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +27 -0
- package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +26 -0
- package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +17 -0
- package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +26 -0
- package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +21 -0
- package/dist-types/commands/ListEndpointGroupsCommand.d.ts +33 -0
- package/dist-types/commands/ListListenersCommand.d.ts +19 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
- package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +15 -0
- package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/RemoveEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +10 -0
- package/dist-types/commands/UpdateAcceleratorCommand.d.ts +31 -0
- package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +10 -0
- package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +24 -0
- package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +14 -0
- package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +30 -0
- package/dist-types/commands/UpdateListenerCommand.d.ts +16 -0
- package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +15 -0
- package/package.json +3 -3
|
@@ -46,6 +46,15 @@ export interface AddCustomRoutingEndpointsCommandOutput extends AddCustomRouting
|
|
|
46
46
|
* };
|
|
47
47
|
* const command = new AddCustomRoutingEndpointsCommand(input);
|
|
48
48
|
* const response = await client.send(command);
|
|
49
|
+
* // { // AddCustomRoutingEndpointsResponse
|
|
50
|
+
* // EndpointDescriptions: [ // CustomRoutingEndpointDescriptions
|
|
51
|
+
* // { // CustomRoutingEndpointDescription
|
|
52
|
+
* // EndpointId: "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // EndpointGroupArn: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
49
58
|
* ```
|
|
50
59
|
*
|
|
51
60
|
* @param AddCustomRoutingEndpointsCommandInput - {@link AddCustomRoutingEndpointsCommandInput}
|
|
@@ -75,6 +84,8 @@ export interface AddCustomRoutingEndpointsCommandOutput extends AddCustomRouting
|
|
|
75
84
|
* @throws {@link LimitExceededException} (client fault)
|
|
76
85
|
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
77
86
|
*
|
|
87
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
78
89
|
*
|
|
79
90
|
*/
|
|
80
91
|
export declare class AddCustomRoutingEndpointsCommand extends $Command<AddCustomRoutingEndpointsCommandInput, AddCustomRoutingEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -53,6 +53,19 @@ export interface AddEndpointsCommandOutput extends AddEndpointsResponse, __Metad
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new AddEndpointsCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // AddEndpointsResponse
|
|
57
|
+
* // EndpointDescriptions: [ // EndpointDescriptions
|
|
58
|
+
* // { // EndpointDescription
|
|
59
|
+
* // EndpointId: "STRING_VALUE",
|
|
60
|
+
* // Weight: Number("int"),
|
|
61
|
+
* // HealthState: "INITIAL" || "HEALTHY" || "UNHEALTHY",
|
|
62
|
+
* // HealthReason: "STRING_VALUE",
|
|
63
|
+
* // ClientIPPreservationEnabled: true || false,
|
|
64
|
+
* // },
|
|
65
|
+
* // ],
|
|
66
|
+
* // EndpointGroupArn: "STRING_VALUE",
|
|
67
|
+
* // };
|
|
68
|
+
*
|
|
56
69
|
* ```
|
|
57
70
|
*
|
|
58
71
|
* @param AddEndpointsCommandInput - {@link AddEndpointsCommandInput}
|
|
@@ -79,6 +92,8 @@ export interface AddEndpointsCommandOutput extends AddEndpointsResponse, __Metad
|
|
|
79
92
|
* @throws {@link TransactionInProgressException} (client fault)
|
|
80
93
|
* <p>There's already a transaction in progress. Another transaction can't be processed.</p>
|
|
81
94
|
*
|
|
95
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
82
97
|
*
|
|
83
98
|
*/
|
|
84
99
|
export declare class AddEndpointsCommand extends $Command<AddEndpointsCommandInput, AddEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -37,6 +37,19 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrRespo
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new AdvertiseByoipCidrCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // AdvertiseByoipCidrResponse
|
|
41
|
+
* // ByoipCidr: { // ByoipCidr
|
|
42
|
+
* // Cidr: "STRING_VALUE",
|
|
43
|
+
* // State: "PENDING_PROVISIONING" || "READY" || "PENDING_ADVERTISING" || "ADVERTISING" || "PENDING_WITHDRAWING" || "PENDING_DEPROVISIONING" || "DEPROVISIONED" || "FAILED_PROVISION" || "FAILED_ADVERTISING" || "FAILED_WITHDRAW" || "FAILED_DEPROVISION",
|
|
44
|
+
* // Events: [ // ByoipCidrEvents
|
|
45
|
+
* // { // ByoipCidrEvent
|
|
46
|
+
* // Message: "STRING_VALUE",
|
|
47
|
+
* // Timestamp: new Date("TIMESTAMP"),
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
40
53
|
* ```
|
|
41
54
|
*
|
|
42
55
|
* @param AdvertiseByoipCidrCommandInput - {@link AdvertiseByoipCidrCommandInput}
|
|
@@ -61,6 +74,8 @@ export interface AdvertiseByoipCidrCommandOutput extends AdvertiseByoipCidrRespo
|
|
|
61
74
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
62
75
|
* <p>An argument that you specified is invalid.</p>
|
|
63
76
|
*
|
|
77
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
64
79
|
*
|
|
65
80
|
*/
|
|
66
81
|
export declare class AdvertiseByoipCidrCommand extends $Command<AdvertiseByoipCidrCommandInput, AdvertiseByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -44,6 +44,8 @@ export interface AllowCustomRoutingTrafficCommandOutput extends __MetadataBearer
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new AllowCustomRoutingTrafficCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
47
49
|
* ```
|
|
48
50
|
*
|
|
49
51
|
* @param AllowCustomRoutingTrafficCommandInput - {@link AllowCustomRoutingTrafficCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface AllowCustomRoutingTrafficCommandOutput extends __MetadataBearer
|
|
|
61
63
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
62
64
|
* <p>An argument that you specified is invalid.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class AllowCustomRoutingTrafficCommand extends $Command<AllowCustomRoutingTrafficCommandInput, AllowCustomRoutingTrafficCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -49,6 +49,35 @@ export interface CreateAcceleratorCommandOutput extends CreateAcceleratorRespons
|
|
|
49
49
|
* };
|
|
50
50
|
* const command = new CreateAcceleratorCommand(input);
|
|
51
51
|
* const response = await client.send(command);
|
|
52
|
+
* // { // CreateAcceleratorResponse
|
|
53
|
+
* // Accelerator: { // Accelerator
|
|
54
|
+
* // AcceleratorArn: "STRING_VALUE",
|
|
55
|
+
* // Name: "STRING_VALUE",
|
|
56
|
+
* // IpAddressType: "IPV4" || "DUAL_STACK",
|
|
57
|
+
* // Enabled: true || false,
|
|
58
|
+
* // IpSets: [ // IpSets
|
|
59
|
+
* // { // IpSet
|
|
60
|
+
* // IpFamily: "STRING_VALUE",
|
|
61
|
+
* // IpAddresses: [ // IpAddresses
|
|
62
|
+
* // "STRING_VALUE",
|
|
63
|
+
* // ],
|
|
64
|
+
* // IpAddressFamily: "IPv4" || "IPv6",
|
|
65
|
+
* // },
|
|
66
|
+
* // ],
|
|
67
|
+
* // DnsName: "STRING_VALUE",
|
|
68
|
+
* // Status: "DEPLOYED" || "IN_PROGRESS",
|
|
69
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
70
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
71
|
+
* // DualStackDnsName: "STRING_VALUE",
|
|
72
|
+
* // Events: [ // AcceleratorEvents
|
|
73
|
+
* // { // AcceleratorEvent
|
|
74
|
+
* // Message: "STRING_VALUE",
|
|
75
|
+
* // Timestamp: new Date("TIMESTAMP"),
|
|
76
|
+
* // },
|
|
77
|
+
* // ],
|
|
78
|
+
* // },
|
|
79
|
+
* // };
|
|
80
|
+
*
|
|
52
81
|
* ```
|
|
53
82
|
*
|
|
54
83
|
* @param CreateAcceleratorCommandInput - {@link CreateAcceleratorCommandInput}
|
|
@@ -66,6 +95,8 @@ export interface CreateAcceleratorCommandOutput extends CreateAcceleratorRespons
|
|
|
66
95
|
* @throws {@link LimitExceededException} (client fault)
|
|
67
96
|
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
68
97
|
*
|
|
98
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
69
100
|
*
|
|
70
101
|
*/
|
|
71
102
|
export declare class CreateAcceleratorCommand extends $Command<CreateAcceleratorCommandInput, CreateAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -53,6 +53,28 @@ export interface CreateCustomRoutingAcceleratorCommandOutput extends CreateCusto
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new CreateCustomRoutingAcceleratorCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // CreateCustomRoutingAcceleratorResponse
|
|
57
|
+
* // Accelerator: { // CustomRoutingAccelerator
|
|
58
|
+
* // AcceleratorArn: "STRING_VALUE",
|
|
59
|
+
* // Name: "STRING_VALUE",
|
|
60
|
+
* // IpAddressType: "IPV4" || "DUAL_STACK",
|
|
61
|
+
* // Enabled: true || false,
|
|
62
|
+
* // IpSets: [ // IpSets
|
|
63
|
+
* // { // IpSet
|
|
64
|
+
* // IpFamily: "STRING_VALUE",
|
|
65
|
+
* // IpAddresses: [ // IpAddresses
|
|
66
|
+
* // "STRING_VALUE",
|
|
67
|
+
* // ],
|
|
68
|
+
* // IpAddressFamily: "IPv4" || "IPv6",
|
|
69
|
+
* // },
|
|
70
|
+
* // ],
|
|
71
|
+
* // DnsName: "STRING_VALUE",
|
|
72
|
+
* // Status: "DEPLOYED" || "IN_PROGRESS",
|
|
73
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
74
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
75
|
+
* // },
|
|
76
|
+
* // };
|
|
77
|
+
*
|
|
56
78
|
* ```
|
|
57
79
|
*
|
|
58
80
|
* @param CreateCustomRoutingAcceleratorCommandInput - {@link CreateCustomRoutingAcceleratorCommandInput}
|
|
@@ -73,6 +95,8 @@ export interface CreateCustomRoutingAcceleratorCommandOutput extends CreateCusto
|
|
|
73
95
|
* @throws {@link LimitExceededException} (client fault)
|
|
74
96
|
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
75
97
|
*
|
|
98
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
99
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
76
100
|
*
|
|
77
101
|
*/
|
|
78
102
|
export declare class CreateCustomRoutingAcceleratorCommand extends $Command<CreateCustomRoutingAcceleratorCommandInput, CreateCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -44,6 +44,27 @@ export interface CreateCustomRoutingEndpointGroupCommandOutput extends CreateCus
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new CreateCustomRoutingEndpointGroupCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // { // CreateCustomRoutingEndpointGroupResponse
|
|
48
|
+
* // EndpointGroup: { // CustomRoutingEndpointGroup
|
|
49
|
+
* // EndpointGroupArn: "STRING_VALUE",
|
|
50
|
+
* // EndpointGroupRegion: "STRING_VALUE",
|
|
51
|
+
* // DestinationDescriptions: [ // CustomRoutingDestinationDescriptions
|
|
52
|
+
* // { // CustomRoutingDestinationDescription
|
|
53
|
+
* // FromPort: Number("int"),
|
|
54
|
+
* // ToPort: Number("int"),
|
|
55
|
+
* // Protocols: [ // Protocols
|
|
56
|
+
* // "TCP" || "UDP",
|
|
57
|
+
* // ],
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // EndpointDescriptions: [ // CustomRoutingEndpointDescriptions
|
|
61
|
+
* // { // CustomRoutingEndpointDescription
|
|
62
|
+
* // EndpointId: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
47
68
|
* ```
|
|
48
69
|
*
|
|
49
70
|
* @param CreateCustomRoutingEndpointGroupCommandInput - {@link CreateCustomRoutingEndpointGroupCommandInput}
|
|
@@ -76,6 +97,8 @@ export interface CreateCustomRoutingEndpointGroupCommandOutput extends CreateCus
|
|
|
76
97
|
* @throws {@link ListenerNotFoundException} (client fault)
|
|
77
98
|
* <p>The listener that you specified doesn't exist.</p>
|
|
78
99
|
*
|
|
100
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
79
102
|
*
|
|
80
103
|
*/
|
|
81
104
|
export declare class CreateCustomRoutingEndpointGroupCommand extends $Command<CreateCustomRoutingEndpointGroupCommandInput, CreateCustomRoutingEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -39,6 +39,18 @@ export interface CreateCustomRoutingListenerCommandOutput extends CreateCustomRo
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new CreateCustomRoutingListenerCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // CreateCustomRoutingListenerResponse
|
|
43
|
+
* // Listener: { // CustomRoutingListener
|
|
44
|
+
* // ListenerArn: "STRING_VALUE",
|
|
45
|
+
* // PortRanges: [ // PortRanges
|
|
46
|
+
* // { // PortRange
|
|
47
|
+
* // FromPort: Number("int"),
|
|
48
|
+
* // ToPort: Number("int"),
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
42
54
|
* ```
|
|
43
55
|
*
|
|
44
56
|
* @param CreateCustomRoutingListenerCommandInput - {@link CreateCustomRoutingListenerCommandInput}
|
|
@@ -62,6 +74,8 @@ export interface CreateCustomRoutingListenerCommandOutput extends CreateCustomRo
|
|
|
62
74
|
* @throws {@link LimitExceededException} (client fault)
|
|
63
75
|
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
64
76
|
*
|
|
77
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
65
79
|
*
|
|
66
80
|
*/
|
|
67
81
|
export declare class CreateCustomRoutingListenerCommand extends $Command<CreateCustomRoutingListenerCommandInput, CreateCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -53,6 +53,34 @@ export interface CreateEndpointGroupCommandOutput extends CreateEndpointGroupRes
|
|
|
53
53
|
* };
|
|
54
54
|
* const command = new CreateEndpointGroupCommand(input);
|
|
55
55
|
* const response = await client.send(command);
|
|
56
|
+
* // { // CreateEndpointGroupResponse
|
|
57
|
+
* // EndpointGroup: { // EndpointGroup
|
|
58
|
+
* // EndpointGroupArn: "STRING_VALUE",
|
|
59
|
+
* // EndpointGroupRegion: "STRING_VALUE",
|
|
60
|
+
* // EndpointDescriptions: [ // EndpointDescriptions
|
|
61
|
+
* // { // EndpointDescription
|
|
62
|
+
* // EndpointId: "STRING_VALUE",
|
|
63
|
+
* // Weight: Number("int"),
|
|
64
|
+
* // HealthState: "INITIAL" || "HEALTHY" || "UNHEALTHY",
|
|
65
|
+
* // HealthReason: "STRING_VALUE",
|
|
66
|
+
* // ClientIPPreservationEnabled: true || false,
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // TrafficDialPercentage: Number("float"),
|
|
70
|
+
* // HealthCheckPort: Number("int"),
|
|
71
|
+
* // HealthCheckProtocol: "TCP" || "HTTP" || "HTTPS",
|
|
72
|
+
* // HealthCheckPath: "STRING_VALUE",
|
|
73
|
+
* // HealthCheckIntervalSeconds: Number("int"),
|
|
74
|
+
* // ThresholdCount: Number("int"),
|
|
75
|
+
* // PortOverrides: [ // PortOverrides
|
|
76
|
+
* // { // PortOverride
|
|
77
|
+
* // ListenerPort: Number("int"),
|
|
78
|
+
* // EndpointPort: Number("int"),
|
|
79
|
+
* // },
|
|
80
|
+
* // ],
|
|
81
|
+
* // },
|
|
82
|
+
* // };
|
|
83
|
+
*
|
|
56
84
|
* ```
|
|
57
85
|
*
|
|
58
86
|
* @param CreateEndpointGroupCommandInput - {@link CreateEndpointGroupCommandInput}
|
|
@@ -82,6 +110,8 @@ export interface CreateEndpointGroupCommandOutput extends CreateEndpointGroupRes
|
|
|
82
110
|
* @throws {@link ListenerNotFoundException} (client fault)
|
|
83
111
|
* <p>The listener that you specified doesn't exist.</p>
|
|
84
112
|
*
|
|
113
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
114
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
85
115
|
*
|
|
86
116
|
*/
|
|
87
117
|
export declare class CreateEndpointGroupCommand extends $Command<CreateEndpointGroupCommandInput, CreateEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -41,6 +41,20 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new CreateListenerCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // CreateListenerResponse
|
|
45
|
+
* // Listener: { // Listener
|
|
46
|
+
* // ListenerArn: "STRING_VALUE",
|
|
47
|
+
* // PortRanges: [ // PortRanges
|
|
48
|
+
* // { // PortRange
|
|
49
|
+
* // FromPort: Number("int"),
|
|
50
|
+
* // ToPort: Number("int"),
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // Protocol: "TCP" || "UDP",
|
|
54
|
+
* // ClientAffinity: "NONE" || "SOURCE_IP",
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
44
58
|
* ```
|
|
45
59
|
*
|
|
46
60
|
* @param CreateListenerCommandInput - {@link CreateListenerCommandInput}
|
|
@@ -64,6 +78,8 @@ export interface CreateListenerCommandOutput extends CreateListenerResponse, __M
|
|
|
64
78
|
* @throws {@link LimitExceededException} (client fault)
|
|
65
79
|
* <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
|
|
66
80
|
*
|
|
81
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
67
83
|
*
|
|
68
84
|
*/
|
|
69
85
|
export declare class CreateListenerCommand extends $Command<CreateListenerCommandInput, CreateListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -44,6 +44,8 @@ export interface DeleteAcceleratorCommandOutput extends __MetadataBearer {
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new DeleteAcceleratorCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
47
49
|
* ```
|
|
48
50
|
*
|
|
49
51
|
* @param DeleteAcceleratorCommandInput - {@link DeleteAcceleratorCommandInput}
|
|
@@ -68,6 +70,8 @@ export interface DeleteAcceleratorCommandOutput extends __MetadataBearer {
|
|
|
68
70
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
69
71
|
* <p>An argument that you specified is invalid.</p>
|
|
70
72
|
*
|
|
73
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
71
75
|
*
|
|
72
76
|
*/
|
|
73
77
|
export declare class DeleteAcceleratorCommand extends $Command<DeleteAcceleratorCommandInput, DeleteAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -44,6 +44,8 @@ export interface DeleteCustomRoutingAcceleratorCommandOutput extends __MetadataB
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new DeleteCustomRoutingAcceleratorCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
47
49
|
* ```
|
|
48
50
|
*
|
|
49
51
|
* @param DeleteCustomRoutingAcceleratorCommandInput - {@link DeleteCustomRoutingAcceleratorCommandInput}
|
|
@@ -68,6 +70,8 @@ export interface DeleteCustomRoutingAcceleratorCommandOutput extends __MetadataB
|
|
|
68
70
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
69
71
|
* <p>An argument that you specified is invalid.</p>
|
|
70
72
|
*
|
|
73
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
71
75
|
*
|
|
72
76
|
*/
|
|
73
77
|
export declare class DeleteCustomRoutingAcceleratorCommand extends $Command<DeleteCustomRoutingAcceleratorCommandInput, DeleteCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteCustomRoutingEndpointGroupCommandOutput extends __Metadat
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCustomRoutingEndpointGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteCustomRoutingEndpointGroupCommandInput - {@link DeleteCustomRoutingEndpointGroupCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface DeleteCustomRoutingEndpointGroupCommandOutput extends __Metadat
|
|
|
48
50
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
49
51
|
* <p>An argument that you specified is invalid.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class DeleteCustomRoutingEndpointGroupCommand extends $Command<DeleteCustomRoutingEndpointGroupCommandInput, DeleteCustomRoutingEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteCustomRoutingListenerCommandOutput extends __MetadataBear
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteCustomRoutingListenerCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteCustomRoutingListenerCommandInput - {@link DeleteCustomRoutingListenerCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeleteCustomRoutingListenerCommandOutput extends __MetadataBear
|
|
|
52
54
|
* @throws {@link ListenerNotFoundException} (client fault)
|
|
53
55
|
* <p>The listener that you specified doesn't exist.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeleteCustomRoutingListenerCommand extends $Command<DeleteCustomRoutingListenerCommandInput, DeleteCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteEndpointGroupCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteEndpointGroupCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteEndpointGroupCommandInput - {@link DeleteEndpointGroupCommandInput}
|
|
@@ -48,6 +50,8 @@ export interface DeleteEndpointGroupCommandOutput extends __MetadataBearer {
|
|
|
48
50
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
49
51
|
* <p>An argument that you specified is invalid.</p>
|
|
50
52
|
*
|
|
53
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
54
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
51
55
|
*
|
|
52
56
|
*/
|
|
53
57
|
export declare class DeleteEndpointGroupCommand extends $Command<DeleteEndpointGroupCommandInput, DeleteEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -31,6 +31,8 @@ export interface DeleteListenerCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DeleteListenerCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // {};
|
|
35
|
+
*
|
|
34
36
|
* ```
|
|
35
37
|
*
|
|
36
38
|
* @param DeleteListenerCommandInput - {@link DeleteListenerCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeleteListenerCommandOutput extends __MetadataBearer {
|
|
|
52
54
|
* @throws {@link ListenerNotFoundException} (client fault)
|
|
53
55
|
* <p>The listener that you specified doesn't exist.</p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeleteListenerCommand extends $Command<DeleteListenerCommandInput, DeleteListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -44,6 +44,8 @@ export interface DenyCustomRoutingTrafficCommandOutput extends __MetadataBearer
|
|
|
44
44
|
* };
|
|
45
45
|
* const command = new DenyCustomRoutingTrafficCommand(input);
|
|
46
46
|
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
47
49
|
* ```
|
|
48
50
|
*
|
|
49
51
|
* @param DenyCustomRoutingTrafficCommandInput - {@link DenyCustomRoutingTrafficCommandInput}
|
|
@@ -61,6 +63,8 @@ export interface DenyCustomRoutingTrafficCommandOutput extends __MetadataBearer
|
|
|
61
63
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
62
64
|
* <p>An argument that you specified is invalid.</p>
|
|
63
65
|
*
|
|
66
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
64
68
|
*
|
|
65
69
|
*/
|
|
66
70
|
export declare class DenyCustomRoutingTrafficCommand extends $Command<DenyCustomRoutingTrafficCommandInput, DenyCustomRoutingTrafficCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -37,6 +37,19 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DeprovisionByoipCidrCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DeprovisionByoipCidrResponse
|
|
41
|
+
* // ByoipCidr: { // ByoipCidr
|
|
42
|
+
* // Cidr: "STRING_VALUE",
|
|
43
|
+
* // State: "PENDING_PROVISIONING" || "READY" || "PENDING_ADVERTISING" || "ADVERTISING" || "PENDING_WITHDRAWING" || "PENDING_DEPROVISIONING" || "DEPROVISIONED" || "FAILED_PROVISION" || "FAILED_ADVERTISING" || "FAILED_WITHDRAW" || "FAILED_DEPROVISION",
|
|
44
|
+
* // Events: [ // ByoipCidrEvents
|
|
45
|
+
* // { // ByoipCidrEvent
|
|
46
|
+
* // Message: "STRING_VALUE",
|
|
47
|
+
* // Timestamp: new Date("TIMESTAMP"),
|
|
48
|
+
* // },
|
|
49
|
+
* // ],
|
|
50
|
+
* // },
|
|
51
|
+
* // };
|
|
52
|
+
*
|
|
40
53
|
* ```
|
|
41
54
|
*
|
|
42
55
|
* @param DeprovisionByoipCidrCommandInput - {@link DeprovisionByoipCidrCommandInput}
|
|
@@ -61,6 +74,8 @@ export interface DeprovisionByoipCidrCommandOutput extends DeprovisionByoipCidrR
|
|
|
61
74
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
62
75
|
* <p>An argument that you specified is invalid.</p>
|
|
63
76
|
*
|
|
77
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
64
79
|
*
|
|
65
80
|
*/
|
|
66
81
|
export declare class DeprovisionByoipCidrCommand extends $Command<DeprovisionByoipCidrCommandInput, DeprovisionByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -32,6 +32,14 @@ export interface DescribeAcceleratorAttributesCommandOutput extends DescribeAcce
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeAcceleratorAttributesCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeAcceleratorAttributesResponse
|
|
36
|
+
* // AcceleratorAttributes: { // AcceleratorAttributes
|
|
37
|
+
* // FlowLogsEnabled: true || false,
|
|
38
|
+
* // FlowLogsS3Bucket: "STRING_VALUE",
|
|
39
|
+
* // FlowLogsS3Prefix: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // };
|
|
42
|
+
*
|
|
35
43
|
* ```
|
|
36
44
|
*
|
|
37
45
|
* @param DescribeAcceleratorAttributesCommandInput - {@link DescribeAcceleratorAttributesCommandInput}
|
|
@@ -49,6 +57,8 @@ export interface DescribeAcceleratorAttributesCommandOutput extends DescribeAcce
|
|
|
49
57
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
50
58
|
* <p>An argument that you specified is invalid.</p>
|
|
51
59
|
*
|
|
60
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
52
62
|
*
|
|
53
63
|
*/
|
|
54
64
|
export declare class DescribeAcceleratorAttributesCommand extends $Command<DescribeAcceleratorAttributesCommandInput, DescribeAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -31,6 +31,35 @@ export interface DescribeAcceleratorCommandOutput extends DescribeAcceleratorRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeAcceleratorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeAcceleratorResponse
|
|
35
|
+
* // Accelerator: { // Accelerator
|
|
36
|
+
* // AcceleratorArn: "STRING_VALUE",
|
|
37
|
+
* // Name: "STRING_VALUE",
|
|
38
|
+
* // IpAddressType: "IPV4" || "DUAL_STACK",
|
|
39
|
+
* // Enabled: true || false,
|
|
40
|
+
* // IpSets: [ // IpSets
|
|
41
|
+
* // { // IpSet
|
|
42
|
+
* // IpFamily: "STRING_VALUE",
|
|
43
|
+
* // IpAddresses: [ // IpAddresses
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // IpAddressFamily: "IPv4" || "IPv6",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // DnsName: "STRING_VALUE",
|
|
50
|
+
* // Status: "DEPLOYED" || "IN_PROGRESS",
|
|
51
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // DualStackDnsName: "STRING_VALUE",
|
|
54
|
+
* // Events: [ // AcceleratorEvents
|
|
55
|
+
* // { // AcceleratorEvent
|
|
56
|
+
* // Message: "STRING_VALUE",
|
|
57
|
+
* // Timestamp: new Date("TIMESTAMP"),
|
|
58
|
+
* // },
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
34
63
|
* ```
|
|
35
64
|
*
|
|
36
65
|
* @param DescribeAcceleratorCommandInput - {@link DescribeAcceleratorCommandInput}
|
|
@@ -48,6 +77,8 @@ export interface DescribeAcceleratorCommandOutput extends DescribeAcceleratorRes
|
|
|
48
77
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
49
78
|
* <p>An argument that you specified is invalid.</p>
|
|
50
79
|
*
|
|
80
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
51
82
|
*
|
|
52
83
|
*/
|
|
53
84
|
export declare class DescribeAcceleratorCommand extends $Command<DescribeAcceleratorCommandInput, DescribeAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -31,6 +31,14 @@ export interface DescribeCustomRoutingAcceleratorAttributesCommandOutput extends
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCustomRoutingAcceleratorAttributesCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeCustomRoutingAcceleratorAttributesResponse
|
|
35
|
+
* // AcceleratorAttributes: { // CustomRoutingAcceleratorAttributes
|
|
36
|
+
* // FlowLogsEnabled: true || false,
|
|
37
|
+
* // FlowLogsS3Bucket: "STRING_VALUE",
|
|
38
|
+
* // FlowLogsS3Prefix: "STRING_VALUE",
|
|
39
|
+
* // },
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
34
42
|
* ```
|
|
35
43
|
*
|
|
36
44
|
* @param DescribeCustomRoutingAcceleratorAttributesCommandInput - {@link DescribeCustomRoutingAcceleratorAttributesCommandInput}
|
|
@@ -48,6 +56,8 @@ export interface DescribeCustomRoutingAcceleratorAttributesCommandOutput extends
|
|
|
48
56
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
49
57
|
* <p>An argument that you specified is invalid.</p>
|
|
50
58
|
*
|
|
59
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
51
61
|
*
|
|
52
62
|
*/
|
|
53
63
|
export declare class DescribeCustomRoutingAcceleratorAttributesCommand extends $Command<DescribeCustomRoutingAcceleratorAttributesCommandInput, DescribeCustomRoutingAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|
|
@@ -31,6 +31,28 @@ export interface DescribeCustomRoutingAcceleratorCommandOutput extends DescribeC
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeCustomRoutingAcceleratorCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeCustomRoutingAcceleratorResponse
|
|
35
|
+
* // Accelerator: { // CustomRoutingAccelerator
|
|
36
|
+
* // AcceleratorArn: "STRING_VALUE",
|
|
37
|
+
* // Name: "STRING_VALUE",
|
|
38
|
+
* // IpAddressType: "IPV4" || "DUAL_STACK",
|
|
39
|
+
* // Enabled: true || false,
|
|
40
|
+
* // IpSets: [ // IpSets
|
|
41
|
+
* // { // IpSet
|
|
42
|
+
* // IpFamily: "STRING_VALUE",
|
|
43
|
+
* // IpAddresses: [ // IpAddresses
|
|
44
|
+
* // "STRING_VALUE",
|
|
45
|
+
* // ],
|
|
46
|
+
* // IpAddressFamily: "IPv4" || "IPv6",
|
|
47
|
+
* // },
|
|
48
|
+
* // ],
|
|
49
|
+
* // DnsName: "STRING_VALUE",
|
|
50
|
+
* // Status: "DEPLOYED" || "IN_PROGRESS",
|
|
51
|
+
* // CreatedTime: new Date("TIMESTAMP"),
|
|
52
|
+
* // LastModifiedTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
34
56
|
* ```
|
|
35
57
|
*
|
|
36
58
|
* @param DescribeCustomRoutingAcceleratorCommandInput - {@link DescribeCustomRoutingAcceleratorCommandInput}
|
|
@@ -48,6 +70,8 @@ export interface DescribeCustomRoutingAcceleratorCommandOutput extends DescribeC
|
|
|
48
70
|
* @throws {@link InvalidArgumentException} (client fault)
|
|
49
71
|
* <p>An argument that you specified is invalid.</p>
|
|
50
72
|
*
|
|
73
|
+
* @throws {@link GlobalAcceleratorServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
|
|
51
75
|
*
|
|
52
76
|
*/
|
|
53
77
|
export declare class DescribeCustomRoutingAcceleratorCommand extends $Command<DescribeCustomRoutingAcceleratorCommandInput, DescribeCustomRoutingAcceleratorCommandOutput, GlobalAcceleratorClientResolvedConfig> {
|