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::EC2::ModifySnapshotAttribute; use Moose; has Attribute => (is => 'ro', isa => 'Str'); has CreateVolumePermission => (is => 'ro', isa => 'Paws::EC2::CreateVolumePermissionModifications'); has DryRun => (is => 'ro', isa => 'Bool', traits => ['NameInRequest'], request_name => 'dryRun' ); has GroupNames => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'UserGroup' ); has OperationType => (is => 'ro', isa => 'Str'); has SnapshotId => (is => 'ro', isa => 'Str', required => 1); has UserIds => (is => 'ro', isa => 'ArrayRef[Str|Undef]', traits => ['NameInRequest'], request_name => 'UserId' ); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'ModifySnapshotAttribute'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::API::Response'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::EC2::ModifySnapshotAttribute - Arguments for method ModifySnapshotAttribute on L =head1 DESCRIPTION This class represents the parameters used for calling the method ModifySnapshotAttribute on the L service. Use the attributes of this class as arguments to method ModifySnapshotAttribute. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ModifySnapshotAttribute. =head1 SYNOPSIS my $ec2 = Paws->service('EC2'); # To modify a snapshot attribute # This example modifies snapshot ``snap-1234567890abcdef0`` to remove the create # volume permission for a user with the account ID ``123456789012``. If the # command succeeds, no output is returned. $ec2->ModifySnapshotAttribute( 'Attribute' => 'createVolumePermission', 'OperationType' => 'remove', 'SnapshotId' => 'snap-1234567890abcdef0', 'UserIds' => [123456789012] ); # To make a snapshot public # This example makes the snapshot ``snap-1234567890abcdef0`` public. $ec2->ModifySnapshotAttribute( 'Attribute' => 'createVolumePermission', 'GroupNames' => ['all'], 'OperationType' => 'add', 'SnapshotId' => 'snap-1234567890abcdef0' ); 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 Attribute => Str The snapshot attribute to modify. Only volume creation permissions can be modified. Valid values are: C<"productCodes">, C<"createVolumePermission"> =head2 CreateVolumePermission => L A JSON representation of the snapshot attribute modification. =head2 DryRun => Bool Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is C. Otherwise, it is C. =head2 GroupNames => ArrayRef[Str|Undef] The group to modify for the snapshot. =head2 OperationType => Str The type of operation to perform to the attribute. Valid values are: C<"add">, C<"remove"> =head2 B SnapshotId => Str The ID of the snapshot. =head2 UserIds => ArrayRef[Str|Undef] The account ID to modify for the snapshot. =head1 SEE ALSO This class forms part of L, documenting arguments for method ModifySnapshotAttribute in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut