/// <summary>
 /// Returns information about the destination that you specify. The
 /// getDestination API is grantless. For more information, see "Grantless
 /// operations" in the Selling Partner API Developer Guide.
 ///
 /// **Usage Plan:**
 ///
 /// | Rate (requests per second) | Burst |
 /// | ---- | ---- |
 /// | 1 | 5 |
 ///
 /// For more information, see "Usage Plans and Rate Limits" in the Selling
 /// Partner API documentation.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='destinationId'>
 /// The identifier generated when you created the destination.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <GetDestinationResponse> GetDestinationAsync(this INotificationsClient operations, string destinationId, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.GetDestinationWithHttpMessagesAsync(destinationId, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }