File Coverage

blib/lib/Paws/CloudWatchEvents/DescribeEventBusResponse.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              
2             package Paws::CloudWatchEvents::DescribeEventBusResponse;
3 1     1   520 use Moose;
  1         3  
  1         14  
4             has Arn => (is => 'ro', isa => 'Str');
5             has Name => (is => 'ro', isa => 'Str');
6             has Policy => (is => 'ro', isa => 'Str');
7              
8             has _request_id => (is => 'ro', isa => 'Str');
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CloudWatchEvents::DescribeEventBusResponse
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 Arn => Str
20              
21             The Amazon Resource Name (ARN) of the account permitted to write events
22             to the current account.
23              
24              
25             =head2 Name => Str
26              
27             The name of the event bus. Currently, this is always C<default>.
28              
29              
30             =head2 Policy => Str
31              
32             The policy that enables the external account to send events to your
33             account.
34              
35              
36             =head2 _request_id => Str
37              
38              
39             =cut
40              
41             1;