deleteTrail method

Future<void> deleteTrail({
  1. required String name,
})

Deletes a trail. This operation must be called from the region in which the trail was created. DeleteTrail cannot be called on the shadow trails (replicated trails in other regions) of a trail that is enabled in all regions.

May throw TrailNotFoundException. May throw InvalidTrailNameException. May throw InvalidHomeRegionException. May throw UnsupportedOperationException. May throw OperationNotPermittedException. May throw NotOrganizationMasterAccountException. May throw InsufficientDependencyServiceAccessPermissionException.

Parameter name : Specifies the name or the CloudTrail ARN of the trail to be deleted. The format of a trail ARN is: arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail

Implementation

Future<void> deleteTrail({
  required String name,
}) async {
  ArgumentError.checkNotNull(name, 'name');
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target':
        'com.amazonaws.cloudtrail.v20131101.CloudTrail_20131101.DeleteTrail'
  };
  await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'Name': name,
    },
  );
}