AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
ScriptModeConfig.h
1
6#pragma once
7#include <aws/braket/Braket_EXPORTS.h>
8#include <aws/braket/model/CompressionType.h>
9#include <aws/core/utils/memory/stl/AWSString.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 Braket
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_BRAKET_API ScriptModeConfig() = default;
39 AWS_BRAKET_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline CompressionType GetCompressionType() const { return m_compressionType; }
48 inline bool CompressionTypeHasBeenSet() const { return m_compressionTypeHasBeenSet; }
49 inline void SetCompressionType(CompressionType value) { m_compressionTypeHasBeenSet = true; m_compressionType = value; }
52
54
58 inline const Aws::String& GetEntryPoint() const { return m_entryPoint; }
59 inline bool EntryPointHasBeenSet() const { return m_entryPointHasBeenSet; }
60 template<typename EntryPointT = Aws::String>
61 void SetEntryPoint(EntryPointT&& value) { m_entryPointHasBeenSet = true; m_entryPoint = std::forward<EntryPointT>(value); }
62 template<typename EntryPointT = Aws::String>
63 ScriptModeConfig& WithEntryPoint(EntryPointT&& value) { SetEntryPoint(std::forward<EntryPointT>(value)); return *this;}
65
67
71 inline const Aws::String& GetS3Uri() const { return m_s3Uri; }
72 inline bool S3UriHasBeenSet() const { return m_s3UriHasBeenSet; }
73 template<typename S3UriT = Aws::String>
74 void SetS3Uri(S3UriT&& value) { m_s3UriHasBeenSet = true; m_s3Uri = std::forward<S3UriT>(value); }
75 template<typename S3UriT = Aws::String>
76 ScriptModeConfig& WithS3Uri(S3UriT&& value) { SetS3Uri(std::forward<S3UriT>(value)); return *this;}
78 private:
79
81 bool m_compressionTypeHasBeenSet = false;
82
83 Aws::String m_entryPoint;
84 bool m_entryPointHasBeenSet = false;
85
86 Aws::String m_s3Uri;
87 bool m_s3UriHasBeenSet = false;
88 };
89
90} // namespace Model
91} // namespace Braket
92} // namespace Aws
ScriptModeConfig & WithCompressionType(CompressionType value)
ScriptModeConfig & WithEntryPoint(EntryPointT &&value)
void SetEntryPoint(EntryPointT &&value)
AWS_BRAKET_API ScriptModeConfig()=default
ScriptModeConfig & WithS3Uri(S3UriT &&value)
AWS_BRAKET_API Aws::Utils::Json::JsonValue Jsonize() const
void SetCompressionType(CompressionType value)
const Aws::String & GetS3Uri() const
AWS_BRAKET_API ScriptModeConfig(Aws::Utils::Json::JsonView jsonValue)
const Aws::String & GetEntryPoint() const
AWS_BRAKET_API ScriptModeConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
CompressionType GetCompressionType() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue