/AWS1/IF_CWE=>PUTPERMISSION()¶
About PutPermission¶
Running PutPermission permits the specified Amazon Web Services account or Amazon Web Services organization
to put events to the specified event bus. Amazon EventBridge (CloudWatch
Events) rules in your account are triggered by these events arriving to an event bus in your
account.
For another account to send events to your account, that external account must have an EventBridge rule with your account's event bus as a target.
To enable multiple Amazon Web Services accounts to put events to your event bus, run
PutPermission once for each of these accounts. Or, if all the accounts are
members of the same Amazon Web Services organization, you can run PutPermission once specifying
Principal as "*" and specifying the Amazon Web Services organization ID in
Condition, to grant permissions to all accounts in that organization.
If you grant permissions using an organization, then accounts in that organization must
specify a RoleArn with proper permissions when they use PutTarget to
add your account's event bus as a target. For more information, see Sending and
Receiving Events Between Amazon Web Services Accounts in the Amazon EventBridge User
Guide.
The permission policy on the event bus cannot exceed 10 KB in size.
Method Signature¶
METHODS /AWS1/IF_CWE~PUTPERMISSION
IMPORTING
!IV_EVENTBUSNAME TYPE /AWS1/CWENONPARTNEREBUSNAME OPTIONAL
!IV_ACTION TYPE /AWS1/CWEACTION OPTIONAL
!IV_PRINCIPAL TYPE /AWS1/CWEPRINCIPAL OPTIONAL
!IV_STATEMENTID TYPE /AWS1/CWESTATEMENTID OPTIONAL
!IO_CONDITION TYPE REF TO /AWS1/CL_CWECONDITION OPTIONAL
!IV_POLICY TYPE /AWS1/CWESTRING OPTIONAL
RAISING
/AWS1/CX_CWECONCURRENTMODEX
/AWS1/CX_CWEINTERNALEXCEPTION
/AWS1/CX_CWEOPDISABLEDEX
/AWS1/CX_CWEPOLICYLENGTHEXCDEX
/AWS1/CX_CWERESOURCENOTFOUNDEX
/AWS1/CX_CWECLIENTEXC
/AWS1/CX_CWESERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
iv_eventbusname TYPE /AWS1/CWENONPARTNEREBUSNAME /AWS1/CWENONPARTNEREBUSNAME¶
The name of the event bus associated with the rule. If you omit this, the default event bus is used.
iv_action TYPE /AWS1/CWEACTION /AWS1/CWEACTION¶
The action that you are enabling the other account to perform.
iv_principal TYPE /AWS1/CWEPRINCIPAL /AWS1/CWEPRINCIPAL¶
The 12-digit Amazon Web Services 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
Condition, avoid creating rules that may match undesirable events. To create more secure rules, make sure that the event pattern for each rule contains anaccountfield with a specific account ID from which to receive events. Rules with an account field do not match any events sent from other accounts.
iv_statementid TYPE /AWS1/CWESTATEMENTID /AWS1/CWESTATEMENTID¶
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
StatementIdwhen you run RemovePermission.
io_condition TYPE REF TO /AWS1/CL_CWECONDITION /AWS1/CL_CWECONDITION¶
This parameter enables you to limit the permission to accounts that fulfill a certain condition, such as being a member of a certain Amazon Web Services organization. For more information about Amazon Web Services Organizations, see What Is Amazon Web Services Organizations in the Amazon Web Services Organizations User Guide.
If you specify
Conditionwith an Amazon Web Services organization ID, and specify "*" as the value forPrincipal, you grant permission to all the accounts in the named organization.The
Conditionis a JSON string which must containType,Key, andValuefields.
iv_policy TYPE /AWS1/CWESTRING /AWS1/CWESTRING¶
A JSON string that describes the permission policy statement. You can include a
Policyparameter in the request instead of using theStatementId,Action,Principal, orConditionparameters.
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
lo_client->putpermission(
io_condition = new /aws1/cl_cwecondition(
iv_key = |string|
iv_type = |string|
iv_value = |string|
)
iv_action = |string|
iv_eventbusname = |string|
iv_policy = |string|
iv_principal = |string|
iv_statementid = |string|
).