Class: Aws::QuickSight::Types::S3Parameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::S3Parameters
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass S3Parameters data as a hash:
{
manifest_file_location: { # required
bucket: "S3Bucket", # required
key: "S3Key", # required
},
}
The parameters for S3.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#manifest_file_location ⇒ Types::ManifestFileLocation
Location of the Amazon S3 manifest file.
Instance Attribute Details
#manifest_file_location ⇒ Types::ManifestFileLocation
Location of the Amazon S3 manifest file. This is NULL if the manifest file was uploaded into Amazon QuickSight.
11336 11337 11338 11339 11340 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 11336 class S3Parameters < Struct.new( :manifest_file_location) SENSITIVE = [] include Aws::Structure end |