getVpcEndpointServiceName method

Future<GetVpcEndpointServiceNameOutput> getVpcEndpointServiceName({
  1. required String identifier,
})

Retrieves the VPC endpoint service name.

May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter identifier : The ID of the cluster to retrieve.

Implementation

Future<GetVpcEndpointServiceNameOutput> getVpcEndpointServiceName({
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/clusters/${Uri.encodeComponent(identifier)}/vpc-endpoint-service-name',
    exceptionFnMap: _exceptionFns,
  );
  return GetVpcEndpointServiceNameOutput.fromJson(response);
}