getMultiRegionEndpoint method
Displays the multi-region endpoint (global-endpoint) configuration.
Only multi-region endpoints (global-endpoints) whose primary region is the AWS-Region where operation is executed can be displayed.
May throw BadRequestException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter endpointName :
The name of the multi-region endpoint (global-endpoint).
Implementation
Future<GetMultiRegionEndpointResponse> getMultiRegionEndpoint({
required String endpointName,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/v2/email/multi-region-endpoints/${Uri.encodeComponent(endpointName)}',
exceptionFnMap: _exceptionFns,
);
return GetMultiRegionEndpointResponse.fromJson(response);
}