PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::CloudWatchEvents::PutPermission; use Moose; has Action => (is => 'ro', isa => 'Str'); has Condition => (is => 'ro', isa => 'Paws::CloudWatchEvents::Condition'); has EventBusName => (is => 'ro', isa => 'Str'); has Policy => (is => 'ro', isa => 'Str'); has Principal => (is => 'ro', isa => 'Str'); has StatementId => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'PutPermission'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::API::Response'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::CloudWatchEvents::PutPermission - Arguments for method PutPermission on L =head1 DESCRIPTION This class represents the parameters used for calling the method PutPermission on the L service. Use the attributes of this class as arguments to method PutPermission. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to PutPermission. =head1 SYNOPSIS my $events = Paws->service('CloudWatchEvents'); $events->PutPermission( Action => 'MyAction', # OPTIONAL Condition => { Key => 'MyString', Type => 'MyString', Value => 'MyString', }, # OPTIONAL EventBusName => 'MyNonPartnerEventBusName', # OPTIONAL Policy => 'MyString', # OPTIONAL Principal => 'MyPrincipal', # OPTIONAL StatementId => 'MyStatementId', # OPTIONAL ); Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 Action => Str The action that you are enabling the other account to perform. Currently, this must be C. =head2 Condition => L This parameter enables you to limit the permission to accounts that fulfill a certain condition, such as being a member of a certain AWS organization. For more information about AWS Organizations, see What Is AWS Organizations (https://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html) in the I. If you specify C with an AWS organization ID, and specify "*" as the value for C, you grant permission to all the accounts in the named organization. The C is a JSON string which must contain C, C, and C fields. =head2 EventBusName => Str The name of the event bus associated with the rule. If you omit this, the default event bus is used. =head2 Policy => Str A JSON string that describes the permission policy statement. You can include a C parameter in the request instead of using the C, C, C, or C parameters. =head2 Principal => Str The 12-digit AWS account ID that you are permitting to put events to your default event bus. Specify "*" to permit any account to put events to your default event bus. If you specify "*" without specifying C, avoid creating rules that may match undesirable events. To create more secure rules, make sure that the event pattern for each rule contains an C field with a specific account ID from which to receive events. Rules with an account field do not match any events sent from other accounts. =head2 StatementId => Str An identifier string for the external account that you are granting permissions to. If you later want to revoke the permission for this external account, specify this C when you run RemovePermission. =head1 SEE ALSO This class forms part of L, documenting arguments for method PutPermission in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut