Amazon-SQS-Client

 view release on metacpan or  search on metacpan

share/RemovePermission.pm  view on Meta::CPAN

package RemovePermission;

use Amazon::SQS::Model::RemovePermissionRequest;

use strict;
use warnings;

use Amazon::SQS::Model::RemovePermissionRequest;

use parent qw(Amazon::SQS::Sample);

########################################################################
sub sample {
########################################################################
  my ( $self, $label, $queue_url ) = @_;

  my $service = $self->get_service;

  my $config = $self->get_config;
  $queue_url //= $config && $config->get_queue_url;

  if ( !$queue_url ) {
    $self->help();
  }
  my $request = Amazon::SQS::Model::RemovePermissionRequest->new(
    { QueueUrl => $queue_url,
      Label    => $label
    }
  );

  my $response = $service->removePermission($request);

  if ( $response->isSetResponseMetadata() ) {
    my $responseMetadata = $response->getResponseMetadata();
    if ( $responseMetadata->isSetRequestId() ) {
      my $requestId = $responseMetadata->getRequestId();

    }
  }

  return;
}

1;

## no critic

__END__

=pod

=head1 USAGE

 example.pl [-f config-file] RemovePermission label [queue-url]

Note: If you do not set the queue URL in the config, then you must
provide it on the command line.

=head1 OPTIONS

 --endpoint-url, -e  API endpoint, default: https://queue.amazonaws.com
 --file, -f          Name of a .ini configuration file
 --help, -h          help

=cut



( run in 0.941 second using v1.01-cache-2.11-cpan-39bf76dae61 )