AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchDeleteEvaluationJobItem.h
1
6#pragma once
7#include <aws/bedrock/Bedrock_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/bedrock/model/EvaluationJobStatus.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 Bedrock
23{
24namespace Model
25{
26
34 {
35 public:
39 AWS_BEDROCK_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetJobIdentifier() const{ return m_jobIdentifier; }
47 inline bool JobIdentifierHasBeenSet() const { return m_jobIdentifierHasBeenSet; }
48 inline void SetJobIdentifier(const Aws::String& value) { m_jobIdentifierHasBeenSet = true; m_jobIdentifier = value; }
49 inline void SetJobIdentifier(Aws::String&& value) { m_jobIdentifierHasBeenSet = true; m_jobIdentifier = std::move(value); }
50 inline void SetJobIdentifier(const char* value) { m_jobIdentifierHasBeenSet = true; m_jobIdentifier.assign(value); }
51 inline BatchDeleteEvaluationJobItem& WithJobIdentifier(const Aws::String& value) { SetJobIdentifier(value); return *this;}
52 inline BatchDeleteEvaluationJobItem& WithJobIdentifier(Aws::String&& value) { SetJobIdentifier(std::move(value)); return *this;}
53 inline BatchDeleteEvaluationJobItem& WithJobIdentifier(const char* value) { SetJobIdentifier(value); return *this;}
55
57
60 inline const EvaluationJobStatus& GetJobStatus() const{ return m_jobStatus; }
61 inline bool JobStatusHasBeenSet() const { return m_jobStatusHasBeenSet; }
62 inline void SetJobStatus(const EvaluationJobStatus& value) { m_jobStatusHasBeenSet = true; m_jobStatus = value; }
63 inline void SetJobStatus(EvaluationJobStatus&& value) { m_jobStatusHasBeenSet = true; m_jobStatus = std::move(value); }
64 inline BatchDeleteEvaluationJobItem& WithJobStatus(const EvaluationJobStatus& value) { SetJobStatus(value); return *this;}
65 inline BatchDeleteEvaluationJobItem& WithJobStatus(EvaluationJobStatus&& value) { SetJobStatus(std::move(value)); return *this;}
67 private:
68
69 Aws::String m_jobIdentifier;
70 bool m_jobIdentifierHasBeenSet = false;
71
72 EvaluationJobStatus m_jobStatus;
73 bool m_jobStatusHasBeenSet = false;
74 };
75
76} // namespace Model
77} // namespace Bedrock
78} // namespace Aws
AWS_BEDROCK_API BatchDeleteEvaluationJobItem(Aws::Utils::Json::JsonView jsonValue)
AWS_BEDROCK_API BatchDeleteEvaluationJobItem & operator=(Aws::Utils::Json::JsonView jsonValue)
BatchDeleteEvaluationJobItem & WithJobIdentifier(const char *value)
BatchDeleteEvaluationJobItem & WithJobIdentifier(const Aws::String &value)
BatchDeleteEvaluationJobItem & WithJobStatus(const EvaluationJobStatus &value)
AWS_BEDROCK_API Aws::Utils::Json::JsonValue Jsonize() const
BatchDeleteEvaluationJobItem & WithJobIdentifier(Aws::String &&value)
BatchDeleteEvaluationJobItem & WithJobStatus(EvaluationJobStatus &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue