/** *
Settings for logging access in a stage.
*/ export interface _AccessLogSettings { /** *The ARN of the CloudWatch Logs log group to receive access logs.
*/ DestinationArn?: string; /** *A single line format of the access logs of data, as specified by selected $context * variables. The format must include at least $context.requestId.
*/ Format?: string; } export declare type _UnmarshalledAccessLogSettings = _AccessLogSettings;