File Coverage

blib/lib/Paws/Firehose/RedshiftDestinationUpdate.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Paws::Firehose::RedshiftDestinationUpdate;
2 1     1   621 use Moose;
  1         3  
  1         9  
3             has CloudWatchLoggingOptions => (is => 'ro', isa => 'Paws::Firehose::CloudWatchLoggingOptions');
4             has ClusterJDBCURL => (is => 'ro', isa => 'Str');
5             has CopyCommand => (is => 'ro', isa => 'Paws::Firehose::CopyCommand');
6             has Password => (is => 'ro', isa => 'Str');
7             has ProcessingConfiguration => (is => 'ro', isa => 'Paws::Firehose::ProcessingConfiguration');
8             has RetryOptions => (is => 'ro', isa => 'Paws::Firehose::RedshiftRetryOptions');
9             has RoleARN => (is => 'ro', isa => 'Str');
10             has S3BackupMode => (is => 'ro', isa => 'Str');
11             has S3BackupUpdate => (is => 'ro', isa => 'Paws::Firehose::S3DestinationUpdate');
12             has S3Update => (is => 'ro', isa => 'Paws::Firehose::S3DestinationUpdate');
13             has Username => (is => 'ro', isa => 'Str');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::Firehose::RedshiftDestinationUpdate
21              
22             =head1 USAGE
23              
24             This class represents one of two things:
25              
26             =head3 Arguments in a call to a service
27              
28             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
29             Each attribute should be used as a named argument in the calls that expect this type of object.
30              
31             As an example, if Att1 is expected to be a Paws::Firehose::RedshiftDestinationUpdate object:
32              
33             $service_obj->Method(Att1 => { CloudWatchLoggingOptions => $value, ..., Username => $value });
34              
35             =head3 Results returned from an API call
36              
37             Use accessors for each attribute. If Att1 is expected to be an Paws::Firehose::RedshiftDestinationUpdate object:
38              
39             $result = $service_obj->Method(...);
40             $result->Att1->CloudWatchLoggingOptions
41              
42             =head1 DESCRIPTION
43              
44             Describes an update for a destination in Amazon Redshift.
45              
46             =head1 ATTRIBUTES
47              
48              
49             =head2 CloudWatchLoggingOptions => L<Paws::Firehose::CloudWatchLoggingOptions>
50              
51             The CloudWatch logging options for your delivery stream.
52              
53              
54             =head2 ClusterJDBCURL => Str
55              
56             The database connection string.
57              
58              
59             =head2 CopyCommand => L<Paws::Firehose::CopyCommand>
60              
61             The C<COPY> command.
62              
63              
64             =head2 Password => Str
65              
66             The user password.
67              
68              
69             =head2 ProcessingConfiguration => L<Paws::Firehose::ProcessingConfiguration>
70              
71             The data processing configuration.
72              
73              
74             =head2 RetryOptions => L<Paws::Firehose::RedshiftRetryOptions>
75              
76             The retry behavior in the event that Firehose is unable to deliver
77             documents to Amazon Redshift. Default value is 3600 (60 minutes).
78              
79              
80             =head2 RoleARN => Str
81              
82             The ARN of the AWS credentials.
83              
84              
85             =head2 S3BackupMode => Str
86              
87             The Amazon S3 backup mode.
88              
89              
90             =head2 S3BackupUpdate => L<Paws::Firehose::S3DestinationUpdate>
91              
92             The Amazon S3 destination for backup.
93              
94              
95             =head2 S3Update => L<Paws::Firehose::S3DestinationUpdate>
96              
97             The Amazon S3 destination.
98              
99             The compression formats C<SNAPPY> or C<ZIP> cannot be specified in
100             B<RedshiftDestinationUpdate.S3Update> because the Amazon Redshift
101             C<COPY> operation that reads from the S3 bucket doesn't support these
102             compression formats.
103              
104              
105             =head2 Username => Str
106              
107             The name of the user.
108              
109              
110              
111             =head1 SEE ALSO
112              
113             This class forms part of L<Paws>, describing an object used in L<Paws::Firehose>
114              
115             =head1 BUGS and CONTRIBUTIONS
116              
117             The source code is located here: https://github.com/pplu/aws-sdk-perl
118              
119             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
120              
121             =cut
122