/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AppMesh { namespace Model { /** *

An object that represents the AWS Cloud Map service discovery information for * your virtual node.

See Also:

AWS * API Reference

*/ class AWS_APPMESH_API AwsCloudMapServiceDiscovery { public: AwsCloudMapServiceDiscovery(); AwsCloudMapServiceDiscovery(Aws::Utils::Json::JsonView jsonValue); AwsCloudMapServiceDiscovery& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline const Aws::Vector& GetAttributes() const{ return m_attributes; } /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; } /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline void SetAttributes(const Aws::Vector& value) { m_attributesHasBeenSet = true; m_attributes = value; } /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline void SetAttributes(Aws::Vector&& value) { m_attributesHasBeenSet = true; m_attributes = std::move(value); } /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline AwsCloudMapServiceDiscovery& WithAttributes(const Aws::Vector& value) { SetAttributes(value); return *this;} /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline AwsCloudMapServiceDiscovery& WithAttributes(Aws::Vector&& value) { SetAttributes(std::move(value)); return *this;} /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline AwsCloudMapServiceDiscovery& AddAttributes(const AwsCloudMapInstanceAttribute& value) { m_attributesHasBeenSet = true; m_attributes.push_back(value); return *this; } /** *

A string map that contains attributes with values that you can use to filter * instances by any custom attribute that you specified when you * registered the instance. Only instances that match all of the specified * key/value pairs will be returned.

*/ inline AwsCloudMapServiceDiscovery& AddAttributes(AwsCloudMapInstanceAttribute&& value) { m_attributesHasBeenSet = true; m_attributes.push_back(std::move(value)); return *this; } /** *

The name of the AWS Cloud Map namespace to use.

*/ inline const Aws::String& GetNamespaceName() const{ return m_namespaceName; } /** *

The name of the AWS Cloud Map namespace to use.

*/ inline bool NamespaceNameHasBeenSet() const { return m_namespaceNameHasBeenSet; } /** *

The name of the AWS Cloud Map namespace to use.

*/ inline void SetNamespaceName(const Aws::String& value) { m_namespaceNameHasBeenSet = true; m_namespaceName = value; } /** *

The name of the AWS Cloud Map namespace to use.

*/ inline void SetNamespaceName(Aws::String&& value) { m_namespaceNameHasBeenSet = true; m_namespaceName = std::move(value); } /** *

The name of the AWS Cloud Map namespace to use.

*/ inline void SetNamespaceName(const char* value) { m_namespaceNameHasBeenSet = true; m_namespaceName.assign(value); } /** *

The name of the AWS Cloud Map namespace to use.

*/ inline AwsCloudMapServiceDiscovery& WithNamespaceName(const Aws::String& value) { SetNamespaceName(value); return *this;} /** *

The name of the AWS Cloud Map namespace to use.

*/ inline AwsCloudMapServiceDiscovery& WithNamespaceName(Aws::String&& value) { SetNamespaceName(std::move(value)); return *this;} /** *

The name of the AWS Cloud Map namespace to use.

*/ inline AwsCloudMapServiceDiscovery& WithNamespaceName(const char* value) { SetNamespaceName(value); return *this;} /** *

The name of the AWS Cloud Map service to use.

*/ inline const Aws::String& GetServiceName() const{ return m_serviceName; } /** *

The name of the AWS Cloud Map service to use.

*/ inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; } /** *

The name of the AWS Cloud Map service to use.

*/ inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; } /** *

The name of the AWS Cloud Map service to use.

*/ inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); } /** *

The name of the AWS Cloud Map service to use.

*/ inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); } /** *

The name of the AWS Cloud Map service to use.

*/ inline AwsCloudMapServiceDiscovery& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;} /** *

The name of the AWS Cloud Map service to use.

*/ inline AwsCloudMapServiceDiscovery& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;} /** *

The name of the AWS Cloud Map service to use.

*/ inline AwsCloudMapServiceDiscovery& WithServiceName(const char* value) { SetServiceName(value); return *this;} private: Aws::Vector m_attributes; bool m_attributesHasBeenSet; Aws::String m_namespaceName; bool m_namespaceNameHasBeenSet; Aws::String m_serviceName; bool m_serviceNameHasBeenSet; }; } // namespace Model } // namespace AppMesh } // namespace Aws