/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace MigrationHub { namespace Model { /** */ class AssociateCreatedArtifactRequest : public MigrationHubRequest { public: AWS_MIGRATIONHUB_API AssociateCreatedArtifactRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "AssociateCreatedArtifact"; } AWS_MIGRATIONHUB_API Aws::String SerializePayload() const override; AWS_MIGRATIONHUB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the ProgressUpdateStream.

*/ inline const Aws::String& GetProgressUpdateStream() const{ return m_progressUpdateStream; } /** *

The name of the ProgressUpdateStream.

*/ inline bool ProgressUpdateStreamHasBeenSet() const { return m_progressUpdateStreamHasBeenSet; } /** *

The name of the ProgressUpdateStream.

*/ inline void SetProgressUpdateStream(const Aws::String& value) { m_progressUpdateStreamHasBeenSet = true; m_progressUpdateStream = value; } /** *

The name of the ProgressUpdateStream.

*/ inline void SetProgressUpdateStream(Aws::String&& value) { m_progressUpdateStreamHasBeenSet = true; m_progressUpdateStream = std::move(value); } /** *

The name of the ProgressUpdateStream.

*/ inline void SetProgressUpdateStream(const char* value) { m_progressUpdateStreamHasBeenSet = true; m_progressUpdateStream.assign(value); } /** *

The name of the ProgressUpdateStream.

*/ inline AssociateCreatedArtifactRequest& WithProgressUpdateStream(const Aws::String& value) { SetProgressUpdateStream(value); return *this;} /** *

The name of the ProgressUpdateStream.

*/ inline AssociateCreatedArtifactRequest& WithProgressUpdateStream(Aws::String&& value) { SetProgressUpdateStream(std::move(value)); return *this;} /** *

The name of the ProgressUpdateStream.

*/ inline AssociateCreatedArtifactRequest& WithProgressUpdateStream(const char* value) { SetProgressUpdateStream(value); return *this;} /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline const Aws::String& GetMigrationTaskName() const{ return m_migrationTaskName; } /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline bool MigrationTaskNameHasBeenSet() const { return m_migrationTaskNameHasBeenSet; } /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline void SetMigrationTaskName(const Aws::String& value) { m_migrationTaskNameHasBeenSet = true; m_migrationTaskName = value; } /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline void SetMigrationTaskName(Aws::String&& value) { m_migrationTaskNameHasBeenSet = true; m_migrationTaskName = std::move(value); } /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline void SetMigrationTaskName(const char* value) { m_migrationTaskNameHasBeenSet = true; m_migrationTaskName.assign(value); } /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline AssociateCreatedArtifactRequest& WithMigrationTaskName(const Aws::String& value) { SetMigrationTaskName(value); return *this;} /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline AssociateCreatedArtifactRequest& WithMigrationTaskName(Aws::String&& value) { SetMigrationTaskName(std::move(value)); return *this;} /** *

Unique identifier that references the migration task. Do not store * personal data in this field.

*/ inline AssociateCreatedArtifactRequest& WithMigrationTaskName(const char* value) { SetMigrationTaskName(value); return *this;} /** *

An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, * RDS instance, etc.)

*/ inline const CreatedArtifact& GetCreatedArtifact() const{ return m_createdArtifact; } /** *

An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, * RDS instance, etc.)

*/ inline bool CreatedArtifactHasBeenSet() const { return m_createdArtifactHasBeenSet; } /** *

An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, * RDS instance, etc.)

*/ inline void SetCreatedArtifact(const CreatedArtifact& value) { m_createdArtifactHasBeenSet = true; m_createdArtifact = value; } /** *

An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, * RDS instance, etc.)

*/ inline void SetCreatedArtifact(CreatedArtifact&& value) { m_createdArtifactHasBeenSet = true; m_createdArtifact = std::move(value); } /** *

An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, * RDS instance, etc.)

*/ inline AssociateCreatedArtifactRequest& WithCreatedArtifact(const CreatedArtifact& value) { SetCreatedArtifact(value); return *this;} /** *

An ARN of the AWS resource related to the migration (e.g., AMI, EC2 instance, * RDS instance, etc.)

*/ inline AssociateCreatedArtifactRequest& WithCreatedArtifact(CreatedArtifact&& value) { SetCreatedArtifact(std::move(value)); return *this;} /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline bool GetDryRun() const{ return m_dryRun; } /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; } /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; } /** *

Optional boolean flag to indicate whether any effect should take place. Used * to test if the caller has permission to make the call.

*/ inline AssociateCreatedArtifactRequest& WithDryRun(bool value) { SetDryRun(value); return *this;} private: Aws::String m_progressUpdateStream; bool m_progressUpdateStreamHasBeenSet = false; Aws::String m_migrationTaskName; bool m_migrationTaskNameHasBeenSet = false; CreatedArtifact m_createdArtifact; bool m_createdArtifactHasBeenSet = false; bool m_dryRun; bool m_dryRunHasBeenSet = false; }; } // namespace Model } // namespace MigrationHub } // namespace Aws