AWS SDK for C++

AWS SDK for C++ Version 1.11.555

All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
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() = default;
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 template<typename DomainT = Aws::String>
48 void SetDomain(DomainT&& value) { m_domainHasBeenSet = true; m_domain = std::forward<DomainT>(value); }
49 template<typename DomainT = Aws::String>
50 AssociateExternalConnectionRequest& WithDomain(DomainT&& value) { SetDomain(std::forward<DomainT>(value)); return *this;}
52
54
58 inline const Aws::String& GetDomainOwner() const { return m_domainOwner; }
59 inline bool DomainOwnerHasBeenSet() const { return m_domainOwnerHasBeenSet; }
60 template<typename DomainOwnerT = Aws::String>
61 void SetDomainOwner(DomainOwnerT&& value) { m_domainOwnerHasBeenSet = true; m_domainOwner = std::forward<DomainOwnerT>(value); }
62 template<typename DomainOwnerT = Aws::String>
63 AssociateExternalConnectionRequest& WithDomainOwner(DomainOwnerT&& value) { SetDomainOwner(std::forward<DomainOwnerT>(value)); return *this;}
65
67
70 inline const Aws::String& GetRepository() const { return m_repository; }
71 inline bool RepositoryHasBeenSet() const { return m_repositoryHasBeenSet; }
72 template<typename RepositoryT = Aws::String>
73 void SetRepository(RepositoryT&& value) { m_repositoryHasBeenSet = true; m_repository = std::forward<RepositoryT>(value); }
74 template<typename RepositoryT = Aws::String>
75 AssociateExternalConnectionRequest& WithRepository(RepositoryT&& value) { SetRepository(std::forward<RepositoryT>(value)); return *this;}
77
79
94 inline const Aws::String& GetExternalConnection() const { return m_externalConnection; }
95 inline bool ExternalConnectionHasBeenSet() const { return m_externalConnectionHasBeenSet; }
96 template<typename ExternalConnectionT = Aws::String>
97 void SetExternalConnection(ExternalConnectionT&& value) { m_externalConnectionHasBeenSet = true; m_externalConnection = std::forward<ExternalConnectionT>(value); }
98 template<typename ExternalConnectionT = Aws::String>
99 AssociateExternalConnectionRequest& WithExternalConnection(ExternalConnectionT&& value) { SetExternalConnection(std::forward<ExternalConnectionT>(value)); return *this;}
101 private:
102
103 Aws::String m_domain;
104 bool m_domainHasBeenSet = false;
105
106 Aws::String m_domainOwner;
107 bool m_domainOwnerHasBeenSet = false;
108
109 Aws::String m_repository;
110 bool m_repositoryHasBeenSet = false;
111
112 Aws::String m_externalConnection;
113 bool m_externalConnectionHasBeenSet = false;
114 };
115
116} // namespace Model
117} // namespace CodeArtifact
118} // namespace Aws
AssociateExternalConnectionRequest & WithDomain(DomainT &&value)
AssociateExternalConnectionRequest & WithExternalConnection(ExternalConnectionT &&value)
AWS_CODEARTIFACT_API AssociateExternalConnectionRequest()=default
AssociateExternalConnectionRequest & WithDomainOwner(DomainOwnerT &&value)
AWS_CODEARTIFACT_API Aws::String SerializePayload() const override
AWS_CODEARTIFACT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AssociateExternalConnectionRequest & WithRepository(RepositoryT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String