AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateDefaultBranchRequest.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
26 {
27 public:
28 AWS_CODECOMMIT_API UpdateDefaultBranchRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "UpdateDefaultBranch"; }
35
36 AWS_CODECOMMIT_API Aws::String SerializePayload() const override;
37
39
40
42
46 inline const Aws::String& GetRepositoryName() const{ return m_repositoryName; }
47 inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; }
48 inline void SetRepositoryName(const Aws::String& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = value; }
49 inline void SetRepositoryName(Aws::String&& value) { m_repositoryNameHasBeenSet = true; m_repositoryName = std::move(value); }
50 inline void SetRepositoryName(const char* value) { m_repositoryNameHasBeenSet = true; m_repositoryName.assign(value); }
51 inline UpdateDefaultBranchRequest& WithRepositoryName(const Aws::String& value) { SetRepositoryName(value); return *this;}
52 inline UpdateDefaultBranchRequest& WithRepositoryName(Aws::String&& value) { SetRepositoryName(std::move(value)); return *this;}
53 inline UpdateDefaultBranchRequest& WithRepositoryName(const char* value) { SetRepositoryName(value); return *this;}
55
57
60 inline const Aws::String& GetDefaultBranchName() const{ return m_defaultBranchName; }
61 inline bool DefaultBranchNameHasBeenSet() const { return m_defaultBranchNameHasBeenSet; }
62 inline void SetDefaultBranchName(const Aws::String& value) { m_defaultBranchNameHasBeenSet = true; m_defaultBranchName = value; }
63 inline void SetDefaultBranchName(Aws::String&& value) { m_defaultBranchNameHasBeenSet = true; m_defaultBranchName = std::move(value); }
64 inline void SetDefaultBranchName(const char* value) { m_defaultBranchNameHasBeenSet = true; m_defaultBranchName.assign(value); }
66 inline UpdateDefaultBranchRequest& WithDefaultBranchName(Aws::String&& value) { SetDefaultBranchName(std::move(value)); return *this;}
67 inline UpdateDefaultBranchRequest& WithDefaultBranchName(const char* value) { SetDefaultBranchName(value); return *this;}
69 private:
70
71 Aws::String m_repositoryName;
72 bool m_repositoryNameHasBeenSet = false;
73
74 Aws::String m_defaultBranchName;
75 bool m_defaultBranchNameHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace CodeCommit
80} // namespace Aws
UpdateDefaultBranchRequest & WithRepositoryName(const Aws::String &value)
UpdateDefaultBranchRequest & WithRepositoryName(Aws::String &&value)
UpdateDefaultBranchRequest & WithRepositoryName(const char *value)
UpdateDefaultBranchRequest & WithDefaultBranchName(const Aws::String &value)
AWS_CODECOMMIT_API Aws::String SerializePayload() const override
AWS_CODECOMMIT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
UpdateDefaultBranchRequest & WithDefaultBranchName(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
UpdateDefaultBranchRequest & WithDefaultBranchName(const char *value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String