Class: Aws::IoTSiteWise::Types::ErrorReportLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ErrorReportLocation
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
The Amazon S3 destination where errors associated with the job creation request are saved.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the Amazon S3 bucket to which errors associated with the bulk import job are sent.
-
#prefix ⇒ String
Amazon S3 uses the prefix as a folder name to organize data in the bucket.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket to which errors associated with the bulk import job are sent.
5627 5628 5629 5630 5631 5632 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5627 class ErrorReportLocation < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
Amazon S3 uses the prefix as a folder name to organize data in the bucket. Each Amazon S3 object has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/). For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.
5627 5628 5629 5630 5631 5632 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 5627 class ErrorReportLocation < Struct.new( :bucket, :prefix) SENSITIVE = [] include Aws::Structure end |