@aws-sdk/client-global-accelerator 3.321.1 → 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.
Files changed (50) hide show
  1. package/dist-types/commands/AddCustomRoutingEndpointsCommand.d.ts +11 -0
  2. package/dist-types/commands/AddEndpointsCommand.d.ts +15 -0
  3. package/dist-types/commands/AdvertiseByoipCidrCommand.d.ts +15 -0
  4. package/dist-types/commands/AllowCustomRoutingTrafficCommand.d.ts +4 -0
  5. package/dist-types/commands/CreateAcceleratorCommand.d.ts +31 -0
  6. package/dist-types/commands/CreateCustomRoutingAcceleratorCommand.d.ts +24 -0
  7. package/dist-types/commands/CreateCustomRoutingEndpointGroupCommand.d.ts +23 -0
  8. package/dist-types/commands/CreateCustomRoutingListenerCommand.d.ts +14 -0
  9. package/dist-types/commands/CreateEndpointGroupCommand.d.ts +30 -0
  10. package/dist-types/commands/CreateListenerCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteAcceleratorCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteCustomRoutingAcceleratorCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteCustomRoutingEndpointGroupCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteCustomRoutingListenerCommand.d.ts +4 -0
  15. package/dist-types/commands/DeleteEndpointGroupCommand.d.ts +4 -0
  16. package/dist-types/commands/DeleteListenerCommand.d.ts +4 -0
  17. package/dist-types/commands/DenyCustomRoutingTrafficCommand.d.ts +4 -0
  18. package/dist-types/commands/DeprovisionByoipCidrCommand.d.ts +15 -0
  19. package/dist-types/commands/DescribeAcceleratorAttributesCommand.d.ts +10 -0
  20. package/dist-types/commands/DescribeAcceleratorCommand.d.ts +31 -0
  21. package/dist-types/commands/DescribeCustomRoutingAcceleratorAttributesCommand.d.ts +10 -0
  22. package/dist-types/commands/DescribeCustomRoutingAcceleratorCommand.d.ts +24 -0
  23. package/dist-types/commands/DescribeCustomRoutingEndpointGroupCommand.d.ts +23 -0
  24. package/dist-types/commands/DescribeCustomRoutingListenerCommand.d.ts +14 -0
  25. package/dist-types/commands/DescribeEndpointGroupCommand.d.ts +30 -0
  26. package/dist-types/commands/DescribeListenerCommand.d.ts +16 -0
  27. package/dist-types/commands/ListAcceleratorsCommand.d.ts +34 -0
  28. package/dist-types/commands/ListByoipCidrsCommand.d.ts +18 -0
  29. package/dist-types/commands/ListCustomRoutingAcceleratorsCommand.d.ts +27 -0
  30. package/dist-types/commands/ListCustomRoutingEndpointGroupsCommand.d.ts +26 -0
  31. package/dist-types/commands/ListCustomRoutingListenersCommand.d.ts +17 -0
  32. package/dist-types/commands/ListCustomRoutingPortMappingsByDestinationCommand.d.ts +26 -0
  33. package/dist-types/commands/ListCustomRoutingPortMappingsCommand.d.ts +21 -0
  34. package/dist-types/commands/ListEndpointGroupsCommand.d.ts +33 -0
  35. package/dist-types/commands/ListListenersCommand.d.ts +19 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  37. package/dist-types/commands/ProvisionByoipCidrCommand.d.ts +15 -0
  38. package/dist-types/commands/RemoveCustomRoutingEndpointsCommand.d.ts +4 -0
  39. package/dist-types/commands/RemoveEndpointsCommand.d.ts +4 -0
  40. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  41. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  42. package/dist-types/commands/UpdateAcceleratorAttributesCommand.d.ts +10 -0
  43. package/dist-types/commands/UpdateAcceleratorCommand.d.ts +31 -0
  44. package/dist-types/commands/UpdateCustomRoutingAcceleratorAttributesCommand.d.ts +10 -0
  45. package/dist-types/commands/UpdateCustomRoutingAcceleratorCommand.d.ts +24 -0
  46. package/dist-types/commands/UpdateCustomRoutingListenerCommand.d.ts +14 -0
  47. package/dist-types/commands/UpdateEndpointGroupCommand.d.ts +30 -0
  48. package/dist-types/commands/UpdateListenerCommand.d.ts +16 -0
  49. package/dist-types/commands/WithdrawByoipCidrCommand.d.ts +15 -0
  50. package/package.json +16 -16
