Class: Aws::SimSpaceWeaver::Types::S3Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimSpaceWeaver::Types::S3Destination
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simspaceweaver/types.rb
Overview
An Amazon S3 bucket and optional folder (object key prefix) where SimSpace Weaver creates a file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of an Amazon S3 bucket.
-
#object_key_prefix ⇒ String
A string prefix for an Amazon S3 object key.
Instance Attribute Details
#bucket_name ⇒ String
The name of an Amazon S3 bucket. For more information about buckets, see [Creating, configuring, and working with Amazon S3 buckets] in the *Amazon Simple Storage Service User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/creating-buckets-s3.html
639 640 641 642 643 644 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 639 class S3Destination < Struct.new( :bucket_name, :object_key_prefix) SENSITIVE = [] include Aws::Structure end |
#object_key_prefix ⇒ String
A string prefix for an Amazon S3 object key. It’s usually a folder name. For more information about folders in Amazon S3, see
- Organizing objects in the Amazon S3 console using folders][1
-
in
the *Amazon Simple Storage Service User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/using-folders.html
639 640 641 642 643 644 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 639 class S3Destination < Struct.new( :bucket_name, :object_key_prefix) SENSITIVE = [] include Aws::Structure end |