The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

# Generated by default/object.tt
use Moose;
has BlobValue => (is => 'ro', isa => 'Str', request_name => 'blobValue', traits => ['NameInRequest']);
has BooleanValue => (is => 'ro', isa => 'Bool', request_name => 'booleanValue', traits => ['NameInRequest']);
has DoubleValue => (is => 'ro', isa => 'Num', request_name => 'doubleValue', traits => ['NameInRequest']);
has IsNull => (is => 'ro', isa => 'Bool', request_name => 'isNull', traits => ['NameInRequest']);
has LongValue => (is => 'ro', isa => 'Int', request_name => 'longValue', traits => ['NameInRequest']);
has StringValue => (is => 'ro', isa => 'Str', request_name => 'stringValue', traits => ['NameInRequest']);
1;
### main pod documentation begin ###
=head1 NAME
Paws::RedshiftData::Field
=head1 USAGE
This class represents one of two things:
=head3 Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::RedshiftData::Field object:
$service_obj->Method(Att1 => { BlobValue => $value, ..., StringValue => $value });
=head3 Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::RedshiftData::Field object:
$result = $service_obj->Method(...);
$result->Att1->BlobValue
=head1 DESCRIPTION
A data value in a column.
=head1 ATTRIBUTES
=head2 BlobValue => Str
A value of the BLOB data type.
=head2 BooleanValue => Bool
A value of the Boolean data type.
=head2 DoubleValue => Num
A value of the double data type.
=head2 IsNull => Bool
A value that indicates whether the data is NULL.
=head2 LongValue => Int
A value of the long data type.
=head2 StringValue => Str
A value of the string data type.
=head1 SEE ALSO
This class forms part of L<Paws>, describing an object used in L<Paws::RedshiftData>
=head1 BUGS and CONTRIBUTIONS
The source code is located here: L<https://github.com/pplu/aws-sdk-perl>
=cut