@@ -31,6 +31,27 @@ export interface DescribeCustomRoutingEndpointGroupCommandOutput extends Describ
31
31
  * };
32
32
  * const command = new DescribeCustomRoutingEndpointGroupCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeCustomRoutingEndpointGroupResponse
35
+ * // EndpointGroup: { // CustomRoutingEndpointGroup
36
+ * // EndpointGroupArn: "STRING_VALUE",
37
+ * // EndpointGroupRegion: "STRING_VALUE",
38
+ * // DestinationDescriptions: [ // CustomRoutingDestinationDescriptions
39
+ * // { // CustomRoutingDestinationDescription
40
+ * // FromPort: Number("int"),
41
+ * // ToPort: Number("int"),
42
+ * // Protocols: [ // Protocols
43
+ * // "TCP" || "UDP",
44
+ * // ],
45
+ * // },
46
+ * // ],
47
+ * // EndpointDescriptions: [ // CustomRoutingEndpointDescriptions
48
+ * // { // CustomRoutingEndpointDescription
49
+ * // EndpointId: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // },
53
+ * // };
54
+ *
34
55
  * ```
35
56
  *
36
57
  * @param DescribeCustomRoutingEndpointGroupCommandInput - {@link DescribeCustomRoutingEndpointGroupCommandInput}
@@ -48,6 +69,8 @@ export interface DescribeCustomRoutingEndpointGroupCommandOutput extends Describ
48
69
  * @throws {@link InvalidArgumentException} (client fault)
49
70
  * <p>An argument that you specified is invalid.</p>
50
71
  *
72
+ * @throws {@link GlobalAcceleratorServiceException}
73
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
51
74
  *
52
75
  */
53
76
  export declare class DescribeCustomRoutingEndpointGroupCommand extends $Command<DescribeCustomRoutingEndpointGroupCommandInput, DescribeCustomRoutingEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -31,6 +31,18 @@ export interface DescribeCustomRoutingListenerCommandOutput extends DescribeCust
31
31
  * };
32
32
  * const command = new DescribeCustomRoutingListenerCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeCustomRoutingListenerResponse
35
+ * // Listener: { // CustomRoutingListener
36
+ * // ListenerArn: "STRING_VALUE",
37
+ * // PortRanges: [ // PortRanges
38
+ * // { // PortRange
39
+ * // FromPort: Number("int"),
40
+ * // ToPort: Number("int"),
41
+ * // },
42
+ * // ],
43
+ * // },
44
+ * // };
45
+ *
34
46
  * ```
35
47
  *
36
48
  * @param DescribeCustomRoutingListenerCommandInput - {@link DescribeCustomRoutingListenerCommandInput}
@@ -48,6 +60,8 @@ export interface DescribeCustomRoutingListenerCommandOutput extends DescribeCust
48
60
  * @throws {@link ListenerNotFoundException} (client fault)
49
61
  * <p>The listener that you specified doesn't exist.</p>
50
62
  *
63
+ * @throws {@link GlobalAcceleratorServiceException}
64
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
51
65
  *
52
66
  */
53
67
  export declare class DescribeCustomRoutingListenerCommand extends $Command<DescribeCustomRoutingListenerCommandInput, DescribeCustomRoutingListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -31,6 +31,34 @@ export interface DescribeEndpointGroupCommandOutput extends DescribeEndpointGrou
31
31
  * };
32
32
  * const command = new DescribeEndpointGroupCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeEndpointGroupResponse
35
+ * // EndpointGroup: { // EndpointGroup
36
+ * // EndpointGroupArn: "STRING_VALUE",
37
+ * // EndpointGroupRegion: "STRING_VALUE",
38
+ * // EndpointDescriptions: [ // EndpointDescriptions
39
+ * // { // EndpointDescription
40
+ * // EndpointId: "STRING_VALUE",
41
+ * // Weight: Number("int"),
42
+ * // HealthState: "INITIAL" || "HEALTHY" || "UNHEALTHY",
43
+ * // HealthReason: "STRING_VALUE",
44
+ * // ClientIPPreservationEnabled: true || false,
45
+ * // },
46
+ * // ],
47
+ * // TrafficDialPercentage: Number("float"),
48
+ * // HealthCheckPort: Number("int"),
49
+ * // HealthCheckProtocol: "TCP" || "HTTP" || "HTTPS",
50
+ * // HealthCheckPath: "STRING_VALUE",
51
+ * // HealthCheckIntervalSeconds: Number("int"),
52
+ * // ThresholdCount: Number("int"),
53
+ * // PortOverrides: [ // PortOverrides
54
+ * // { // PortOverride
55
+ * // ListenerPort: Number("int"),
56
+ * // EndpointPort: Number("int"),
57
+ * // },
58
+ * // ],
59
+ * // },
60
+ * // };
61
+ *
34
62
  * ```
35
63
  *
36
64
  * @param DescribeEndpointGroupCommandInput - {@link DescribeEndpointGroupCommandInput}
@@ -48,6 +76,8 @@ export interface DescribeEndpointGroupCommandOutput extends DescribeEndpointGrou
48
76
  * @throws {@link InvalidArgumentException} (client fault)
49
77
  * <p>An argument that you specified is invalid.</p>
50
78
  *
79
+ * @throws {@link GlobalAcceleratorServiceException}
80
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
51
81
  *
52
82
  */
53
83
  export declare class DescribeEndpointGroupCommand extends $Command<DescribeEndpointGroupCommandInput, DescribeEndpointGroupCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -31,6 +31,20 @@ export interface DescribeListenerCommandOutput extends DescribeListenerResponse,
31
31
  * };
32
32
  * const command = new DescribeListenerCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeListenerResponse
35
+ * // Listener: { // Listener
36
+ * // ListenerArn: "STRING_VALUE",
37
+ * // PortRanges: [ // PortRanges
38
+ * // { // PortRange
39
+ * // FromPort: Number("int"),
40
+ * // ToPort: Number("int"),
41
+ * // },
42
+ * // ],
43
+ * // Protocol: "TCP" || "UDP",
44
+ * // ClientAffinity: "NONE" || "SOURCE_IP",
45
+ * // },
46
+ * // };
47
+ *
34
48
  * ```
35
49
  *
36
50
  * @param DescribeListenerCommandInput - {@link DescribeListenerCommandInput}
@@ -48,6 +62,8 @@ export interface DescribeListenerCommandOutput extends DescribeListenerResponse,
48
62
  * @throws {@link ListenerNotFoundException} (client fault)
49
63
  * <p>The listener that you specified doesn't exist.</p>
50
64
  *
65
+ * @throws {@link GlobalAcceleratorServiceException}
66
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
51
67
  *
52
68
  */
53
69
  export declare class DescribeListenerCommand extends $Command<DescribeListenerCommandInput, DescribeListenerCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -32,6 +32,38 @@ export interface ListAcceleratorsCommandOutput extends ListAcceleratorsResponse,
32
32
  * };
33
33
  * const command = new ListAcceleratorsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListAcceleratorsResponse
