/** * 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 DescribeExportRequest : public DynamoDBRequest { public: AWS_DYNAMODB_API DescribeExportRequest(); // 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 "DescribeExport"; } 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 export.

*/ inline const Aws::String& GetExportArn() const{ return m_exportArn; } /** *

The Amazon Resource Name (ARN) associated with the export.

*/ inline bool ExportArnHasBeenSet() const { return m_exportArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) associated with the export.

*/ inline void SetExportArn(const Aws::String& value) { m_exportArnHasBeenSet = true; m_exportArn = value; } /** *

The Amazon Resource Name (ARN) associated with the export.

*/ inline void SetExportArn(Aws::String&& value) { m_exportArnHasBeenSet = true; m_exportArn = std::move(value); } /** *

The Amazon Resource Name (ARN) associated with the export.

*/ inline void SetExportArn(const char* value) { m_exportArnHasBeenSet = true; m_exportArn.assign(value); } /** *

The Amazon Resource Name (ARN) associated with the export.

*/ inline DescribeExportRequest& WithExportArn(const Aws::String& value) { SetExportArn(value); return *this;} /** *

The Amazon Resource Name (ARN) associated with the export.

*/ inline DescribeExportRequest& WithExportArn(Aws::String&& value) { SetExportArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) associated with the export.

*/ inline DescribeExportRequest& WithExportArn(const char* value) { SetExportArn(value); return *this;} private: Aws::String m_exportArn; bool m_exportArnHasBeenSet = false; }; } // namespace Model } // namespace DynamoDB } // namespace Aws