Method: Aws::CloudTrail::Types::CreateTrailRequest#s3_key_prefix

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

#s3_key_prefixString

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.

[1]: docs.aws.amazon.com/awscloudtrail/latest/userguide/get-and-view-cloudtrail-log-files.html#cloudtrail-find-log-files

Returns:

  • (String)


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