This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-appmesh/include/aws/appmesh/model/AwsCloudMapInstanceAttribute.h

183 lines
5.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/appmesh/AppMesh_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace AppMesh
{
namespace Model
{
/**
* <p>An object that represents the AWS Cloud Map attribute information for your
* virtual
node.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/AwsCloudMapInstanceAttribute">AWS
* API Reference</a></p>
*/
class AWS_APPMESH_API AwsCloudMapInstanceAttribute
{
public:
AwsCloudMapInstanceAttribute();
AwsCloudMapInstanceAttribute(Aws::Utils::Json::JsonView jsonValue);
AwsCloudMapInstanceAttribute& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline const Aws::String& GetKey() const{ return m_key; }
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithKey(const Aws::String& value) { SetKey(value); return *this;}
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
/**
* <p>The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithKey(const char* value) { SetKey(value); return *this;}
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline const Aws::String& GetValue() const{ return m_value; }
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithValue(const Aws::String& value) { SetValue(value); return *this;}
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
/**
* <p>The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud
* Map service
instance that contains the specified key and value is
* returned.</p>
*/
inline AwsCloudMapInstanceAttribute& WithValue(const char* value) { SetValue(value); return *this;}
private:
Aws::String m_key;
bool m_keyHasBeenSet;
Aws::String m_value;
bool m_valueHasBeenSet;
};
} // namespace Model
} // namespace AppMesh
} // namespace Aws