AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetCollaborationAnalysisTemplateRequest.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/CleanRoomsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace CleanRooms
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "GetCollaborationAnalysisTemplate"; }
31
32 AWS_CLEANROOMS_API Aws::String SerializePayload() const override;
33
34
36
40 inline const Aws::String& GetCollaborationIdentifier() const{ return m_collaborationIdentifier; }
41 inline bool CollaborationIdentifierHasBeenSet() const { return m_collaborationIdentifierHasBeenSet; }
42 inline void SetCollaborationIdentifier(const Aws::String& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = value; }
43 inline void SetCollaborationIdentifier(Aws::String&& value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier = std::move(value); }
44 inline void SetCollaborationIdentifier(const char* value) { m_collaborationIdentifierHasBeenSet = true; m_collaborationIdentifier.assign(value); }
49
51
55 inline const Aws::String& GetAnalysisTemplateArn() const{ return m_analysisTemplateArn; }
56 inline bool AnalysisTemplateArnHasBeenSet() const { return m_analysisTemplateArnHasBeenSet; }
57 inline void SetAnalysisTemplateArn(const Aws::String& value) { m_analysisTemplateArnHasBeenSet = true; m_analysisTemplateArn = value; }
58 inline void SetAnalysisTemplateArn(Aws::String&& value) { m_analysisTemplateArnHasBeenSet = true; m_analysisTemplateArn = std::move(value); }
59 inline void SetAnalysisTemplateArn(const char* value) { m_analysisTemplateArnHasBeenSet = true; m_analysisTemplateArn.assign(value); }
64 private:
65
66 Aws::String m_collaborationIdentifier;
67 bool m_collaborationIdentifierHasBeenSet = false;
68
69 Aws::String m_analysisTemplateArn;
70 bool m_analysisTemplateArnHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace CleanRooms
75} // namespace Aws
GetCollaborationAnalysisTemplateRequest & WithAnalysisTemplateArn(Aws::String &&value)
GetCollaborationAnalysisTemplateRequest & WithCollaborationIdentifier(const Aws::String &value)
GetCollaborationAnalysisTemplateRequest & WithAnalysisTemplateArn(const char *value)
GetCollaborationAnalysisTemplateRequest & WithCollaborationIdentifier(const char *value)
AWS_CLEANROOMS_API Aws::String SerializePayload() const override
GetCollaborationAnalysisTemplateRequest & WithAnalysisTemplateArn(const Aws::String &value)
GetCollaborationAnalysisTemplateRequest & WithCollaborationIdentifier(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String