import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *

This exception is thrown when an operation is called with an invalid trail ARN. The format of a trail ARN is:

arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail

*/ export interface CloudTrailARNInvalidException extends __ServiceException__<_CloudTrailARNInvalidExceptionDetails> { name: "CloudTrailARNInvalidException"; } export interface _CloudTrailARNInvalidExceptionDetails { }