293 lines
10 KiB
C++
293 lines
10 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/appmesh/AppMeshRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/appmesh/model/MeshSpec.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/appmesh/model/TagRef.h>
|
|
#include <utility>
|
|
#include <aws/core/utils/UUID.h>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace AppMesh
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateMeshInput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_APPMESH_API CreateMeshRequest : public AppMeshRequest
|
|
{
|
|
public:
|
|
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::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline const Aws::String& GetClientToken() const{ return m_clientToken; }
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>Unique, case-sensitive identifier that you provide to ensure the idempotency
|
|
* of the
|
|
request. Up to 36 letters, numbers, hyphens, and underscores are
|
|
* allowed.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline const Aws::String& GetMeshName() const{ return m_meshName; }
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline bool MeshNameHasBeenSet() const { return m_meshNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline void SetMeshName(const Aws::String& value) { m_meshNameHasBeenSet = true; m_meshName = value; }
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline void SetMeshName(Aws::String&& value) { m_meshNameHasBeenSet = true; m_meshName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline void SetMeshName(const char* value) { m_meshNameHasBeenSet = true; m_meshName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithMeshName(const Aws::String& value) { SetMeshName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithMeshName(Aws::String&& value) { SetMeshName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name to use for the service mesh.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithMeshName(const char* value) { SetMeshName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The service mesh specification to apply.</p>
|
|
*/
|
|
inline const MeshSpec& GetSpec() const{ return m_spec; }
|
|
|
|
/**
|
|
* <p>The service mesh specification to apply.</p>
|
|
*/
|
|
inline bool SpecHasBeenSet() const { return m_specHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The service mesh specification to apply.</p>
|
|
*/
|
|
inline void SetSpec(const MeshSpec& value) { m_specHasBeenSet = true; m_spec = value; }
|
|
|
|
/**
|
|
* <p>The service mesh specification to apply.</p>
|
|
*/
|
|
inline void SetSpec(MeshSpec&& value) { m_specHasBeenSet = true; m_spec = std::move(value); }
|
|
|
|
/**
|
|
* <p>The service mesh specification to apply.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithSpec(const MeshSpec& value) { SetSpec(value); return *this;}
|
|
|
|
/**
|
|
* <p>The service mesh specification to apply.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithSpec(MeshSpec&& value) { SetSpec(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline const Aws::Vector<TagRef>& GetTags() const{ return m_tags; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetTags(const Aws::Vector<TagRef>& value) { m_tagsHasBeenSet = true; m_tags = value; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline void SetTags(Aws::Vector<TagRef>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithTags(const Aws::Vector<TagRef>& value) { SetTags(value); return *this;}
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline CreateMeshRequest& WithTags(Aws::Vector<TagRef>&& value) { SetTags(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
inline CreateMeshRequest& AddTags(const TagRef& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>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.</p>
|
|
*/
|
|
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;
|
|
|
|
Aws::String m_meshName;
|
|
bool m_meshNameHasBeenSet;
|
|
|
|
MeshSpec m_spec;
|
|
bool m_specHasBeenSet;
|
|
|
|
Aws::Vector<TagRef> m_tags;
|
|
bool m_tagsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AppMesh
|
|
} // namespace Aws
|