Class: Aws::NovaAct::Types::WorkflowExportConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::NovaAct::Types::WorkflowExportConfig
- Defined in:
- gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb
Overview
Configuration settings for exporting workflow execution data and logs to Amazon Simple Storage Service (Amazon S3).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket_name ⇒ String
The name of your Amazon S3 bucket, that Nova Act uses to export your workflow data.
-
#s3_key_prefix ⇒ String
An optional prefix for Amazon S3 object keys to organize exported data.
Instance Attribute Details
#s3_bucket_name ⇒ String
The name of your Amazon S3 bucket, that Nova Act uses to export your workflow data. Note that the IAM role used to access Nova Act must also have write permissions to this bucket.
1284 1285 1286 1287 1288 1289 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 1284 class WorkflowExportConfig < Struct.new( :s3_bucket_name, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_key_prefix ⇒ String
An optional prefix for Amazon S3 object keys to organize exported data.
1284 1285 1286 1287 1288 1289 |
# File 'gems/aws-sdk-novaact/lib/aws-sdk-novaact/types.rb', line 1284 class WorkflowExportConfig < Struct.new( :s3_bucket_name, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |