/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include #include namespace Aws { namespace AppMesh { namespace Model { /** *

See Also:

AWS * API Reference

*/ class CreateMeshRequest : public AppMeshRequest { public: AWS_APPMESH_API CreateMeshRequest(); // 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 "CreateMesh"; } AWS_APPMESH_API Aws::String SerializePayload() const override; /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline CreateMeshRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline CreateMeshRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

Unique, case-sensitive identifier that you provide to ensure the idempotency * of the request. Up to 36 letters, numbers, hyphens, and underscores are * allowed.

*/ inline CreateMeshRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} /** *

The name to use for the service mesh.

*/ inline const Aws::String& GetMeshName() const{ return m_meshName; } /** *

The name to use for the service mesh.

*/ inline bool MeshNameHasBeenSet() const { return m_meshNameHasBeenSet; } /** *

The name to use for the service mesh.

*/ inline void SetMeshName(const Aws::String& value) { m_meshNameHasBeenSet = true; m_meshName = value; } /** *

The name to use for the service mesh.

*/ inline void SetMeshName(Aws::String&& value) { m_meshNameHasBeenSet = true; m_meshName = std::move(value); } /** *

The name to use for the service mesh.

*/ inline void SetMeshName(const char* value) { m_meshNameHasBeenSet = true; m_meshName.assign(value); } /** *

The name to use for the service mesh.

*/ inline CreateMeshRequest& WithMeshName(const Aws::String& value) { SetMeshName(value); return *this;} /** *

The name to use for the service mesh.

*/ inline CreateMeshRequest& WithMeshName(Aws::String&& value) { SetMeshName(std::move(value)); return *this;} /** *

The name to use for the service mesh.

*/ inline CreateMeshRequest& WithMeshName(const char* value) { SetMeshName(value); return *this;} /** *

The service mesh specification to apply.

*/ inline const MeshSpec& GetSpec() const{ return m_spec; } /** *

The service mesh specification to apply.

*/ inline bool SpecHasBeenSet() const { return m_specHasBeenSet; } /** *

The service mesh specification to apply.

*/ inline void SetSpec(const MeshSpec& value) { m_specHasBeenSet = true; m_spec = value; } /** *

The service mesh specification to apply.

*/ inline void SetSpec(MeshSpec&& value) { m_specHasBeenSet = true; m_spec = std::move(value); } /** *

The service mesh specification to apply.

*/ inline CreateMeshRequest& WithSpec(const MeshSpec& value) { SetSpec(value); return *this;} /** *

The service mesh specification to apply.

*/ inline CreateMeshRequest& WithSpec(MeshSpec&& value) { SetSpec(std::move(value)); return *this;} /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline const Aws::Vector& GetTags() const{ return m_tags; } /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline void SetTags(const Aws::Vector& value) { m_tagsHasBeenSet = true; m_tags = value; } /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline void SetTags(Aws::Vector&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); } /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline CreateMeshRequest& WithTags(const Aws::Vector& value) { SetTags(value); return *this;} /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline CreateMeshRequest& WithTags(Aws::Vector&& value) { SetTags(std::move(value)); return *this;} /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline CreateMeshRequest& AddTags(const TagRef& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; } /** *

Optional metadata that you can apply to the service mesh to assist with * categorization and organization. Each tag consists of a key and an optional * value, both of which you define. Tag keys can have a maximum character length of * 128 characters, and tag values can have a maximum length of 256 characters.

*/ inline CreateMeshRequest& AddTags(TagRef&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; } private: Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; Aws::String m_meshName; bool m_meshNameHasBeenSet = false; MeshSpec m_spec; bool m_specHasBeenSet = false; Aws::Vector m_tags; bool m_tagsHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws