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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-simspaceweaver/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 .

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.

Returns:

  • (String)


678
679
680
681
682
683
# File 'gems/aws-sdk-simspaceweaver/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.

Returns:

  • (String)


678
679
680
681
682
683
# File 'gems/aws-sdk-simspaceweaver/lib/aws-sdk-simspaceweaver/types.rb', line 678

class S3Location < Struct.new(
  :bucket_name,
  :object_key)
  SENSITIVE = []
  include Aws::Structure
end