AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetBranchRequest.h
1
6#pragma once
7#include <aws/codecommit/CodeCommit_EXPORTS.h>
8#include <aws/codecommit/CodeCommitRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CodeCommit
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_CODECOMMIT_API GetBranchRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "GetBranch"; }
34
35 AWS_CODECOMMIT_API Aws::String SerializePayload() const override;
36
38
39
41
45 inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; }
46 inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; }
47 inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; }
48 inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); }
49 inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); }
50 inline GetBranchRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;}
51 inline GetBranchRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;}
52 inline GetBranchRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;}
54
56
59 inline const Aws::String& GetBranchName() const{ return m_branchName; }
60 inline bool BranchNameHasBeenSet() const { return m_branchNameHasBeenSet; }
61 inline void SetBranchName(const Aws::String& value) { m_branchNameHasBeenSet = true; m_branchName = value; }
62 inline void SetBranchName(Aws::String&& value) { m_branchNameHasBeenSet = true; m_branchName = std::move(value); }
63 inline void SetBranchName(const char* value) { m_branchNameHasBeenSet = true; m_branchName.assign(value); }
64 inline GetBranchRequest& WithBranchName(const Aws::String& value) { SetBranchName(value); return *this;}
65 inline GetBranchRequest& WithBranchName(Aws::String&& value) { SetBranchName(std::move(value)); return *this;}
66 inline GetBranchRequest& WithBranchName(const char* value) { SetBranchName(value); return *this;}
68 private:
69
70 Aws::String m_repositoryName;
71 bool m_repositoryNameHasBeenSet = false;
72
73 Aws::String m_branchName;
74 bool m_branchNameHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace CodeCommit
79} // namespace Aws
GetBranchRequest & WithBranchName(const char *value)
AWS_CODECOMMIT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
void SetRepositoryName(const Aws::String &value)
GetBranchRequest & WithRepositoryName(Aws::String &&value)
AWS_CODECOMMIT_API Aws::String SerializePayload() const override
GetBranchRequest & WithBranchName(const Aws::String &value)
void SetRepositoryName(Aws::String &&value)
GetBranchRequest & WithBranchName(Aws::String &&value)
void SetBranchName(const Aws::String &value)
GetBranchRequest & WithRepositoryName(const Aws::String &value)
const Aws::String & GetRepositoryName() const
const Aws::String & GetBranchName() const
GetBranchRequest & WithRepositoryName(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String