Class: Aws::QuickSight::Types::ManifestFileLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ManifestFileLocation
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass ManifestFileLocation data as a hash:
{
bucket: "S3Bucket", # required
key: "S3Key", # required
}
Amazon S3 manifest file location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
Amazon S3 bucket.
-
#key ⇒ String
Amazon S3 key that identifies an object.
Instance Attribute Details
#bucket ⇒ String
Amazon S3 bucket.
9605 9606 9607 9608 9609 9610 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9605 class ManifestFileLocation < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
Amazon S3 key that identifies an object.
9605 9606 9607 9608 9609 9610 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 9605 class ManifestFileLocation < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |