Amazon-SQS-Client
view release on metacpan or search on metacpan
lib/Amazon/SQS/Model/MessageAttribute.pm view on Meta::CPAN
################################################################################
# Copyright 2008 Amazon Technologies, Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
#
# You may not use this file except in compliance with the License.
# You may obtain a copy of the License at: http://aws.amazon.com/apache2.0
# This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
################################################################################
# __ _ _ ___
# ( )( \/\/ )/ __)
# /__\ \ / \__ \
# (_)(_) \/\/ (___/
#
# Amazon SQS Perl Library
# API Version: 2009-02-01
# Generated: Thu Apr 09 01:13:11 PDT 2009
#
package Amazon::SQS::Model::MessageAttribute;
use base qw (Amazon::SQS::Model);
use Scalar::Util qw/reftype/;
use Data::Dumper;
=pod
=head1 NAME
Amazon::SQS::Model::Attribute
=head1 SYNOPSIS
my $attribute = new Amazon::SQS::Model::Attribute(
{
Name => 'VisibilityTimeout',
Value => '60'
}
);
=head1 DESCRIPTION
Create an attribute object for use with various SQS API requests.
=head1 METHODS
=head2 new
new( options )
C<options> is a hash reference that contains the attribute name and value.
=over 5
=item Name
=item Value
=item Type
=back
=cut
sub new {
my ($class, $data) = @_;
my $self = {};
$self->{_fields} = {
Name => { FieldValue => undef, FieldType => "string"},
Value => { FieldValue => undef, FieldType => "Amazon::SQS::Model::MessageAttributeValue"}
};
bless ($self, $class);
if (defined $data) {
$self->_fromHashRef($data);
}
return $self;
}
sub getName {
return shift->{_fields}->{Name}->{FieldValue};
}
( run in 1.265 second using v1.01-cache-2.11-cpan-39bf76dae61 )