Method: Aws::CloudTrail::Types::CreateTrailRequest#include_global_service_events
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
#include_global_service_events ⇒ Boolean
Specifies whether the trail is publishing events from global services such as IAM to the log files.
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 |