Constructor #
Overview #
This method is used to instantiate the class.
Import parameters #
This constructor uses the following import parameters.
-
i_user_name
Required: Yes.
The IAM user of AWS account.
-
i_access_key
The access key of AWS account.
-
i_secret_access_key
The secret access key of AWS account.
Example #
DATA: lo_iam TYPE REF TO /lnkaws/cl_aws_iam.
CREATE OBJECT lo_iam
EXPORTING
i_user_name = 'user_name'
i_access_key = 'access_key'
i_secret_access_key = 'secret_access_key'.