AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DeleteObjectInput.h
1
6#pragma once
7#include <aws/lakeformation/LakeFormation_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace LakeFormation
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_LAKEFORMATION_API DeleteObjectInput() = default;
36 AWS_LAKEFORMATION_API DeleteObjectInput(Aws::Utils::Json::JsonView jsonValue);
37 AWS_LAKEFORMATION_API DeleteObjectInput& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_LAKEFORMATION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline const Aws::String& GetUri() const { return m_uri; }
46 inline bool UriHasBeenSet() const { return m_uriHasBeenSet; }
47 template<typename UriT = Aws::String>
48 void SetUri(UriT&& value) { m_uriHasBeenSet = true; m_uri = std::forward<UriT>(value); }
49 template<typename UriT = Aws::String>
50 DeleteObjectInput& WithUri(UriT&& value) { SetUri(std::forward<UriT>(value)); return *this;}
52
54
58 inline const Aws::String& GetETag() const { return m_eTag; }
59 inline bool ETagHasBeenSet() const { return m_eTagHasBeenSet; }
60 template<typename ETagT = Aws::String>
61 void SetETag(ETagT&& value) { m_eTagHasBeenSet = true; m_eTag = std::forward<ETagT>(value); }
62 template<typename ETagT = Aws::String>
63 DeleteObjectInput& WithETag(ETagT&& value) { SetETag(std::forward<ETagT>(value)); return *this;}
65
67
71 inline const Aws::Vector<Aws::String>& GetPartitionValues() const { return m_partitionValues; }
72 inline bool PartitionValuesHasBeenSet() const { return m_partitionValuesHasBeenSet; }
73 template<typename PartitionValuesT = Aws::Vector<Aws::String>>
74 void SetPartitionValues(PartitionValuesT&& value) { m_partitionValuesHasBeenSet = true; m_partitionValues = std::forward<PartitionValuesT>(value); }
75 template<typename PartitionValuesT = Aws::Vector<Aws::String>>
76 DeleteObjectInput& WithPartitionValues(PartitionValuesT&& value) { SetPartitionValues(std::forward<PartitionValuesT>(value)); return *this;}
77 template<typename PartitionValuesT = Aws::String>
78 DeleteObjectInput& AddPartitionValues(PartitionValuesT&& value) { m_partitionValuesHasBeenSet = true; m_partitionValues.emplace_back(std::forward<PartitionValuesT>(value)); return *this; }
80 private:
81
82 Aws::String m_uri;
83 bool m_uriHasBeenSet = false;
84
85 Aws::String m_eTag;
86 bool m_eTagHasBeenSet = false;
87
88 Aws::Vector<Aws::String> m_partitionValues;
89 bool m_partitionValuesHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace LakeFormation
94} // namespace Aws
void SetPartitionValues(PartitionValuesT &&value)
AWS_LAKEFORMATION_API DeleteObjectInput & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Aws::String > & GetPartitionValues() const
AWS_LAKEFORMATION_API Aws::Utils::Json::JsonValue Jsonize() const
DeleteObjectInput & WithUri(UriT &&value)
DeleteObjectInput & WithPartitionValues(PartitionValuesT &&value)
AWS_LAKEFORMATION_API DeleteObjectInput()=default
DeleteObjectInput & WithETag(ETagT &&value)
AWS_LAKEFORMATION_API DeleteObjectInput(Aws::Utils::Json::JsonView jsonValue)
DeleteObjectInput & AddPartitionValues(PartitionValuesT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue