/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The supported properties for a PO type data set.See Also:
* AWS
* API Reference
The character set encoding of the data set.
*/ inline const Aws::String& GetEncoding() const{ return m_encoding; } /** *The character set encoding of the data set.
*/ inline bool EncodingHasBeenSet() const { return m_encodingHasBeenSet; } /** *The character set encoding of the data set.
*/ inline void SetEncoding(const Aws::String& value) { m_encodingHasBeenSet = true; m_encoding = value; } /** *The character set encoding of the data set.
*/ inline void SetEncoding(Aws::String&& value) { m_encodingHasBeenSet = true; m_encoding = std::move(value); } /** *The character set encoding of the data set.
*/ inline void SetEncoding(const char* value) { m_encodingHasBeenSet = true; m_encoding.assign(value); } /** *The character set encoding of the data set.
*/ inline PoAttributes& WithEncoding(const Aws::String& value) { SetEncoding(value); return *this;} /** *The character set encoding of the data set.
*/ inline PoAttributes& WithEncoding(Aws::String&& value) { SetEncoding(std::move(value)); return *this;} /** *The character set encoding of the data set.
*/ inline PoAttributes& WithEncoding(const char* value) { SetEncoding(value); return *this;} /** *The format of the data set records.
*/ inline const Aws::String& GetFormat() const{ return m_format; } /** *The format of the data set records.
*/ inline bool FormatHasBeenSet() const { return m_formatHasBeenSet; } /** *The format of the data set records.
*/ inline void SetFormat(const Aws::String& value) { m_formatHasBeenSet = true; m_format = value; } /** *The format of the data set records.
*/ inline void SetFormat(Aws::String&& value) { m_formatHasBeenSet = true; m_format = std::move(value); } /** *The format of the data set records.
*/ inline void SetFormat(const char* value) { m_formatHasBeenSet = true; m_format.assign(value); } /** *The format of the data set records.
*/ inline PoAttributes& WithFormat(const Aws::String& value) { SetFormat(value); return *this;} /** *The format of the data set records.
*/ inline PoAttributes& WithFormat(Aws::String&& value) { SetFormat(std::move(value)); return *this;} /** *The format of the data set records.
*/ inline PoAttributes& WithFormat(const char* value) { SetFormat(value); return *this;} /** *An array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline const Aws::VectorAn array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline bool MemberFileExtensionsHasBeenSet() const { return m_memberFileExtensionsHasBeenSet; } /** *An array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline void SetMemberFileExtensions(const Aws::VectorAn array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline void SetMemberFileExtensions(Aws::VectorAn array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline PoAttributes& WithMemberFileExtensions(const Aws::VectorAn array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline PoAttributes& WithMemberFileExtensions(Aws::VectorAn array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline PoAttributes& AddMemberFileExtensions(const Aws::String& value) { m_memberFileExtensionsHasBeenSet = true; m_memberFileExtensions.push_back(value); return *this; } /** *An array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline PoAttributes& AddMemberFileExtensions(Aws::String&& value) { m_memberFileExtensionsHasBeenSet = true; m_memberFileExtensions.push_back(std::move(value)); return *this; } /** *An array containing one or more filename extensions, allowing you to specify * which files to be included as PDS member.
*/ inline PoAttributes& AddMemberFileExtensions(const char* value) { m_memberFileExtensionsHasBeenSet = true; m_memberFileExtensions.push_back(value); return *this; } private: Aws::String m_encoding; bool m_encodingHasBeenSet = false; Aws::String m_format; bool m_formatHasBeenSet = false; Aws::Vector