Method: Aws::CloudTrail::Types::CreateTrailRequest#cloud_watch_logs_role_arn
- Defined in:
- lib/aws-sdk-cloudtrail/types.rb
#cloud_watch_logs_role_arn ⇒ String
Specifies the role for the CloudWatch Logs endpoint to assume to write to a user’s log group. You must use a role that exists in your account.
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 |