deleteLaunchConfigurationTemplate method

Future<void> deleteLaunchConfigurationTemplate({
  1. required String launchConfigurationTemplateID,
})

Deletes a single Launch Configuration Template by ID.

May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw UninitializedAccountException.

Parameter launchConfigurationTemplateID : The ID of the Launch Configuration Template to be deleted.

Implementation

Future<void> deleteLaunchConfigurationTemplate({
  required String launchConfigurationTemplateID,
}) async {
  final $payload = <String, dynamic>{
    'launchConfigurationTemplateID': launchConfigurationTemplateID,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/DeleteLaunchConfigurationTemplate',
    exceptionFnMap: _exceptionFns,
  );
}