Class: Aws::MigrationHub::Types::AssociateCreatedArtifactRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHub::Types::AssociateCreatedArtifactRequest
- Defined in:
- gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb
Overview
Note:
When making an API call, you may pass AssociateCreatedArtifactRequest data as a hash:
{
progress_update_stream: "ProgressUpdateStream", # required
migration_task_name: "MigrationTaskName", # required
created_artifact: { # required
name: "CreatedArtifactName", # required
description: "CreatedArtifactDescription",
},
dry_run: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_artifact ⇒ Types::CreatedArtifact
An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, RDS instance, etc.).
-
#dry_run ⇒ Boolean
Optional boolean flag to indicate whether any effect should take place.
-
#migration_task_name ⇒ String
Unique identifier that references the migration task.
-
#progress_update_stream ⇒ String
The name of the ProgressUpdateStream.
Instance Attribute Details
#created_artifact ⇒ Types::CreatedArtifact
An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, RDS instance, etc.)
87 88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 87 class AssociateCreatedArtifactRequest < Struct.new( :progress_update_stream, :migration_task_name, :created_artifact, :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.
87 88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 87 class AssociateCreatedArtifactRequest < Struct.new( :progress_update_stream, :migration_task_name, :created_artifact, :dry_run) SENSITIVE = [] include Aws::Structure end |
#migration_task_name ⇒ String
Unique identifier that references the migration task. Do not store personal data in this field.
87 88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 87 class AssociateCreatedArtifactRequest < Struct.new( :progress_update_stream, :migration_task_name, :created_artifact, :dry_run) SENSITIVE = [] include Aws::Structure end |
#progress_update_stream ⇒ String
The name of the ProgressUpdateStream.
87 88 89 90 91 92 93 94 |
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 87 class AssociateCreatedArtifactRequest < Struct.new( :progress_update_stream, :migration_task_name, :created_artifact, :dry_run) SENSITIVE = [] include Aws::Structure end |