Class: Aws::BackupSearch::Types::ExportSpecification

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

S3ExportSpecification, Unknown

Defined Under Namespace

Classes: S3ExportSpecification, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_export_specificationTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



283
284
285
# File 'gems/aws-sdk-backupsearch/lib/aws-sdk-backupsearch/types.rb', line 283

def unknown
  @unknown
end