Class: Aws::SimSpaceWeaver::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimSpaceWeaver::Types::S3Location
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simspaceweaver/types.rb
Overview
A location in Amazon Simple Storage Service (Amazon S3) where SimSpace Weaver stores simulation data, such as your app .zip files and schema file. For more information about Amazon S3, see the [ *Amazon Simple Storage Service User Guide* ][1].
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/Welcome.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
The name of an Amazon S3 bucket.
-
#object_key ⇒ String
The key name of an object in Amazon S3.
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
678 679 680 681 682 683 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 678 class S3Location < Struct.new( :bucket_name, :object_key) SENSITIVE = [] include Aws::Structure end |
#object_key ⇒ String
The key name of an object in Amazon S3. For more information about Amazon S3 objects and object keys, see [Uploading, downloading, and working with objects in Amazon S3] in the *Amazon Simple Storage Service User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/uploading-downloading-objects.html
678 679 680 681 682 683 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 678 class S3Location < Struct.new( :bucket_name, :object_key) SENSITIVE = [] include Aws::Structure end |