Class: Aws::MigrationHub::Types::AssociateDiscoveredResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHub::Types::AssociateDiscoveredResourceRequest
- Defined in:
- gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb
Overview
Note:
When making an API call, you may pass AssociateDiscoveredResourceRequest data as a hash:
{
progress_update_stream: "ProgressUpdateStream", # required
migration_task_name: "MigrationTaskName", # required
discovered_resource: { # required
configuration_id: "ConfigurationId", # required
description: "DiscoveredResourceDescription",
},
dry_run: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#discovered_resource ⇒ Types::DiscoveredResource
Object representing a Resource.
-
#dry_run ⇒ Boolean
Optional boolean flag to indicate whether any effect should take place.
-
#migration_task_name ⇒ String
The identifier given to the MigrationTask.
-
#progress_update_stream ⇒ String
The name of the ProgressUpdateStream.
Instance Attribute Details
#discovered_resource ⇒ Types::DiscoveredResource
Object representing a Resource.
133 134 135 136 137 138 139 140 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 133 class AssociateDiscoveredResourceRequest < Struct.new( :progress_update_stream, :migration_task_name, :discovered_resource, :dry_run) SENSITIVE = [] include Aws::Structure end |
#dry_run ⇒ Boolean
Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.
133 134 135 136 137 138 139 140 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 133 class AssociateDiscoveredResourceRequest < Struct.new( :progress_update_stream, :migration_task_name, :discovered_resource, :dry_run) SENSITIVE = [] include Aws::Structure end |
#migration_task_name ⇒ String
The identifier given to the MigrationTask. Do not store personal data in this field.
133 134 135 136 137 138 139 140 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 133 class AssociateDiscoveredResourceRequest < Struct.new( :progress_update_stream, :migration_task_name, :discovered_resource, :dry_run) SENSITIVE = [] include Aws::Structure end |
#progress_update_stream ⇒ String
The name of the ProgressUpdateStream.
133 134 135 136 137 138 139 140 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 133 class AssociateDiscoveredResourceRequest < Struct.new( :progress_update_stream, :migration_task_name, :discovered_resource, :dry_run) SENSITIVE = [] include Aws::Structure end |