Class: Aws::ApplicationDiscoveryService::Types::ExportPreferences
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationDiscoveryService::Types::ExportPreferences
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-applicationdiscoveryservice/types.rb
Overview
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.
[1]: docs.aws.amazon.com/application-discovery/latest/APIReference/API_StartExportTask.html
Direct Known Subclasses
Defined Under Namespace
Classes: Ec2RecommendationsPreferences, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#ec2_recommendations_preferences ⇒ Types::Ec2RecommendationsExportPreferences
If enabled, exported data includes EC2 instance type matches for on-premises servers discovered through Amazon Web Services Application Discovery Service.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#ec2_recommendations_preferences ⇒ Types::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 '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
1304 1305 1306 |
# File 'lib/aws-sdk-applicationdiscoveryservice/types.rb', line 1304 def unknown @unknown end |