/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace DynamoDB { namespace Model { /** */ class DescribeImportRequest : public DynamoDBRequest { public: AWS_DYNAMODB_API DescribeImportRequest(); // 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 "DescribeImport"; } AWS_DYNAMODB_API Aws::String SerializePayload() const override; AWS_DYNAMODB_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline const Aws::String& GetImportArn() const{ return m_importArn; } /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline bool ImportArnHasBeenSet() const { return m_importArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline void SetImportArn(const Aws::String& value) { m_importArnHasBeenSet = true; m_importArn = value; } /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline void SetImportArn(Aws::String&& value) { m_importArnHasBeenSet = true; m_importArn = std::move(value); } /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline void SetImportArn(const char* value) { m_importArnHasBeenSet = true; m_importArn.assign(value); } /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline DescribeImportRequest& WithImportArn(const Aws::String& value) { SetImportArn(value); return *this;} /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline DescribeImportRequest& WithImportArn(Aws::String&& value) { SetImportArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) associated with the table you're importing * to.

*/ inline DescribeImportRequest& WithImportArn(const char* value) { SetImportArn(value); return *this;} private: Aws::String m_importArn; bool m_importArnHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws