AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AssociateExternalConnectionRequest.h
1
6#pragma once
7#include <aws/codeartifact/CodeArtifact_EXPORTS.h>
8#include <aws/codeartifact/CodeArtifactRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace CodeArtifact
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_CODEARTIFACT_API AssociateExternalConnectionRequest();
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 "AssociateExternalConnection"; }
35
36 AWS_CODEARTIFACT_API Aws::String SerializePayload() const override;
37
38 AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetDomain() const{ return m_domain; }
46 inline bool DomainHasBeenSet() const { return m_domainHasBeenSet; }
47 inline void SetDomain(const Aws::String& value) { m_domainHasBeenSet = true; m_domain = value; }
48 inline void SetDomain(Aws::String&& value) { m_domainHasBeenSet = true; m_domain = std::move(value); }
49 inline void SetDomain(const char* value) { m_domainHasBeenSet = true; m_domain.assign(value); }
50 inline AssociateExternalConnectionRequest& WithDomain(const Aws::String& value) { SetDomain(value); return *this;}
51 inline AssociateExternalConnectionRequest& WithDomain(Aws::String&& value) { SetDomain(std::move(value)); return *this;}
52 inline AssociateExternalConnectionRequest& WithDomain(const char* value) { SetDomain(value); return *this;}
54
56
60 inline const Aws::String& GetDomainOwner() const{ return m_domainOwner; }
61 inline bool DomainOwnerHasBeenSet() const { return m_domainOwnerHasBeenSet; }
62 inline void SetDomainOwner(const Aws::String& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = value; }
63 inline void SetDomainOwner(Aws::String&& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = std::move(value); }
64 inline void SetDomainOwner(const char* value) { m_domainOwnerHasBeenSet = true; m_domainOwner.assign(value); }
66 inline AssociateExternalConnectionRequest& WithDomainOwner(Aws::String&& value) { SetDomainOwner(std::move(value)); return *this;}
67 inline AssociateExternalConnectionRequest& WithDomainOwner(const char* value) { SetDomainOwner(value); return *this;}
69
71
74 inline const Aws::String& GetRepository() const{ return m_repository; }
75 inline bool RepositoryHasBeenSet() const { return m_repositoryHasBeenSet; }
76 inline void SetRepository(const Aws::String& value) { m_repositoryHasBeenSet = true; m_repository = value; }
77 inline void SetRepository(Aws::String&& value) { m_repositoryHasBeenSet = true; m_repository = std::move(value); }
78 inline void SetRepository(const char* value) { m_repositoryHasBeenSet = true; m_repository.assign(value); }
79 inline AssociateExternalConnectionRequest& WithRepository(const Aws::String& value) { SetRepository(value); return *this;}
80 inline AssociateExternalConnectionRequest& WithRepository(Aws::String&& value) { SetRepository(std::move(value)); return *this;}
81 inline AssociateExternalConnectionRequest& WithRepository(const char* value) { SetRepository(value); return *this;}
83
85
100 inline const Aws::String& GetExternalConnection() const{ return m_externalConnection; }
101 inline bool ExternalConnectionHasBeenSet() const { return m_externalConnectionHasBeenSet; }
102 inline void SetExternalConnection(const Aws::String& value) { m_externalConnectionHasBeenSet = true; m_externalConnection = value; }
103 inline void SetExternalConnection(Aws::String&& value) { m_externalConnectionHasBeenSet = true; m_externalConnection = std::move(value); }
104 inline void SetExternalConnection(const char* value) { m_externalConnectionHasBeenSet = true; m_externalConnection.assign(value); }
107 inline AssociateExternalConnectionRequest& WithExternalConnection(const char* value) { SetExternalConnection(value); return *this;}
109 private:
110
111 Aws::String m_domain;
112 bool m_domainHasBeenSet = false;
113
114 Aws::String m_domainOwner;
115 bool m_domainOwnerHasBeenSet = false;
116
117 Aws::String m_repository;
118 bool m_repositoryHasBeenSet = false;
119
120 Aws::String m_externalConnection;
121 bool m_externalConnectionHasBeenSet = false;
122 };
123
124} // namespace Model
125} // namespace CodeArtifact
126} // namespace Aws
AssociateExternalConnectionRequest & WithRepository(const char *value)
AssociateExternalConnectionRequest & WithDomain(const Aws::String &value)
AssociateExternalConnectionRequest & WithExternalConnection(Aws::String &&value)
AssociateExternalConnectionRequest & WithExternalConnection(const Aws::String &value)
AssociateExternalConnectionRequest & WithExternalConnection(const char *value)
AssociateExternalConnectionRequest & WithRepository(Aws::String &&value)
AssociateExternalConnectionRequest & WithDomain(Aws::String &&value)
AssociateExternalConnectionRequest & WithDomain(const char *value)
AWS_CODEARTIFACT_API Aws::String SerializePayload() const override
AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AssociateExternalConnectionRequest & WithRepository(const Aws::String &value)
AssociateExternalConnectionRequest & WithDomainOwner(Aws::String &&value)
AssociateExternalConnectionRequest & WithDomainOwner(const Aws::String &value)
AssociateExternalConnectionRequest & WithDomainOwner(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String