36
+ * // Accelerators: [ // Accelerators
37
+ * // { // Accelerator
38
+ * // AcceleratorArn: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // IpAddressType: "IPV4" || "DUAL_STACK",
41
+ * // Enabled: true || false,
42
+ * // IpSets: [ // IpSets
43
+ * // { // IpSet
44
+ * // IpFamily: "STRING_VALUE",
45
+ * // IpAddresses: [ // IpAddresses
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // IpAddressFamily: "IPv4" || "IPv6",
49
+ * // },
50
+ * // ],
51
+ * // DnsName: "STRING_VALUE",
52
+ * // Status: "DEPLOYED" || "IN_PROGRESS",
53
+ * // CreatedTime: new Date("TIMESTAMP"),
54
+ * // LastModifiedTime: new Date("TIMESTAMP"),
55
+ * // DualStackDnsName: "STRING_VALUE",
56
+ * // Events: [ // AcceleratorEvents
57
+ * // { // AcceleratorEvent
58
+ * // Message: "STRING_VALUE",
59
+ * // Timestamp: new Date("TIMESTAMP"),
60
+ * // },
61
+ * // ],
62
+ * // },
63
+ * // ],
64
+ * // NextToken: "STRING_VALUE",
65
+ * // };
66
+ *
35
67
  * ```
36
68
  *
37
69
  * @param ListAcceleratorsCommandInput - {@link ListAcceleratorsCommandInput}
@@ -49,6 +81,8 @@ export interface ListAcceleratorsCommandOutput extends ListAcceleratorsResponse,
49
81
  * @throws {@link InvalidNextTokenException} (client fault)
50
82
  * <p>There isn't another item to return.</p>
51
83
  *
84
+ * @throws {@link GlobalAcceleratorServiceException}
85
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
52
86
  *
53
87
  */
54
88
  export declare class ListAcceleratorsCommand extends $Command<ListAcceleratorsCommandInput, ListAcceleratorsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -33,6 +33,22 @@ export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __M
33
33
  * };
34
34
  * const command = new ListByoipCidrsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListByoipCidrsResponse
37
+ * // ByoipCidrs: [ // ByoipCidrs
38
+ * // { // ByoipCidr
39
+ * // Cidr: "STRING_VALUE",
40
+ * // State: "PENDING_PROVISIONING" || "READY" || "PENDING_ADVERTISING" || "ADVERTISING" || "PENDING_WITHDRAWING" || "PENDING_DEPROVISIONING" || "DEPROVISIONED" || "FAILED_PROVISION" || "FAILED_ADVERTISING" || "FAILED_WITHDRAW" || "FAILED_DEPROVISION",
41
+ * // Events: [ // ByoipCidrEvents
42
+ * // { // ByoipCidrEvent
43
+ * // Message: "STRING_VALUE",
44
+ * // Timestamp: new Date("TIMESTAMP"),
45
+ * // },
46
+ * // ],
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
36
52
  * ```
37
53
  *
38
54
  * @param ListByoipCidrsCommandInput - {@link ListByoipCidrsCommandInput}
@@ -53,6 +69,8 @@ export interface ListByoipCidrsCommandOutput extends ListByoipCidrsResponse, __M
53
69
  * @throws {@link InvalidNextTokenException} (client fault)
54
70
  * <p>There isn't another item to return.</p>
55
71
  *
72
+ * @throws {@link GlobalAcceleratorServiceException}
73
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
56
74
  *
57
75
  */
58
76
  export declare class ListByoipCidrsCommand extends $Command<ListByoipCidrsCommandInput, ListByoipCidrsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -32,6 +32,31 @@ export interface ListCustomRoutingAcceleratorsCommandOutput extends ListCustomRo
32
32
  * };
33
33
  * const command = new ListCustomRoutingAcceleratorsCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListCustomRoutingAcceleratorsResponse
36
+ * // Accelerators: [ // CustomRoutingAccelerators
37
+ * // { // CustomRoutingAccelerator
38
+ * // AcceleratorArn: "STRING_VALUE",
39
+ * // Name: "STRING_VALUE",
40
+ * // IpAddressType: "IPV4" || "DUAL_STACK",
41
+ * // Enabled: true || false,
42
+ * // IpSets: [ // IpSets
43
+ * // { // IpSet
44
+ * // IpFamily: "STRING_VALUE",
45
+ * // IpAddresses: [ // IpAddresses
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // IpAddressFamily: "IPv4" || "IPv6",
49
+ * // },
50
+ * // ],
51
+ * // DnsName: "STRING_VALUE",
52
+ * // Status: "DEPLOYED" || "IN_PROGRESS",
53
+ * // CreatedTime: new Date("TIMESTAMP"),
54
+ * // LastModifiedTime: new Date("TIMESTAMP"),
55
+ * // },
56
+ * // ],
57
+ * // NextToken: "STRING_VALUE",
58
+ * // };
59
+ *
35
60
  * ```
36
61
  *
37
62
  * @param ListCustomRoutingAcceleratorsCommandInput - {@link ListCustomRoutingAcceleratorsCommandInput}
@@ -49,6 +74,8 @@ export interface ListCustomRoutingAcceleratorsCommandOutput extends ListCustomRo
49
74
  * @throws {@link InvalidNextTokenException} (client fault)
50
75
  * <p>There isn't another item to return.</p>
51
76
  *
77
+ * @throws {@link GlobalAcceleratorServiceException}
78
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
52
79
  *
53
80
  */
54
81
  export declare class ListCustomRoutingAcceleratorsCommand extends $Command<ListCustomRoutingAcceleratorsCommandInput, ListCustomRoutingAcceleratorsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -33,6 +33,30 @@ export interface ListCustomRoutingEndpointGroupsCommandOutput extends ListCustom
33
33
  * };
34
34
  * const command = new ListCustomRoutingEndpointGroupsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListCustomRoutingEndpointGroupsResponse
37
+ * // EndpointGroups: [ // CustomRoutingEndpointGroups
38
+ * // { // CustomRoutingEndpointGroup
39
+ * // EndpointGroupArn: "STRING_VALUE",
40
+ * // EndpointGroupRegion: "STRING_VALUE",
41
+ * // DestinationDescriptions: [ // CustomRoutingDestinationDescriptions
42
+ * // { // CustomRoutingDestinationDescription
43
+ * // FromPort: Number("int"),
44
+ * // ToPort: Number("int"),
45
+ * // Protocols: [ // Protocols
46
+ * // "TCP" || "UDP",
47
+ * // ],
48
+ * // },
49
+ * // ],
50
+ * // EndpointDescriptions: [ // CustomRoutingEndpointDescriptions
51
+ * // { // CustomRoutingEndpointDescription
52
+ * // EndpointId: "STRING_VALUE",
53
+ * // },
54
+ * // ],
55
+ * // },
56
+ * // ],
57
+ * // NextToken: "STRING_VALUE",
58
+ * // };
59
+ *
36
60
  * ```
37
61
  *
38
62
  * @param ListCustomRoutingEndpointGroupsCommandInput - {@link ListCustomRoutingEndpointGroupsCommandInput}
@@ -53,6 +77,8 @@ export interface ListCustomRoutingEndpointGroupsCommandOutput extends ListCustom
53
77
  * @throws {@link ListenerNotFoundException} (client fault)
54
78
  * <p>The listener that you specified doesn't exist.</p>
55
79
  *
80
+ * @throws {@link GlobalAcceleratorServiceException}
81
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
56
82
  *
57
83
  */
58
84
  export declare class ListCustomRoutingEndpointGroupsCommand extends $Command<ListCustomRoutingEndpointGroupsCommandInput, ListCustomRoutingEndpointGroupsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -33,6 +33,21 @@ export interface ListCustomRoutingListenersCommandOutput extends ListCustomRouti
33
33
  * };
34
34
  * const command = new ListCustomRoutingListenersCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListCustomRoutingListenersResponse
37
+ * // Listeners: [ // CustomRoutingListeners
38
+ * // { // CustomRoutingListener
39
+ * // ListenerArn: "STRING_VALUE",
40
+ * // PortRanges: [ // PortRanges
41
+ * // { // PortRange
42
+ * // FromPort: Number("int"),
43
+ * // ToPort: Number("int"),
44
+ * // },
45
+ * // ],
46
+ * // },
47
+ * // ],
48
+ * // NextToken: "STRING_VALUE",
49
+ * // };
50
+ *
36
51
  * ```
37
52
  *
38
53
  * @param ListCustomRoutingListenersCommandInput - {@link ListCustomRoutingListenersCommandInput}
@@ -53,6 +68,8 @@ export interface ListCustomRoutingListenersCommandOutput extends ListCustomRouti
53
68
  * @throws {@link InvalidNextTokenException} (client fault)
54
69
  * <p>There isn't another item to return.</p>
55
70
  *
71
+ * @throws {@link GlobalAcceleratorServiceException}
72
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
56
73
  *
57
74
  */
58
75
  export declare class ListCustomRoutingListenersCommand extends $Command<ListCustomRoutingListenersCommandInput, ListCustomRoutingListenersCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -37,6 +37,30 @@ export interface ListCustomRoutingPortMappingsByDestinationCommandOutput extends
37
37
  * };
38
38
  * const command = new ListCustomRoutingPortMappingsByDestinationCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListCustomRoutingPortMappingsByDestinationResponse
41
+ * // DestinationPortMappings: [ // DestinationPortMappings
42
+ * // { // DestinationPortMapping
43
+ * // AcceleratorArn: "STRING_VALUE",
44
+ * // AcceleratorSocketAddresses: [ // SocketAddresses
45
+ * // { // SocketAddress
46
+ * // IpAddress: "STRING_VALUE",
47
+ * // Port: Number("int"),
48
+ * // },
49
+ * // ],
50
+ * // EndpointGroupArn: "STRING_VALUE",
51
+ * // EndpointId: "STRING_VALUE",
52
+ * // EndpointGroupRegion: "STRING_VALUE",
53
+ * // DestinationSocketAddress: {
54
+ * // IpAddress: "STRING_VALUE",
55
+ * // Port: Number("int"),
56
+ * // },
57
+ * // IpAddressType: "IPV4" || "DUAL_STACK",
58
+ * // DestinationTrafficState: "ALLOW" || "DENY",
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
40
64
  * ```
