AWS-CloudFront
view release on metacpan or search on metacpan
lib/AWS/CloudFront/Logging.pm view on Meta::CPAN
package AWS::CloudFront::Logging;
use VSO;
subtype 'AWS::CloudFront::Logging::Prefix'
=> as 'Str'
=> where { length($_) <= 256 && $_ !~ m{^/} && $_ =~ m{/$} }
=> message { "length <= 256, can't start with '/' and must end with '/'" }
has 'Bucket' => (
is => 'ro',
isa => 'Str',
required => 1,
);
has 'Prefix' => (
is => 'ro',
isa => 'Maybe[AWS::CloudFront::Logging::Prefix]',
( run in 0.253 second using v1.01-cache-2.11-cpan-0d8aa00de5b )