AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetUri(const Aws::String& value) { m_uriHasBeenSet = true; m_uri = value; }
48 inline void SetUri(Aws::String&& value) { m_uriHasBeenSet = true; m_uri = std::move(value); }
49 inline void SetUri(const char* value) { m_uriHasBeenSet = true; m_uri.assign(value); }
50 inline DeleteObjectInput& WithUri(const Aws::String& value) { SetUri(value); return *this;}
51 inline DeleteObjectInput& WithUri(Aws::String&& value) { SetUri(std::move(value)); return *this;}
52 inline DeleteObjectInput& WithUri(const char* value) { SetUri(value); return *this;}
54
56
60 inline const Aws::String& GetETag() const{ return m_eTag; }
61 inline bool ETagHasBeenSet() const { return m_eTagHasBeenSet; }
62 inline void SetETag(const Aws::String& value) { m_eTagHasBeenSet = true; m_eTag = value; }
63 inline void SetETag(Aws::String&& value) { m_eTagHasBeenSet = true; m_eTag = std::move(value); }
64 inline void SetETag(const char* value) { m_eTagHasBeenSet = true; m_eTag.assign(value); }
65 inline DeleteObjectInput& WithETag(const Aws::String& value) { SetETag(value); return *this;}
66 inline DeleteObjectInput& WithETag(Aws::String&& value) { SetETag(std::move(value)); return *this;}
67 inline DeleteObjectInput& WithETag(const char* value) { SetETag(value); return *this;}
69
71
75 inline const Aws::Vector<Aws::String>& GetPartitionValues() const{ return m_partitionValues; }
76 inline bool PartitionValuesHasBeenSet() const { return m_partitionValuesHasBeenSet; }
77 inline void SetPartitionValues(const Aws::Vector<Aws::String>& value) { m_partitionValuesHasBeenSet = true; m_partitionValues = value; }
78 inline void SetPartitionValues(Aws::Vector<Aws::String>&& value) { m_partitionValuesHasBeenSet = true; m_partitionValues = std::move(value); }
80 inline DeleteObjectInput& WithPartitionValues(Aws::Vector<Aws::String>&& value) { SetPartitionValues(std::move(value)); return *this;}
81 inline DeleteObjectInput& AddPartitionValues(const Aws::String& value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(value); return *this; }
82 inline DeleteObjectInput& AddPartitionValues(Aws::String&& value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(std::move(value)); return *this; }
83 inline DeleteObjectInput& AddPartitionValues(const char* value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(value); return *this; }
85 private:
86
87 Aws::String m_uri;
88 bool m_uriHasBeenSet = false;
89
90 Aws::String m_eTag;
91 bool m_eTagHasBeenSet = false;
92
93 Aws::Vector<Aws::String> m_partitionValues;
94 bool m_partitionValuesHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace LakeFormation
99} // namespace Aws
DeleteObjectInput & WithUri(const Aws::String &value)
DeleteObjectInput & WithETag(Aws::String &&value)
DeleteObjectInput & WithPartitionValues(Aws::Vector< Aws::String > &&value)
DeleteObjectInput & AddPartitionValues(const Aws::String &value)
DeleteObjectInput & WithETag(const char *value)
void SetPartitionValues(Aws::Vector< Aws::String > &&value)
DeleteObjectInput & WithUri(Aws::String &&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
AWS_LAKEFORMATION_API DeleteObjectInput(Aws::Utils::Json::JsonView jsonValue)
DeleteObjectInput & WithPartitionValues(const Aws::Vector< Aws::String > &value)
DeleteObjectInput & AddPartitionValues(const char *value)
DeleteObjectInput & WithUri(const char *value)
DeleteObjectInput & WithETag(const Aws::String &value)
void SetPartitionValues(const Aws::Vector< Aws::String > &value)
DeleteObjectInput & AddPartitionValues(Aws::String &&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