/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object to delete from the governed table.See Also:
AWS
* API Reference
The Amazon S3 location of the object to delete.
*/ inline const Aws::String& GetUri() const{ return m_uri; } /** *The Amazon S3 location of the object to delete.
*/ inline bool UriHasBeenSet() const { return m_uriHasBeenSet; } /** *The Amazon S3 location of the object to delete.
*/ inline void SetUri(const Aws::String& value) { m_uriHasBeenSet = true; m_uri = value; } /** *The Amazon S3 location of the object to delete.
*/ inline void SetUri(Aws::String&& value) { m_uriHasBeenSet = true; m_uri = std::move(value); } /** *The Amazon S3 location of the object to delete.
*/ inline void SetUri(const char* value) { m_uriHasBeenSet = true; m_uri.assign(value); } /** *The Amazon S3 location of the object to delete.
*/ inline DeleteObjectInput& WithUri(const Aws::String& value) { SetUri(value); return *this;} /** *The Amazon S3 location of the object to delete.
*/ inline DeleteObjectInput& WithUri(Aws::String&& value) { SetUri(std::move(value)); return *this;} /** *The Amazon S3 location of the object to delete.
*/ inline DeleteObjectInput& WithUri(const char* value) { SetUri(value); return *this;} /** *The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
The Amazon S3 ETag of the object. Returned by GetTableObjects
* for validation and used to identify changes to the underlying data.
A list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline const Aws::VectorA list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline bool PartitionValuesHasBeenSet() const { return m_partitionValuesHasBeenSet; } /** *A list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline void SetPartitionValues(const Aws::VectorA list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline void SetPartitionValues(Aws::VectorA list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline DeleteObjectInput& WithPartitionValues(const Aws::VectorA list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline DeleteObjectInput& WithPartitionValues(Aws::VectorA list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline DeleteObjectInput& AddPartitionValues(const Aws::String& value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(value); return *this; } /** *A list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline DeleteObjectInput& AddPartitionValues(Aws::String&& value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(std::move(value)); return *this; } /** *A list of partition values for the object. A value must be specified for each * partition key associated with the governed table.
*/ inline DeleteObjectInput& AddPartitionValues(const char* value) { m_partitionValuesHasBeenSet = true; m_partitionValues.push_back(value); return *this; } private: Aws::String m_uri; bool m_uriHasBeenSet = false; Aws::String m_eTag; bool m_eTagHasBeenSet = false; Aws::Vector