Class: Aws::SimSpaceWeaver::Types::S3Location

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#bucket_nameString

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

Returns:

  • (String)


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_keyString

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

Returns:

  • (String)


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