Class: Aws::S3Control::Types::JobManifestGenerator
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::JobManifestGenerator
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
JobManifestGenerator is a union - when making an API calls you must set exactly one of the members.
Note:
JobManifestGenerator is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of JobManifestGenerator corresponding to the set member.
Configures the type of the job's ManifestGenerator.
Direct Known Subclasses
Defined Under Namespace
Classes: S3JobManifestGenerator, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_job_manifest_generator ⇒ Types::S3JobManifestGenerator
The S3 job ManifestGenerator's configuration details.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3_job_manifest_generator ⇒ Types::S3JobManifestGenerator
The S3 job ManifestGenerator's configuration details.
2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 2532 class JobManifestGenerator < Struct.new( :s3_job_manifest_generator, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3JobManifestGenerator < JobManifestGenerator; end class Unknown < JobManifestGenerator; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2532 2533 2534 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 2532 def unknown @unknown end |