AWS SDK for C++

AWS SDK for C++ Version 1.11.745

Loading...
Searching...
No Matches
DeleteRepositoryRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/ecr/ECRRequest.h>
9#include <aws/ecr/ECR_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace ECR {
15namespace Model {
16
20 public:
21 AWS_ECR_API DeleteRepositoryRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DeleteRepository"; }
28
29 AWS_ECR_API Aws::String SerializePayload() const override;
30
32
34
39 inline const Aws::String& GetRegistryId() const { return m_registryId; }
40 inline bool RegistryIdHasBeenSet() const { return m_registryIdHasBeenSet; }
41 template <typename RegistryIdT = Aws::String>
42 void SetRegistryId(RegistryIdT&& value) {
43 m_registryIdHasBeenSet = true;
44 m_registryId = std::forward<RegistryIdT>(value);
45 }
46 template <typename RegistryIdT = Aws::String>
48 SetRegistryId(std::forward<RegistryIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetRepositoryName() const { return m_repositoryName; }
58 inline bool RepositoryNameHasBeenSet() const { return m_repositoryNameHasBeenSet; }
59 template <typename RepositoryNameT = Aws::String>
60 void SetRepositoryName(RepositoryNameT&& value) {
61 m_repositoryNameHasBeenSet = true;
62 m_repositoryName = std::forward<RepositoryNameT>(value);
63 }
64 template <typename RepositoryNameT = Aws::String>
65 DeleteRepositoryRequest& WithRepositoryName(RepositoryNameT&& value) {
66 SetRepositoryName(std::forward<RepositoryNameT>(value));
67 return *this;
68 }
70
72
77 inline bool GetForce() const { return m_force; }
78 inline bool ForceHasBeenSet() const { return m_forceHasBeenSet; }
79 inline void SetForce(bool value) {
80 m_forceHasBeenSet = true;
81 m_force = value;
82 }
83 inline DeleteRepositoryRequest& WithForce(bool value) {
84 SetForce(value);
85 return *this;
86 }
88 private:
89 Aws::String m_registryId;
90
91 Aws::String m_repositoryName;
92
93 bool m_force{false};
94 bool m_registryIdHasBeenSet = false;
95 bool m_repositoryNameHasBeenSet = false;
96 bool m_forceHasBeenSet = false;
97};
98
99} // namespace Model
100} // namespace ECR
101} // namespace Aws
void SetRepositoryName(RepositoryNameT &&value)
DeleteRepositoryRequest & WithRepositoryName(RepositoryNameT &&value)
AWS_ECR_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
virtual const char * GetServiceRequestName() const override
DeleteRepositoryRequest & WithRegistryId(RegistryIdT &&value)
AWS_ECR_API Aws::String SerializePayload() const override
DeleteRepositoryRequest & WithForce(bool value)
AWS_ECR_API DeleteRepositoryRequest()=default
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String