Class: Aws::BackupSearch::Types::ExportSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::BackupSearch::Types::ExportSpecification
- Defined in:
- gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb
Overview
Note:
ExportSpecification is a union - when making an API calls you must set exactly one of the members.
Note:
ExportSpecification is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ExportSpecification corresponding to the set member.
This contains the export specification object.
Direct Known Subclasses
Defined Under Namespace
Classes: S3ExportSpecification, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_export_specification ⇒ Types::S3ExportSpecification
This specifies the destination Amazon S3 bucket for the export job.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3_export_specification ⇒ Types::S3ExportSpecification
This specifies the destination Amazon S3 bucket for the export job. And, if included, it also specifies the destination prefix.
283 284 285 286 287 288 289 290 291 292 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 283 class ExportSpecification < Struct.new( :s3_export_specification, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3ExportSpecification < ExportSpecification; end class Unknown < ExportSpecification; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
283 284 285 |
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 283 def unknown @unknown end |