# Generated by default/object.tt package Paws::CloudSearch::DateArrayOptions; use Moose; has DefaultValue => (is => 'ro', isa => 'Str'); has FacetEnabled => (is => 'ro', isa => 'Bool'); has ReturnEnabled => (is => 'ro', isa => 'Bool'); has SearchEnabled => (is => 'ro', isa => 'Bool'); has SourceFields => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::CloudSearch::DateArrayOptions =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::CloudSearch::DateArrayOptions object: $service_obj->Method(Att1 => { DefaultValue => $value, ..., SourceFields => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::CloudSearch::DateArrayOptions object: $result = $service_obj->Method(...); $result->Att1->DefaultValue =head1 DESCRIPTION Options for a field that contains an array of dates. Present if C<IndexFieldType> specifies the field is of type C<date-array>. All options are enabled by default. =head1 ATTRIBUTES =head2 DefaultValue => Str A value to use for the field if the field isn't specified for a document. =head2 FacetEnabled => Bool Whether facet information can be returned for the field. =head2 ReturnEnabled => Bool Whether the contents of the field can be returned in the search results. =head2 SearchEnabled => Bool Whether the contents of the field are searchable. =head2 SourceFields => Str A list of source fields to map to the field. =head1 SEE ALSO This class forms part of L<Paws>, describing an object used in L<Paws::CloudSearch> =head1 BUGS and CONTRIBUTIONS The source code is located here: L<https://github.com/pplu/aws-sdk-perl> Please report bugs to: L<https://github.com/pplu/aws-sdk-perl/issues> =cut