AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
VideoStandardExtraction.h
1
6#pragma once
7#include <aws/bedrock-data-automation/BedrockDataAutomation_EXPORTS.h>
8#include <aws/bedrock-data-automation/model/VideoExtractionCategory.h>
9#include <aws/bedrock-data-automation/model/VideoBoundingBox.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 BedrockDataAutomation
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_BEDROCKDATAAUTOMATION_API VideoStandardExtraction() = default;
36 AWS_BEDROCKDATAAUTOMATION_API VideoStandardExtraction(Aws::Utils::Json::JsonView jsonValue);
37 AWS_BEDROCKDATAAUTOMATION_API VideoStandardExtraction& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_BEDROCKDATAAUTOMATION_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
43 inline const VideoExtractionCategory& GetCategory() const { return m_category; }
44 inline bool CategoryHasBeenSet() const { return m_categoryHasBeenSet; }
45 template<typename CategoryT = VideoExtractionCategory>
46 void SetCategory(CategoryT&& value) { m_categoryHasBeenSet = true; m_category = std::forward<CategoryT>(value); }
47 template<typename CategoryT = VideoExtractionCategory>
48 VideoStandardExtraction& WithCategory(CategoryT&& value) { SetCategory(std::forward<CategoryT>(value)); return *this;}
50
52
53 inline const VideoBoundingBox& GetBoundingBox() const { return m_boundingBox; }
54 inline bool BoundingBoxHasBeenSet() const { return m_boundingBoxHasBeenSet; }
55 template<typename BoundingBoxT = VideoBoundingBox>
56 void SetBoundingBox(BoundingBoxT&& value) { m_boundingBoxHasBeenSet = true; m_boundingBox = std::forward<BoundingBoxT>(value); }
57 template<typename BoundingBoxT = VideoBoundingBox>
58 VideoStandardExtraction& WithBoundingBox(BoundingBoxT&& value) { SetBoundingBox(std::forward<BoundingBoxT>(value)); return *this;}
60 private:
61
62 VideoExtractionCategory m_category;
63 bool m_categoryHasBeenSet = false;
64
65 VideoBoundingBox m_boundingBox;
66 bool m_boundingBoxHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace BedrockDataAutomation
71} // namespace Aws
AWS_BEDROCKDATAAUTOMATION_API VideoStandardExtraction()=default
AWS_BEDROCKDATAAUTOMATION_API VideoStandardExtraction & operator=(Aws::Utils::Json::JsonView jsonValue)
VideoStandardExtraction & WithBoundingBox(BoundingBoxT &&value)
AWS_BEDROCKDATAAUTOMATION_API Aws::Utils::Json::JsonValue Jsonize() const
VideoStandardExtraction & WithCategory(CategoryT &&value)
AWS_BEDROCKDATAAUTOMATION_API VideoStandardExtraction(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue