/** *
The settings for a trail.
*/ export interface _Trail { /** *Name of the trail set by calling CreateTrail. The maximum length is 128 characters.
*/ Name?: string; /** *Name of the Amazon S3 bucket into which CloudTrail delivers your trail files. See Amazon S3 Bucket Naming Requirements.
*/ S3BucketName?: string; /** *Specifies the Amazon S3 key prefix that comes after the name of the bucket you have designated for log file delivery. For more information, see Finding Your CloudTrail Log Files.The maximum length is 200 characters.
*/ S3KeyPrefix?: string; /** *This field is deprecated. Use SnsTopicARN.
*/ SnsTopicName?: string; /** *Specifies the ARN of the Amazon SNS topic that CloudTrail uses to send notifications when log files are delivered. The format of a topic ARN is:
arn:aws:sns:us-east-2:123456789012:MyTopic
Set to True to include AWS API calls from AWS global services such as IAM. Otherwise, False.
*/ IncludeGlobalServiceEvents?: boolean; /** *Specifies whether the trail belongs only to one region or exists in all regions.
*/ IsMultiRegionTrail?: boolean; /** *The region in which the trail was created.
*/ HomeRegion?: string; /** *Specifies the ARN of the trail. The format of a trail ARN is:
arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail
Specifies whether log file validation is enabled.
*/ LogFileValidationEnabled?: boolean; /** *Specifies an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered.
*/ CloudWatchLogsLogGroupArn?: string; /** *Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group.
*/ CloudWatchLogsRoleArn?: string; /** *Specifies the KMS key ID that encrypts the logs delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the format:
arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012
Specifies if the trail has custom event selectors.
*/ HasCustomEventSelectors?: boolean; /** *Specifies whether the trail is an organization trail.
*/ IsOrganizationTrail?: boolean; } export declare type _UnmarshalledTrail = _Trail;