Class: Aws::ApplicationDiscoveryService::Types::ExportPreferences

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb

Overview

Note:

ExportPreferences is a union - when making an API calls you must set exactly one of the members.

Indicates the type of data that is being exported. Only one ExportPreferences can be enabled for a StartExportTask action.

Direct Known Subclasses

Ec2RecommendationsPreferences, Unknown

Defined Under Namespace

Classes: Ec2RecommendationsPreferences, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ec2_recommendations_preferencesTypes::Ec2RecommendationsExportPreferences

If enabled, exported data includes EC2 instance type matches for on-premises servers discovered through Amazon Web Services Application Discovery Service.



1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1304

class ExportPreferences < Struct.new(
  :ec2_recommendations_preferences,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Ec2RecommendationsPreferences < ExportPreferences; end
  class Unknown < ExportPreferences; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1304
1305
1306
# File 'gems/aws-sdk-applicationdiscoveryservice/lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1304

def unknown
  @unknown
end