AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
CreateResourceShareRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/mediaconvert/MediaConvertRequest.h>
9#include <aws/mediaconvert/MediaConvert_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace MediaConvert {
15namespace Model {
16
20 public:
21 AWS_MEDIACONVERT_API CreateResourceShareRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "CreateResourceShare"; }
28
29 AWS_MEDIACONVERT_API Aws::String SerializePayload() const override;
30
32
35 inline const Aws::String& GetJobId() const { return m_jobId; }
36 inline bool JobIdHasBeenSet() const { return m_jobIdHasBeenSet; }
37 template <typename JobIdT = Aws::String>
38 void SetJobId(JobIdT&& value) {
39 m_jobIdHasBeenSet = true;
40 m_jobId = std::forward<JobIdT>(value);
41 }
42 template <typename JobIdT = Aws::String>
44 SetJobId(std::forward<JobIdT>(value));
45 return *this;
46 }
48
50
53 inline const Aws::String& GetSupportCaseId() const { return m_supportCaseId; }
54 inline bool SupportCaseIdHasBeenSet() const { return m_supportCaseIdHasBeenSet; }
55 template <typename SupportCaseIdT = Aws::String>
56 void SetSupportCaseId(SupportCaseIdT&& value) {
57 m_supportCaseIdHasBeenSet = true;
58 m_supportCaseId = std::forward<SupportCaseIdT>(value);
59 }
60 template <typename SupportCaseIdT = Aws::String>
62 SetSupportCaseId(std::forward<SupportCaseIdT>(value));
63 return *this;
64 }
66 private:
67 Aws::String m_jobId;
68
69 Aws::String m_supportCaseId;
70 bool m_jobIdHasBeenSet = false;
71 bool m_supportCaseIdHasBeenSet = false;
72};
73
74} // namespace Model
75} // namespace MediaConvert
76} // namespace Aws
CreateResourceShareRequest & WithJobId(JobIdT &&value)
AWS_MEDIACONVERT_API CreateResourceShareRequest()=default
AWS_MEDIACONVERT_API Aws::String SerializePayload() const override
CreateResourceShareRequest & WithSupportCaseId(SupportCaseIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String