deleteSecurityRequirementPack method

Future<void> deleteSecurityRequirementPack({
  1. required String packId,
})

Deletes a customer managed security requirement pack and all its associated security requirements.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter packId : The unique identifier of the security requirement pack to delete.

Implementation

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