AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeStateMachineRequest.h
1
6#pragma once
7#include <aws/states/SFN_EXPORTS.h>
8#include <aws/states/SFNRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/states/model/IncludedData.h>
11#include <utility>
12
13namespace Aws
14{
15namespace SFN
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_SFN_API DescribeStateMachineRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeStateMachine"; }
32
33 AWS_SFN_API Aws::String SerializePayload() const override;
34
36
37
39
46 inline const Aws::String& GetStateMachineArn() const { return m_stateMachineArn; }
47 inline bool StateMachineArnHasBeenSet() const { return m_stateMachineArnHasBeenSet; }
48 template<typename StateMachineArnT = Aws::String>
49 void SetStateMachineArn(StateMachineArnT&& value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn = std::forward<StateMachineArnT>(value); }
50 template<typename StateMachineArnT = Aws::String>
51 DescribeStateMachineRequest& WithStateMachineArn(StateMachineArnT&& value) { SetStateMachineArn(std::forward<StateMachineArnT>(value)); return *this;}
53
55
66 inline IncludedData GetIncludedData() const { return m_includedData; }
67 inline bool IncludedDataHasBeenSet() const { return m_includedDataHasBeenSet; }
68 inline void SetIncludedData(IncludedData value) { m_includedDataHasBeenSet = true; m_includedData = value; }
71 private:
72
73 Aws::String m_stateMachineArn;
74 bool m_stateMachineArnHasBeenSet = false;
75
76 IncludedData m_includedData{IncludedData::NOT_SET};
77 bool m_includedDataHasBeenSet = false;
78 };
79
80} // namespace Model
81} // namespace SFN
82} // namespace Aws
DescribeStateMachineRequest & WithStateMachineArn(StateMachineArnT &&value)
virtual const char * GetServiceRequestName() const override
AWS_SFN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
AWS_SFN_API DescribeStateMachineRequest()=default
AWS_SFN_API Aws::String SerializePayload() const override
DescribeStateMachineRequest & WithIncludedData(IncludedData value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String