EC2 / Client / get_vpn_connection_device_types
get_vpn_connection_device_types¶
- EC2.Client.get_vpn_connection_device_types(**kwargs)¶
Obtain a list of customer gateway devices for which sample configuration files can be provided. The request has no additional parameters. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.
See also: AWS API Documentation
Request Syntax
response = client.get_vpn_connection_device_types( MaxResults=123, NextToken='string', DryRun=True|False )
- Parameters:
MaxResults (integer) – The maximum number of results returned by
GetVpnConnectionDeviceTypesin paginated output. When this parameter is used,GetVpnConnectionDeviceTypesonly returnsMaxResultsresults in a single page along with aNextTokenresponse element. The remaining results of the initial request can be seen by sending anotherGetVpnConnectionDeviceTypesrequest with the returnedNextTokenvalue. This value can be between 200 and 1000. If this parameter is not used, thenGetVpnConnectionDeviceTypesreturns all results.NextToken (string) – The
NextTokenvalue returned from a previous paginatedGetVpnConnectionDeviceTypesrequest whereMaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned theNextTokenvalue. This value is null when there are no more results to return.DryRun (boolean) – Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.
- Return type:
dict
- Returns:
Response Syntax
{ 'VpnConnectionDeviceTypes': [ { 'VpnConnectionDeviceTypeId': 'string', 'Vendor': 'string', 'Platform': 'string', 'Software': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
VpnConnectionDeviceTypes (list) –
List of customer gateway devices that have a sample configuration file available for use.
(dict) –
List of customer gateway devices that have a sample configuration file available for use. You can also see the list of device types with sample configuration files available under Your customer gateway device in the Amazon Web Services Site-to-Site VPN User Guide.
VpnConnectionDeviceTypeId (string) –
Customer gateway device identifier.
Vendor (string) –
Customer gateway device vendor.
Platform (string) –
Customer gateway device platform.
Software (string) –
Customer gateway device software version.
NextToken (string) –
The
NextTokenvalue to include in a futureGetVpnConnectionDeviceTypesrequest. When the results of aGetVpnConnectionDeviceTypesrequest exceedMaxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.