rejectClientVpcConnection method
Returns empty response.
May throw BadRequestException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw ServiceUnavailableException.
May throw UnauthorizedException.
Parameter clusterArn :
The Amazon Resource Name (ARN) of the cluster.
Parameter vpcConnectionArn :
The VPC connection ARN.
Implementation
Future<void> rejectClientVpcConnection({
required String clusterArn,
required String vpcConnectionArn,
}) async {
final $payload = <String, dynamic>{
'vpcConnectionArn': vpcConnectionArn,
};
final response = await _protocol.send(
payload: $payload,
method: 'PUT',
requestUri:
'/v1/clusters/${Uri.encodeComponent(clusterArn)}/client-vpc-connection',
exceptionFnMap: _exceptionFns,
);
}