/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The operation tried to access a keyspace or table that doesn't exist. The
* resource might not be specified correctly, or its status might not be
* ACTIVE
.See Also:
AWS
* API Reference
The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline const Aws::String& GetResourceArn() const{ return m_resourceArn; } /** *The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; } /** *The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; } /** *The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); } /** *The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); } /** *The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline ResourceNotFoundException& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;} /** *The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline ResourceNotFoundException& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;} /** *The unique identifier in the format of Amazon Resource Name (ARN), for the * resource not found.
*/ inline ResourceNotFoundException& WithResourceArn(const char* value) { SetResourceArn(value); return *this;} private: Aws::String m_message; bool m_messageHasBeenSet = false; Aws::String m_resourceArn; bool m_resourceArnHasBeenSet = false; }; } // namespace Model } // namespace Keyspaces } // namespace Aws