41
65
  *
42
66
  * @param ListCustomRoutingPortMappingsByDestinationCommandInput - {@link ListCustomRoutingPortMappingsByDestinationCommandInput}
@@ -57,6 +81,8 @@ export interface ListCustomRoutingPortMappingsByDestinationCommandOutput extends
57
81
  * @throws {@link InvalidNextTokenException} (client fault)
58
82
  * <p>There isn't another item to return.</p>
59
83
  *
84
+ * @throws {@link GlobalAcceleratorServiceException}
85
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
60
86
  *
61
87
  */
62
88
  export declare class ListCustomRoutingPortMappingsByDestinationCommand extends $Command<ListCustomRoutingPortMappingsByDestinationCommandInput, ListCustomRoutingPortMappingsByDestinationCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -42,6 +42,25 @@ export interface ListCustomRoutingPortMappingsCommandOutput extends ListCustomRo
42
42
  * };
43
43
  * const command = new ListCustomRoutingPortMappingsCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // ListCustomRoutingPortMappingsResponse
46
+ * // PortMappings: [ // PortMappings
47
+ * // { // PortMapping
48
+ * // AcceleratorPort: Number("int"),
49
+ * // EndpointGroupArn: "STRING_VALUE",
50
+ * // EndpointId: "STRING_VALUE",
51
+ * // DestinationSocketAddress: { // SocketAddress
52
+ * // IpAddress: "STRING_VALUE",
53
+ * // Port: Number("int"),
54
+ * // },
55
+ * // Protocols: [ // CustomRoutingProtocols
56
+ * // "TCP" || "UDP",
57
+ * // ],
58
+ * // DestinationTrafficState: "ALLOW" || "DENY",
59
+ * // },
60
+ * // ],
61
+ * // NextToken: "STRING_VALUE",
62
+ * // };
63
+ *
45
64
  * ```
46
65
  *
47
66
  * @param ListCustomRoutingPortMappingsCommandInput - {@link ListCustomRoutingPortMappingsCommandInput}
@@ -65,6 +84,8 @@ export interface ListCustomRoutingPortMappingsCommandOutput extends ListCustomRo
65
84
  * @throws {@link InvalidNextTokenException} (client fault)
66
85
  * <p>There isn't another item to return.</p>
67
86
  *
87
+ * @throws {@link GlobalAcceleratorServiceException}
88
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
68
89
  *
69
90
  */
70
91
  export declare class ListCustomRoutingPortMappingsCommand extends $Command<ListCustomRoutingPortMappingsCommandInput, ListCustomRoutingPortMappingsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -33,6 +33,37 @@ export interface ListEndpointGroupsCommandOutput extends ListEndpointGroupsRespo
33
33
  * };
34
34
  * const command = new ListEndpointGroupsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListEndpointGroupsResponse
37
+ * // EndpointGroups: [ // EndpointGroups
38
+ * // { // EndpointGroup
39
+ * // EndpointGroupArn: "STRING_VALUE",
40
+ * // EndpointGroupRegion: "STRING_VALUE",
41
+ * // EndpointDescriptions: [ // EndpointDescriptions
42
+ * // { // EndpointDescription
43
+ * // EndpointId: "STRING_VALUE",
44
+ * // Weight: Number("int"),
45
+ * // HealthState: "INITIAL" || "HEALTHY" || "UNHEALTHY",
46
+ * // HealthReason: "STRING_VALUE",
47
+ * // ClientIPPreservationEnabled: true || false,
48
+ * // },
49
+ * // ],
50
+ * // TrafficDialPercentage: Number("float"),
51
+ * // HealthCheckPort: Number("int"),
52
+ * // HealthCheckProtocol: "TCP" || "HTTP" || "HTTPS",
53
+ * // HealthCheckPath: "STRING_VALUE",
54
+ * // HealthCheckIntervalSeconds: Number("int"),
55
+ * // ThresholdCount: Number("int"),
56
+ * // PortOverrides: [ // PortOverrides
57
+ * // { // PortOverride
58
+ * // ListenerPort: Number("int"),
59
+ * // EndpointPort: Number("int"),
60
+ * // },
61
+ * // ],
62
+ * // },
63
+ * // ],
64
+ * // NextToken: "STRING_VALUE",
65
+ * // };
66
+ *
36
67
  * ```
37
68
  *
38
69
  * @param ListEndpointGroupsCommandInput - {@link ListEndpointGroupsCommandInput}
@@ -53,6 +84,8 @@ export interface ListEndpointGroupsCommandOutput extends ListEndpointGroupsRespo
53
84
  * @throws {@link ListenerNotFoundException} (client fault)
54
85
  * <p>The listener that you specified doesn't exist.</p>
55
86
  *
87
+ * @throws {@link GlobalAcceleratorServiceException}
88
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
56
89
  *
57
90
  */
58
91
  export declare class ListEndpointGroupsCommand extends $Command<ListEndpointGroupsCommandInput, ListEndpointGroupsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -33,6 +33,23 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met
33
33
  * };
34
34
  * const command = new ListListenersCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListListenersResponse
37
+ * // Listeners: [ // Listeners
38
+ * // { // Listener
39
+ * // ListenerArn: "STRING_VALUE",
40
+ * // PortRanges: [ // PortRanges
41
+ * // { // PortRange
42
+ * // FromPort: Number("int"),
43
+ * // ToPort: Number("int"),
44
+ * // },
45
+ * // ],
46
+ * // Protocol: "TCP" || "UDP",
47
+ * // ClientAffinity: "NONE" || "SOURCE_IP",
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
36
53
  * ```
37
54
  *
38
55
  * @param ListListenersCommandInput - {@link ListListenersCommandInput}
@@ -53,6 +70,8 @@ export interface ListListenersCommandOutput extends ListListenersResponse, __Met
53
70
  * @throws {@link InvalidNextTokenException} (client fault)
54
71
  * <p>There isn't another item to return.</p>
55
72
  *
73
+ * @throws {@link GlobalAcceleratorServiceException}
74
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
56
75
  *
57
76
  */
58
77
  export declare class ListListenersCommand extends $Command<ListListenersCommandInput, ListListenersCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -33,6 +33,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceResponse
37
+ * // Tags: [ // Tags
38
+ * // { // Tag
39
+ * // Key: "STRING_VALUE", // required
40
+ * // Value: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // };
44
+ *
36
45
  * ```
37
46
  *
38
47
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -50,6 +59,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
50
59
  * @throws {@link InvalidArgumentException} (client fault)
51
60
  * <p>An argument that you specified is invalid.</p>
52
61
  *
62
+ * @throws {@link GlobalAcceleratorServiceException}
63
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
53
64
  *
54
65
  */
55
66
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -40,6 +40,19 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrRespo
40
40
  * };
41
41
  * const command = new ProvisionByoipCidrCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // ProvisionByoipCidrResponse
44
+ * // ByoipCidr: { // ByoipCidr
45
+ * // Cidr: "STRING_VALUE",
46
+ * // State: "PENDING_PROVISIONING" || "READY" || "PENDING_ADVERTISING" || "ADVERTISING" || "PENDING_WITHDRAWING" || "PENDING_DEPROVISIONING" || "DEPROVISIONED" || "FAILED_PROVISION" || "FAILED_ADVERTISING" || "FAILED_WITHDRAW" || "FAILED_DEPROVISION",
47
+ * // Events: [ // ByoipCidrEvents
48
+ * // { // ByoipCidrEvent
49
+ * // Message: "STRING_VALUE",
50
+ * // Timestamp: new Date("TIMESTAMP"),
51
+ * // },
52
+ * // ],
53
+ * // },
54
+ * // };
55
+ *
43
56
  * ```
44
57
  *
45
58
  * @param ProvisionByoipCidrCommandInput - {@link ProvisionByoipCidrCommandInput}
@@ -64,6 +77,8 @@ export interface ProvisionByoipCidrCommandOutput extends ProvisionByoipCidrRespo
64
77
  * @throws {@link LimitExceededException} (client fault)
65
78
  * <p>Processing your request would cause you to exceed an Global Accelerator limit.</p>
66
79
  *
80
+ * @throws {@link GlobalAcceleratorServiceException}
81
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
67
82
  *
68
83
  */
69
84
  export declare class ProvisionByoipCidrCommand extends $Command<ProvisionByoipCidrCommandInput, ProvisionByoipCidrCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBea
34
34
  * };
35
35
  * const command = new RemoveCustomRoutingEndpointsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param RemoveCustomRoutingEndpointsCommandInput - {@link RemoveCustomRoutingEndpointsCommandInput}
@@ -60,6 +62,8 @@ export interface RemoveCustomRoutingEndpointsCommandOutput extends __MetadataBea
60
62
  * @throws {@link InvalidArgumentException} (client fault)
61
63
  * <p>An argument that you specified is invalid.</p>
62
64
  *
65
+ * @throws {@link GlobalAcceleratorServiceException}
66
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
63
67
  *
64
68
  */
65
69
  export declare class RemoveCustomRoutingEndpointsCommand extends $Command<RemoveCustomRoutingEndpointsCommandInput, RemoveCustomRoutingEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -53,6 +53,8 @@ export interface RemoveEndpointsCommandOutput extends __MetadataBearer {
53
53
  * };
54
54
  * const command = new RemoveEndpointsCommand(input);
55
55
  * const response = await client.send(command);
56
+ * // {};
57
+ *
56
58
  * ```
