![]() |
![]()
| ![]() |
![]()
NAMEPaws::CloudTrail::CreateTrail - Arguments for method CreateTrail on Paws::CloudTrail DESCRIPTIONThis class represents the parameters used for calling the method CreateTrail on the AWS CloudTrail 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. SYNOPSISmy $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<Paws::CloudTrail::CreateTrailResponse> 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 <https://docs.aws.amazon.com/goto/WebAPI/cloudtrail/CreateTrail> ATTRIBUTESCloudWatchLogsLogGroupArn => StrSpecifies 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. CloudWatchLogsRoleArn => StrSpecifies the role for the CloudWatch Logs endpoint to assume to write to a user's log group. EnableLogFileValidation => BoolSpecifies 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. IncludeGlobalServiceEvents => BoolSpecifies whether the trail is publishing events from global services such as IAM to the log files. IsMultiRegionTrail => BoolSpecifies 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. IsOrganizationTrail => BoolSpecifies 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. KmsKeyId => StrSpecifies 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:
REQUIRED Name => StrSpecifies the name of the trail. The name must meet the following requirements:
REQUIRED S3BucketName => StrSpecifies 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). S3KeyPrefix => StrSpecifies 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. SnsTopicName => StrSpecifies the name of the Amazon SNS topic defined for notification of log file delivery. The maximum length is 256 characters. TagsList => ArrayRef[Paws::CloudTrail::Tag]SEE ALSOThis class forms part of Paws, documenting arguments for method CreateTrail in Paws::CloudTrail BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|