Class: Aws::NovaAct::Types::WorkflowExportConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#s3_bucket_nameString

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.

Returns:

  • (String)


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_prefixString

An optional prefix for Amazon S3 object keys to organize exported data.

Returns:

  • (String)


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