# Generated by default/object.tt package Paws::SSM::LoggingInfo; use Moose; has S3BucketName => (is => 'ro', isa => 'Str', required => 1); has S3KeyPrefix => (is => 'ro', isa => 'Str'); has S3Region => (is => 'ro', isa => 'Str', required => 1); 1; ### main pod documentation begin ### =head1 NAME Paws::SSM::LoggingInfo =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SSM::LoggingInfo object: $service_obj->Method(Att1 => { S3BucketName => $value, ..., S3Region => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SSM::LoggingInfo object: $result = $service_obj->Method(...); $result->Att1->S3BucketName =head1 DESCRIPTION Information about an S3 bucket to write instance-level logs to. C has been deprecated. To specify an S3 bucket to contain logs, instead use the C and C options in the C structure. For information about how Systems Manager handles these options for the supported maintenance window task types, see MaintenanceWindowTaskInvocationParameters. =head1 ATTRIBUTES =head2 B S3BucketName => Str The name of an S3 bucket where execution logs are stored . =head2 S3KeyPrefix => Str (Optional) The S3 bucket subfolder. =head2 B S3Region => Str The Region where the S3 bucket is located. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut