describePrivateConnection method
Future<DescribePrivateConnectionOutput>
describePrivateConnection({
- required String privateConnectionName,
Retrieves the details of a private connection.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter privateConnectionName :
The name of the private connection to describe.
Implementation
Future<DescribePrivateConnectionOutput> describePrivateConnection({
required String privateConnectionName,
}) async {
final $payload = <String, dynamic>{
'privateConnectionName': privateConnectionName,
};
final response = await _protocol.send(
payload: $payload,
method: 'POST',
requestUri: '/DescribePrivateConnection',
exceptionFnMap: _exceptionFns,
);
return DescribePrivateConnectionOutput.fromJson(response);
}