PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::CloudTrail::CreateTrail; use Moose; has CloudWatchLogsLogGroupArn => (is => 'ro', isa => 'Str'); has CloudWatchLogsRoleArn => (is => 'ro', isa => 'Str'); has EnableLogFileValidation => (is => 'ro', isa => 'Bool'); has IncludeGlobalServiceEvents => (is => 'ro', isa => 'Bool'); has IsMultiRegionTrail => (is => 'ro', isa => 'Bool'); has IsOrganizationTrail => (is => 'ro', isa => 'Bool'); has KmsKeyId => (is => 'ro', isa => 'Str'); has Name => (is => 'ro', isa => 'Str', required => 1); has S3BucketName => (is => 'ro', isa => 'Str', required => 1); has S3KeyPrefix => (is => 'ro', isa => 'Str'); has SnsTopicName => (is => 'ro', isa => 'Str'); has TagsList => (is => 'ro', isa => 'ArrayRef[Paws::CloudTrail::Tag]'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateTrail'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudTrail::CreateTrailResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::CloudTrail::CreateTrail - Arguments for method CreateTrail on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateTrail on the L service. Use the attributes of this class as arguments to method CreateTrail. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateTrail. =head1 SYNOPSIS my $cloudtrail = Paws->service('CloudTrail'); my $CreateTrailResponse = $cloudtrail->CreateTrail( Name => 'MyString', S3BucketName => 'MyString', CloudWatchLogsLogGroupArn => 'MyString', # OPTIONAL CloudWatchLogsRoleArn => 'MyString', # OPTIONAL EnableLogFileValidation => 1, # OPTIONAL IncludeGlobalServiceEvents => 1, # OPTIONAL IsMultiRegionTrail => 1, # OPTIONAL IsOrganizationTrail => 1, # OPTIONAL KmsKeyId => 'MyString', # OPTIONAL S3KeyPrefix => 'MyString', # OPTIONAL SnsTopicName => 'MyString', # OPTIONAL TagsList => [ { Key => 'MyString', Value => 'MyString', }, ... ], # OPTIONAL ); # Results: my $CloudWatchLogsLogGroupArn = $CreateTrailResponse->CloudWatchLogsLogGroupArn; my $CloudWatchLogsRoleArn = $CreateTrailResponse->CloudWatchLogsRoleArn; my $IncludeGlobalServiceEvents = $CreateTrailResponse->IncludeGlobalServiceEvents; my $IsMultiRegionTrail = $CreateTrailResponse->IsMultiRegionTrail; my $IsOrganizationTrail = $CreateTrailResponse->IsOrganizationTrail; my $KmsKeyId = $CreateTrailResponse->KmsKeyId; my $LogFileValidationEnabled = $CreateTrailResponse->LogFileValidationEnabled; my $Name = $CreateTrailResponse->Name; my $S3BucketName = $CreateTrailResponse->S3BucketName; my $S3KeyPrefix = $CreateTrailResponse->S3KeyPrefix; my $SnsTopicARN = $CreateTrailResponse->SnsTopicARN; my $SnsTopicName = $CreateTrailResponse->SnsTopicName; my $TrailARN = $CreateTrailResponse->TrailARN; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 CloudWatchLogsLogGroupArn => Str Specifies a log group name using an Amazon Resource Name (ARN), a unique identifier that represents the log group to which CloudTrail logs will be delivered. Not required unless you specify CloudWatchLogsRoleArn. =head2 CloudWatchLogsRoleArn => Str Specifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group. =head2 EnableLogFileValidation => Bool Specifies whether log file integrity validation is enabled. The default is false. When you disable log file integrity validation, the chain of digest files is broken after one hour. CloudTrail will 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. =head2 IncludeGlobalServiceEvents => Bool Specifies whether the trail is publishing events from global services such as IAM to the log files. =head2 IsMultiRegionTrail => Bool Specifies whether the trail is created in the current region or in all regions. The default is false, which creates a trail only in the region where you are signed in. As a best practice, consider creating trails that log events in all regions. =head2 IsOrganizationTrail => Bool Specifies whether the trail is created for all accounts in an organization in AWS Organizations, or only for the current AWS account. The default is false, and cannot be true unless the call is made on behalf of an AWS account that is the master account for an organization in AWS Organizations. =head2 KmsKeyId => Str Specifies the KMS key ID to use to encrypt the logs delivered by CloudTrail. The value can be an alias name prefixed by "alias/", a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier. Examples: =over =item * alias/MyAliasName =item * arn:aws:kms:us-east-2:123456789012:alias/MyAliasName =item * arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012 =item * 12345678-1234-1234-1234-123456789012 =back =head2 B Name => Str Specifies the name of the trail. The name must meet the following requirements: =over =item * Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-) =item * Start with a letter or number, and end with a letter or number =item * Be between 3 and 128 characters =item * Have no adjacent periods, underscores or dashes. Names like C and C are invalid. =item * Not be in IP address format (for example, 192.168.5.4) =back =head2 B S3BucketName => Str Specifies the name of the Amazon S3 bucket designated for publishing log files. See Amazon S3 Bucket Naming Requirements (https://docs.aws.amazon.com/awscloudtrail/latest/userguide/create_trail_naming_policy.html). =head2 S3KeyPrefix => Str 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 (https://docs.aws.amazon.com/awscloudtrail/latest/userguide/cloudtrail-find-log-files.html). The maximum length is 200 characters. =head2 SnsTopicName => Str Specifies the name of the Amazon SNS topic defined for notification of log file delivery. The maximum length is 256 characters. =head2 TagsList => ArrayRef[L] =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateTrail in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut