deleteVPCEConfiguration method
Deletes a configuration for your Amazon Virtual Private Cloud (VPC) endpoint.
May throw ArgumentException.
May throw InvalidOperationException.
May throw NotFoundException.
May throw ServiceAccountException.
Parameter arn :
The Amazon Resource Name (ARN) of the VPC endpoint configuration you want
to delete.
Implementation
Future<void> deleteVPCEConfiguration({
required String arn,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'DeviceFarm_20150623.DeleteVPCEConfiguration'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'arn': arn,
},
);
}