package Paws::CloudFront::UpdateStreamingDistribution; use Moose; has Id => (is => 'ro', isa => 'Str', uri_name => 'Id', traits => ['ParamInURI'], required => 1); has IfMatch => (is => 'ro', isa => 'Str', header_name => 'If-Match', traits => ['ParamInHeader']); has StreamingDistributionConfig => (is => 'ro', isa => 'Paws::CloudFront::StreamingDistributionConfig', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'UpdateStreamingDistribution'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/2016-11-25/streaming-distribution/{Id}/config'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'PUT'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudFront::UpdateStreamingDistributionResult'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::CloudFront::UpdateStreamingDistribution - Arguments for method UpdateStreamingDistribution on Paws::CloudFront =head1 DESCRIPTION This class represents the parameters used for calling the method UpdateStreamingDistribution2016_11_25 on the Amazon CloudFront service. Use the attributes of this class as arguments to method UpdateStreamingDistribution2016_11_25. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateStreamingDistribution2016_11_25. As an example: $service_obj->UpdateStreamingDistribution2016_11_25(Att1 => $value1, Att2 => $value2, ...); 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. =head1 ATTRIBUTES =head2 B<REQUIRED> Id => Str The streaming distribution's id. =head2 IfMatch => Str The value of the C<ETag> header that you received when retrieving the streaming distribution's configuration. For example: C<E2QWRUHAPOMQZL>. =head2 B<REQUIRED> StreamingDistributionConfig => L<Paws::CloudFront::StreamingDistributionConfig> The streaming distribution's configuration information. =head1 SEE ALSO This class forms part of L<Paws>, documenting arguments for method UpdateStreamingDistribution2016_11_25 in L<Paws::CloudFront> =head1 BUGS and CONTRIBUTIONS The source code is located here: https://github.com/pplu/aws-sdk-perl Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues =cut