Method: Aws::CloudTrail::Types::CreateTrailRequest#enable_log_file_validation

Defined in:
lib/aws-sdk-cloudtrail/types.rb

#enable_log_file_validationBoolean

Specifies whether log file integrity validation is enabled. The default is false.

<note markdown=“1”> When you disable log file integrity validation, the chain of digest files is broken after one hour. CloudTrail does not create digest files for log files that were delivered during a period in which log file integrity validation was disabled. For example, if you enable log file integrity validation at noon on January 1, disable it at noon on January 2, and re-enable it at noon on January 10, digest files will not be created for the log files delivered from noon on January 2 to noon on January 10. The same applies whenever you stop CloudTrail logging or delete a trail.

</note>

Returns:

  • (Boolean)


926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
# File 'lib/aws-sdk-cloudtrail/types.rb', line 926

class CreateTrailRequest < Struct.new(
  :name,
  :s3_bucket_name,
  :s3_key_prefix,
  :sns_topic_name,
  :include_global_service_events,
  :is_multi_region_trail,
  :enable_log_file_validation,
  :cloud_watch_logs_log_group_arn,
  :cloud_watch_logs_role_arn,
  :kms_key_id,
  :is_organization_trail,
  :tags_list)
  SENSITIVE = []
  include Aws::Structure
end