57
59
  *
58
60
  * @param RemoveEndpointsCommandInput - {@link RemoveEndpointsCommandInput}
@@ -76,6 +78,8 @@ export interface RemoveEndpointsCommandOutput extends __MetadataBearer {
76
78
  * @throws {@link TransactionInProgressException} (client fault)
77
79
  * <p>There's already a transaction in progress. Another transaction can't be processed.</p>
78
80
  *
81
+ * @throws {@link GlobalAcceleratorServiceException}
82
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
79
83
  *
80
84
  */
81
85
  export declare class RemoveEndpointsCommand extends $Command<RemoveEndpointsCommandInput, RemoveEndpointsCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -39,6 +39,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
39
39
  * };
40
40
  * const command = new TagResourceCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // {};
43
+ *
42
44
  * ```
43
45
  *
44
46
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -56,6 +58,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
56
58
  * @throws {@link InvalidArgumentException} (client fault)
57
59
  * <p>An argument that you specified is invalid.</p>
58
60
  *
61
+ * @throws {@link GlobalAcceleratorServiceException}
62
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
59
63
  *
60
64
  */
61
65
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -37,6 +37,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
37
37
  * };
38
38
  * const command = new UntagResourceCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // {};
41
+ *
40
42
  * ```
41
43
  *
42
44
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -54,6 +56,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
54
56
  * @throws {@link InvalidArgumentException} (client fault)
55
57
  * <p>An argument that you specified is invalid.</p>
56
58
  *
59
+ * @throws {@link GlobalAcceleratorServiceException}
60
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
57
61
  *
58
62
  */
59
63
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, GlobalAcceleratorClientResolvedConfig> {
@@ -34,6 +34,14 @@ export interface UpdateAcceleratorAttributesCommandOutput extends UpdateAccelera
34
34
  * };
35
35
  * const command = new UpdateAcceleratorAttributesCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // UpdateAcceleratorAttributesResponse
38
+ * // AcceleratorAttributes: { // AcceleratorAttributes
39
+ * // FlowLogsEnabled: true || false,
40
+ * // FlowLogsS3Bucket: "STRING_VALUE",
41
+ * // FlowLogsS3Prefix: "STRING_VALUE",
42
+ * // },
43
+ * // };
44
+ *
37
45
  * ```
38
46
  *
39
47
  * @param UpdateAcceleratorAttributesCommandInput - {@link UpdateAcceleratorAttributesCommandInput}
@@ -54,6 +62,8 @@ export interface UpdateAcceleratorAttributesCommandOutput extends UpdateAccelera
54
62
  * @throws {@link InvalidArgumentException} (client fault)
55
63
  * <p>An argument that you specified is invalid.</p>
56
64
  *
65
+ * @throws {@link GlobalAcceleratorServiceException}
66
+ * <p>Base exception class for all service exceptions from GlobalAccelerator service.</p>
57
67
  *
58
68
  */
59
69
  export declare class UpdateAcceleratorAttributesCommand extends $Command<UpdateAcceleratorAttributesCommandInput, UpdateAcceleratorAttributesCommandOutput, GlobalAcceleratorClientResolvedConfig> {