Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinAV authored Oct 30, 2024
1 parent 05c29c1 commit 0fadcc8
Showing 1 changed file with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -833,15 +833,25 @@ section, multiple parameters can be provided.
- _**aws_region**_ represents the geographic area where the AWS infrastructure is located.
- _**aws_s3_bucket_name**_ represents the name of the AWS S3 bucket.
- _**aws_s3_object_key**_ represents the name of the object (file) that needs to be read or written.
- _**aws_s3_client_parameters**_ represents additional parameters for advanced use cases to be passed to the Amazon Web Services (AWS) S3 client. Each parameter key must match the name of a parameter of the [`boto3.session.Session.client` API](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/core/session.html#boto3.session.Session.client).
- _**aws_s3_get_object_parameters**_ represents additional parameters to be passed to the Amazon Web Services (AWS) S3 client get function for advanced reading use cases. Each parameter key must match the name of a parameter of the [`boto3.client.get_object` API](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/get_object.html).
- _**aws_s3_put_object_parameters**_ represents additional parameters to be passed to the Amazon Web Services (AWS) S3 client put function for advanced writing use cases. Each parameter key must match the name of a parameter of the [`boto3.client.put_object` API](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/put_object.html).
- _**aws_s3_client_parameters**_ represents additional parameters for advanced use cases to be
passed to the Amazon Web Services (AWS) S3 client. Each parameter key must match the name of a
parameter of the
[`boto3.session.Session.client` API](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/core/session.html#boto3.session.Session.client).
- _**aws_s3_get_object_parameters**_ represents additional parameters to be passed to the Amazon
Web Services (AWS) S3 client get function for advanced reading use cases. Each parameter key
must match the name of a parameter of the
[`boto3.client.get_object` API](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/get_object.html).
- _**aws_s3_put_object_parameters**_ represents additional parameters to be passed to the Amazon
Web Services (AWS) S3 client put function for advanced writing use cases. Each parameter key
must match the name of a parameter of the
[`boto3.client.put_object` API](https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3/client/put_object.html).

In this example, we configure an *s3_object* data node with the id "my_s3_object":

- Its scope is the default value `SCENARIO`.
- The object_key name is "taipy_object".
- An additional argument is passed for configuring the AWS S3 client and setting cache control during object operations.
- An additional argument is passed for configuring the AWS S3 client and setting cache control
during object operations.

```python linenums="1"
{%
Expand Down

0 comments on commit 0fadcc8

Please sign in to comment.