RPA.Cloud.AWS
module RPA.AWS
class RPA.Cloud.AWS.AWS
AWS is a library for operating with Amazon AWS services S3, SQS, Textract and Comprehend.
Services are initialized with keywords like Init S3 Client
for S3.
AWS authentication
Authentication for AWS is set with key id and access key which can be given to the library in three different ways.
- Method 1 as environment variables,
AWS_KEY_ID
andAWS_KEY
. - Method 2 as keyword parameters to
Init Textract Client
for example. - Method 3 as Robocorp vault secret. The vault name needs to be given in library init or
with keyword
Set Robocorp Vault
. Secret keys are expected to match environment variable names.
Note. Starting from rpaframework-aws 1.0.3 region can be given as environment
variable AWS_REGION
or include as Robocorp Vault secret with the same key name.
Redshift Data authentication: Depending on the authorization method, use one of the following combinations of request parameters, which can only be passed via method 2:
- Secrets Manager - when connecting to a cluster, specify the Amazon Resource Name (ARN) of the secret, the database name, and the cluster identifier that matches the cluster in the secret. When connecting to a serverless endpoint, specify the Amazon Resource Name (ARN) of the secret and the database name.
- Temporary credentials - when connecting to a cluster, specify the cluster identifier, the database name, and the database user name. Also, permission to call the
redshift:GetClusterCredentials
operation is required. When connecting to a serverless endpoint, specify the database name.
Role Assumption: With the use of the STS service client, you are able
to assume another role, which will return temporary credentials. The
temporary credentials will include an access key and session token, see
keyword documentation for Assume Role
for details of how the
credentials are returned. You can use these temporary credentials
as part of method 2, but you must also include the session token.
Method 1. credentials using environment variable
Method 2. credentials with keyword parameter
Method 3. setting Robocorp Vault in the library init
Method 3. setting Robocorp Vault with keyword
Requirements
The default installation depends on boto3 library. Due to the size of the
dependency, this library is available separate package rpaframework-aws
but can
also be installed as an optional package for rpaframework
.
Recommended installation is rpaframework-aws plus rpaframework package. Remember to check latest versions from rpaframework Github repository.
Example
variable ROBOT_LIBRARY_DOC_FORMAT
variable ROBOT_LIBRARY_SCOPE
method analyze_document
Analyzes an input document for relationships between detected items
Parameters
- image_file β filepath (or object name) of image file
- json_file β filepath to resulting json file
- bucket_name β if given then using image_file from the bucket
- model β set True to return Textract Document model, default False
- Returns: analysis response in json or TextractDocument model
method assume_role
Returns a set of temporary security credentials that you can
use to access Amazon Web Services resources that you might not
normally have access to. These temporary credentials consist of
an access key ID, a secret access key, and a security token.
Typically, you use Assume Role
within your account or for
cross-account access.
The credentials are returned as a dictionary with data structure similar to the following JSON:
These credentials can be used to re-initialize services available in this library with the assumed role instead of the original role.
NOTE: For detailed information on the available arguments to this keyword, please see the Boto3 STS documentation.
Parameters
- role_arn β The Amazon Resource Name (ARN) of the role to assume.
- role_session_name β An identifier for the assumed role session.
- policy_arns β The Amazon Resource Names (ARNs) of the IAM managed policies that you want to use as managed session policies. The policies must exist in the same account as the role.
- policy β An IAM policy in JSON format that you want to use as an inline session policy.
- duration β The duration, in seconds, of the role session. The value specified can range from 900 seconds (15 minutes and the default) up to the maximum session duration set for the role.
- tags β A list of session tags that you want to pass. Each session tag consists of a key name and an associated value.
- transitive_tag_keys β A list of keys for session tags that you want to set as transitive. If you set a tag key as transitive, the corresponding key and value passes to subsequent sessions in a role chain.
- external_id β A unique identifier that might be required when you assume a role in another account. If the administrator of the account to which the role belongs provided you with an external ID, then provide that value in this parameter.
- serial_number β The identification number of the MFA device
that is associated with the user who is making the
using the
assume_role
keyword. - token_code β The value provided by the MFA device, if the trust policy of the role being assumed requires MFA.
- source_identity β The source identity specified by the
principal that is using the
assume_role
keyword.
clients*: dict* = {}
method convert_textract_response_to_model
Convert AWS Textract JSON response into TextractDocument object, which has following structure:
- Document
- Page
- Tables
- Rows
- Cells
- Lines
- Words
- Form
- Field
- Parameters: response β JSON response from AWS Textract service
- Returns: TextractDocument object
method create_bucket
Create S3 bucket with name
note This keyword accepts additional parameters in key=value format
More info on additional parameters.
- Parameters: bucket_name β name for the bucket
- Returns: boolean indicating status of operation
Robot Framework example:
method create_queue
Create queue with name
- Parameters: queue_name β [description], defaults to None
- Returns: create queue response as dict
method create_redshift_statement_parameters
Returns a formatted dictionary to be used in Redshift Data Api SQL statements.
Example:
Assume the ${SQL}
statement has the parameters :id
and
:name
:
method delete_bucket
Delete S3 bucket with name
- Parameters: bucket_name β name for the bucket
- Returns: boolean indicating status of operation
method delete_files
Delete files in the bucket
note This keyword accepts additional parameters in key=value format
More info on additional parameters.
Parameters
- bucket_name β name for the bucket
- files β list of files to delete
- Returns: number of files deleted or False
method delete_message
Delete message in the queue
- Parameters: receipt_handle β message handle to delete
- Returns: delete message response as dict
method delete_queue
Delete queue with name
- Parameters: queue_name β [description], defaults to None
- Returns: delete queue response as dict
method describe_redshift_table
Describes the detailed information about a table from metadata in the cluster. The information includes its columns.
If schema
and/or table
is not provided, the API searches
all schemas for the provided table, or returns all tables in the
schema or entire database.
The response object is provided as a list of table meta data objects,
utilize dot-notation or the RPA.JSON
library to access members:
Parameters
- database β The name of the database that contains the tables to be described. If ommitted, will use the connected Database.
- schema β The schema that contains the table. If no schema is specified, then matching tables for all schemas are returned.
- table β The table name. If no table is specified, then all tables for all matching schemas are returned. If no table and no schema is specified, then all tables for all schemas in the database are returned
method detect_document_text
Detects text in the input document.
Parameters
- image_file β filepath (or object name) of image file
- json_file β filepath to resulting json file
- bucket_name β if given then using image_file from the bucket
- Returns: analysis response in json
method detect_entities
Inspects text for named entities, and returns information about them
Parameters
- text β A UTF-8 text string. Each string must contain fewer that 5,000 bytes of UTF-8 encoded characters
- lang β language code of the text, defaults to βenβ
method detect_sentiment
Inspects text and returns an inference of the prevailing sentiment
Parameters
- text β A UTF-8 text string. Each string must contain fewer that 5,000 bytes of UTF-8 encoded characters
- lang β language code of the text, defaults to βenβ
method download_files
Download files from bucket to local filesystem
note This keyword accepts additional parameters in key=value format.
More info on additional parameters.
Parameters
- bucket_name β name for the bucket
- files β list of S3 object names
- target_directory β location for the downloaded files, default current directory
- Returns: number of files downloaded
method execute_redshift_statement
Runs an SQL statement, which can be data manipulation language (DML) or data definition language (DDL). This statement must be a single SQL statement.
SQL statements can be parameterized with named parameters through
the use of the parameters
argument. Parameters must be dictionaries
with the following two keys:
name
: The name of the parameter. In the SQL statement this will be referenced as:name
.value
: The value of the parameter. Amazon Redshift implicitly converts to the proper data type. For more information, see Data types in the Amazon Redshift Database Developer Guide.
For simplicity, a helper keyword, `Create redshift statement parameters`, is available and can be used more naturally in Robot Framework contexts.
If tabular data is returned, this keyword tries to return it as
a table (see RPA.Tables
), if RPA.Tables
is not available
in the keywordβs scope, the data will be returned as a list of dictionaries.
Other types of data (SQL errors and result statements) are returned
as strings.
NOTE: You may modify the max built-in wait time by providing a timeout in seconds (default 40 seconds)
Robot framework example:
Python example:
Parameters
- parameters β The parameters for the SQL statement. Must consist
of a list of dictionaries with two keys:
name
andvalue
. - sql β The SQL statement text to run.
- statement_name β The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with_event β A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
- timeout β Used to calculate the maximum wait. Exact timing depends on system variability becuase the underlying waiter does not utilize a timeout directly.
method execute_redshift_statement_asyncronously
Submit a sql statement for Redshift to execute asyncronously. Returns the statement ID which can be used to retrieve statement results later.
Parameters
- parameters β The parameters for the SQL statement. Must consist
of a list of dictionaries with two keys:
name
andvalue
. - sql β The SQL statement text to run.
- statement_name β The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
- with_event β A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.
method generate_presigned_url
Generate presigned URL for the file.
Parameters
- bucket_name β name for the bucket
- object_name β name of the file in the bucket
- expires_in β optional expiration time for the url (in seconds). The default expiration time is 3600 seconds (one hour).
- extra_params β allows setting any extra Params
- Returns: URL for accessing the file
method get_cells
Get parsed cells from the response
- Returns: cells
method get_document_analysis
Get the results of Textract asynchronous Document Analysis operation
Parameters
- job_id β job identifier, defaults to None
- max_results β number of blocks to get at a time, defaults to 1000
- next_token β pagination token for getting next set of results, defaults to None
- collect_all_results β when set to True will wait until analysis is complete and returns all blocks of the analysis result, by default (False) the all blocks need to be specifically collected using next_token variable
- Returns: dictionary
Response dictionary has key JobStatus with value SUCCEEDED when analysis has been completed.
method get_document_text_detection
Get the results of Textract asynchronous Document Text Detection operation
Parameters
- job_id β job identifier, defaults to None
- max_results β number of blocks to get at a time, defaults to 1000
- next_token β pagination token for getting next set of results, defaults to None
- collect_all_results β when set to True will wait until analysis is complete and returns all blocks of the analysis result, by default (False) the all blocks need to be specifically collected using next_token variable
- Returns: dictionary
Response dictionary has key JobStatus with value SUCCEEDED when analysis has been completed.
method get_pages_and_text
Get pages and text out of Textract response json
- Parameters: textract_response β JSON from Textract
- Returns: dictionary, page numbers as keys and value is a list of text lines
method get_redshift_statement_results
Retrieve the results of a SQL statement previously submitted to Redshift. If that statement has not yet completed, this keyword will wait for results. See `Execute Redshift Statement` for additional information.
If the statement has tabular results, this keyword returns them
as a table from RPA.Tables
if that library is available, or
as a list of dictionaries if not. If the statement does not have
tabular results, it will return the number of rows affected.
Parameters
- statement_id β The statement id to use to retreive results.
- timeout β An integer used to calculate the maximum wait. Exact timing depends on system variability becuase the underlying waiter does not utilize a timeout directly. Defaults to 40.
method get_tables
Get parsed tables from the response
Returns RPA.Tables.Table if possible otherwise returns an dictionary.
- Returns: tables
method get_words
Get parsed words from the response
- Returns: words
method init_comprehend_client
Initialize AWS Comprehend client
Parameters
- aws_key_id β access key ID
- aws_key β secret access key
- region β AWS region
- use_robocorp_vault β use secret stored in Robocorp Vault
- session_token β a session token associated with temporary
credentials, such as from
Assume Role
.
method init_redshift_data_client
Initialize AWS Redshift Data API client
Parameters
- aws_key_id β access key ID
- aws_key β secret access key
- region β AWS region
- cluster_identifier β The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.
- database β The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.
- database_user β The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.
- secret_arn β The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.
- use_robocorp_vault β use secret stored in
Robocorp Vault
- session_token β a session token associated with temporary
credentials, such as from
Assume Role
.
method init_s3_client
Initialize AWS S3 client
Parameters
- aws_key_id β access key ID
- aws_key β secret access key
- region β AWS region
- use_robocorp_vault β use secret stored in Robocorp Vault
- session_token β a session token associated with temporary
credentials, such as from
Assume Role
.
method init_sqs_client
Initialize AWS SQS client
Parameters
- aws_key_id β access key ID
- aws_key β secret access key
- region β AWS region
- queue_url β SQS queue url
- use_robocorp_vault β use secret stored into Robocorp Vault
- session_token β a session token associated with temporary
credentials, such as from
Assume Role
.
method init_sts_client
Initialize AWS STS client.
Parameters
- aws_key_id β access key ID
- aws_key β secret access key
- region β AWS region
- use_robocorp_vault β use secret stored in Robocorp Vault
- session_token β a session token associated with temporary
credentials, such as from
Assume Role
.
method init_textract_client
Initialize AWS Textract client
Parameters
- aws_key_id β access key ID
- aws_key β secret access key
- region β AWS region
- use_robocorp_vault β use secret stored in Robocorp Vault
- session_token β a session token associated with temporary
credentials, such as from
Assume Role
.
method list_buckets
List all buckets for this account
- Returns: list of buckets
method list_files
List files in the bucket
note This keyword accepts additional parameters in key=value format
More info on additional parameters.
Parameters
- bucket_name β name for the bucket
- limit β limits the response to maximum number of items
- search β JMESPATH expression to filter objects
- prefix β limits the response to keys that begin with the specified prefix
- kwargs β allows setting all extra parameters for list_objects_v2 method
- Returns: list of files
Python examples
Robot Framework examples
method list_redshift_databases
List the databases in a cluster.
Database names are returned as a list of strings.
method list_redshift_schemas
Lists the schemas in a database.
Schema names are returned as a list of strings.
Parameters
- database β The name of the database that contains the schemas to list. If ommitted, will use the connected Database.
- schema_pattern β A pattern to filter results by schema name.
Within a schema pattern, β%β means match any substring of 0
or more characters and β_β means match any one character.
Only schema name entries matching the search pattern are returned.
If
schema_pattern
is not specified, then all schemas are returned.
method list_redshift_tables
List the tables in a database. If neither schema_pattern
nor
table_pattern
are specified, then all tables in the database
are returned.
Returned objects are structured like the below JSON in a list:
Parameters
- database β The name of the database that contains the tables to be described. If ommitted, will use the connected Database.
- schema_pattern β A pattern to filter results by schema name.
Within a schema pattern, β%β means match any substring of 0
or more characters and β_β means match any one character.
Only schema name entries matching the search pattern are returned.
If
schema_pattern
is not specified, then all tables that matchtable_pattern
are returned. If neitherschema_pattern
ortable_pattern
are specified, then all tables are returned. - table_pattern β A pattern to filter results by table name.
Within a table pattern, β%β means match any substring of 0 or
more characters and β_β means match any one character. Only
table name entries matching the search pattern are returned.
If
table_pattern
is not specified, then all tables that matchschema_pattern
are returned. If neitherschema_pattern
ortable_pattern
are specified, then all tables are returned.
variable logger
method receive_message
Receive message from queue
- Returns: message as dict
region*: Optional[str]* = None
robocorp_vault_name*: Optional[str]* = None
method send_message
Send message to the queue
Parameters
- message β body of the message
- message_attributes β attributes of the message
- Returns: send message response as dict
services*: list* = []
method set_robocorp_vault
Set Robocorp Vault name
- Parameters: vault_name β Robocorp Vault name
method start_document_analysis
Starts the asynchronous analysis of an input document for relationships between detected items such as key-value pairs, tables, and selection elements.
Parameters
- bucket_name_in β name of the S3 bucket for the input object, defaults to None
- object_name_in β name of the input object, defaults to None
- object_version_in β version of the input object, defaults to None
- bucket_name_out β name of the S3 bucket where to save analysis result object, defaults to None
- prefix_object_out β name of the S3 bucket for the analysis result object,
- Returns: job identifier
Input object can be in JPEG, PNG or PDF format. Documents should be located in the Amazon S3 bucket.
By default Amazon Textract will save the analysis result internally
to be accessed by keyword Get Document Analysis
. This can
be overridden by giving parameter bucket_name_out
.
method start_document_text_detection
Starts the asynchronous detection of text in a document. Amazon Textract can detect lines of text and the words that make up a line of text.
Parameters
- bucket_name_in β name of the S3 bucket for the input object, defaults to None
- object_name_in β name of the input object, defaults to None
- object_version_in β version of the input object, defaults to None
- bucket_name_out β name of the S3 bucket where to save analysis result object, defaults to None
- prefix_object_out β name of the S3 bucket for the analysis result object,
- Returns: job identifier
Input object can be in JPEG, PNG or PDF format. Documents should be located in the Amazon S3 bucket.
By default Amazon Textract will save the analysis result internally
to be accessed by keyword Get Document Text Detection
. This can
be overridden by giving parameter bucket_name_out
.
method upload_file
Upload single file into bucket
Parameters
- bucket_name β name for the bucket
- filename β filepath for the file to be uploaded
- object_name β name of the object in the bucket, defaults to None
- Returns: tuple of upload status and error
If object_name is not given then basename of the file is used as object_name.
note This keyword accepts additional parameters in key=value format (see below code example).
More info on additional parameters.
Robot Framework example:
method upload_files
Upload multiple files into bucket
Parameters
- bucket_name β name for the bucket
- files β list of files (2 possible ways, see above)
- Returns: number of files uploaded
Giving files as list of filepaths: : [β/path/to/file1.txtβ, β/path/to/file2.txtβ]
Giving files as list of dictionaries (including filepath and object name): : [{βfilenameβ:β/path/to/file1.txtβ, βobject_nameβ: βfile1.txtβ}, {βfilenameβ: β/path/to/file2.txtβ, βobject_nameβ: βfile2.txtβ}]
note This keyword accepts additional parameters in key=value format (see below code example).
More info on additional parameters.
Python example (passing ExtraArgs):