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::Lightsail::UpdateDistribution; use Moose; has CacheBehaviors => (is => 'ro', isa => 'ArrayRef[Paws::Lightsail::CacheBehaviorPerPath]', traits => ['NameInRequest'], request_name => 'cacheBehaviors' ); has CacheBehaviorSettings => (is => 'ro', isa => 'Paws::Lightsail::CacheSettings', traits => ['NameInRequest'], request_name => 'cacheBehaviorSettings' ); has DefaultCacheBehavior => (is => 'ro', isa => 'Paws::Lightsail::CacheBehavior', traits => ['NameInRequest'], request_name => 'defaultCacheBehavior' ); has DistributionName => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'distributionName' , required => 1); has IsEnabled => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'isEnabled' ); has Origin => (is => 'ro', isa => 'Paws::Lightsail::InputOrigin', traits => ['NameInRequest'], request_name => 'origin' ); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateDistribution'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Lightsail::UpdateDistributionResult'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::Lightsail::UpdateDistribution - Arguments for method UpdateDistribution on L =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateDistribution on the L service. Use the attributes of this class as arguments to method UpdateDistribution. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateDistribution. =head1 SYNOPSIS my $lightsail = Paws->service('Lightsail'); my $UpdateDistributionResult = $lightsail->UpdateDistribution( DistributionName => 'MyResourceName', CacheBehaviorSettings => { AllowedHTTPMethods => 'MyNonEmptyString', # OPTIONAL CachedHTTPMethods => 'MyNonEmptyString', # OPTIONAL DefaultTTL => 1, # OPTIONAL ForwardedCookies => { CookiesAllowList => [ 'Mystring', ... ], # OPTIONAL Option => 'none', # values: none, allow-list, all; OPTIONAL }, # OPTIONAL ForwardedHeaders => { HeadersAllowList => [ 'Accept', ... # values: Accept, Accept-Charset, Accept-Datetime, Accept-Encoding, Accept-Language, Authorization, CloudFront-Forwarded-Proto, CloudFront-Is-Desktop-Viewer, CloudFront-Is-Mobile-Viewer, CloudFront-Is-SmartTV-Viewer, CloudFront-Is-Tablet-Viewer, CloudFront-Viewer-Country, Host, Origin, Referer ], # OPTIONAL Option => 'none', # values: none, allow-list, all; OPTIONAL }, # OPTIONAL ForwardedQueryStrings => { Option => 1, # OPTIONAL QueryStringsAllowList => [ 'Mystring', ... ], # OPTIONAL }, # OPTIONAL MaximumTTL => 1, # OPTIONAL MinimumTTL => 1, # OPTIONAL }, # OPTIONAL CacheBehaviors => [ { Behavior => 'dont-cache', # values: dont-cache, cache; OPTIONAL Path => 'Mystring', }, ... ], # OPTIONAL DefaultCacheBehavior => { Behavior => 'dont-cache', # values: dont-cache, cache; OPTIONAL }, # OPTIONAL IsEnabled => 1, # OPTIONAL Origin => { Name => 'MyResourceName', ProtocolPolicy => 'http-only', # values: http-only, https-only; OPTIONAL RegionName => 'us-east-1' , # values: us-east-1, us-east-2, us-west-1, us-west-2, eu-west-1, eu-west-2, eu-west-3, eu-central-1, ca-central-1, ap-south-1, ap-southeast-1, ap-southeast-2, ap-northeast-1, ap-northeast-2; OPTIONAL }, # OPTIONAL ); # Results: my $Operation = $UpdateDistributionResult->Operation; # 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 CacheBehaviors => ArrayRef[L] An array of objects that describe the per-path cache behavior for the distribution. =head2 CacheBehaviorSettings => L An object that describes the cache behavior settings for the distribution. The C specified in your C will replace your distribution's existing settings. =head2 DefaultCacheBehavior => L An object that describes the default cache behavior for the distribution. =head2 B DistributionName => Str The name of the distribution to update. Use the C action to get a list of distribution names that you can specify. =head2 IsEnabled => Bool Indicates whether to enable the distribution. =head2 Origin => L An object that describes the origin resource for the distribution, such as a Lightsail instance or load balancer. The distribution pulls, caches, and serves content from the origin. =head1 SEE ALSO This class forms part of L, documenting arguments for method UpdateDistribution in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut