Class: Aws::GroundStation::Types::S3Object
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::S3Object
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Object stored in S3 containing ephemeris data.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
An Amazon S3 Bucket name.
-
#key ⇒ String
An Amazon S3 key for the ephemeris.
-
#version ⇒ String
For versioned S3 objects, the version to use for the ephemeris.
Instance Attribute Details
#bucket ⇒ String
An Amazon S3 Bucket name.
2458 2459 2460 2461 2462 2463 2464 |
# File 'lib/aws-sdk-groundstation/types.rb', line 2458 class S3Object < Struct.new( :bucket, :key, :version) SENSITIVE = [] include Aws::Structure end |