AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
ExportS3DataInput.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/sagemaker-geospatial/SageMakerGeospatial_EXPORTS.h>
9
10#include <utility>
11
12namespace Aws {
13namespace Utils {
14namespace Json {
15class JsonValue;
16class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace SageMakerGeospatial {
20namespace Model {
21
29 public:
30 AWS_SAGEMAKERGEOSPATIAL_API ExportS3DataInput() = default;
31 AWS_SAGEMAKERGEOSPATIAL_API ExportS3DataInput(Aws::Utils::Json::JsonView jsonValue);
32 AWS_SAGEMAKERGEOSPATIAL_API ExportS3DataInput& operator=(Aws::Utils::Json::JsonView jsonValue);
33 AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const;
34
36
39 inline const Aws::String& GetKmsKeyId() const { return m_kmsKeyId; }
40 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
41 template <typename KmsKeyIdT = Aws::String>
42 void SetKmsKeyId(KmsKeyIdT&& value) {
43 m_kmsKeyIdHasBeenSet = true;
44 m_kmsKeyId = std::forward<KmsKeyIdT>(value);
45 }
46 template <typename KmsKeyIdT = Aws::String>
47 ExportS3DataInput& WithKmsKeyId(KmsKeyIdT&& value) {
48 SetKmsKeyId(std::forward<KmsKeyIdT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetS3Uri() const { return m_s3Uri; }
58 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
59 template <typename S3UriT = Aws::String>
60 void SetS3Uri(S3UriT&& value) {
61 m_s3UriHasBeenSet = true;
62 m_s3Uri = std::forward<S3UriT>(value);
63 }
64 template <typename S3UriT = Aws::String>
65 ExportS3DataInput& WithS3Uri(S3UriT&& value) {
66 SetS3Uri(std::forward<S3UriT>(value));
67 return *this;
68 }
70 private:
71 Aws::String m_kmsKeyId;
72
73 Aws::String m_s3Uri;
74 bool m_kmsKeyIdHasBeenSet = false;
75 bool m_s3UriHasBeenSet = false;
76};
77
78} // namespace Model
79} // namespace SageMakerGeospatial
80} // namespace Aws
ExportS3DataInput & WithKmsKeyId(KmsKeyIdT &&value)
ExportS3DataInput & WithS3Uri(S3UriT &&value)
AWS_SAGEMAKERGEOSPATIAL_API ExportS3DataInput(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKERGEOSPATIAL_API ExportS3DataInput()=default
AWS_SAGEMAKERGEOSPATIAL_API ExportS3DataInput & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_SAGEMAKERGEOSPATIAL_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue