AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetStateMachineArn(const Aws::String& value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn = value; }
49 inline void SetStateMachineArn(Aws::String&& value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn = std::move(value); }
50 inline void SetStateMachineArn(const char* value) { m_stateMachineArnHasBeenSet = true; m_stateMachineArn.assign(value); }
52 inline DescribeStateMachineRequest& WithStateMachineArn(Aws::String&& value) { SetStateMachineArn(std::move(value)); return *this;}
53 inline DescribeStateMachineRequest& WithStateMachineArn(const char* value) { SetStateMachineArn(value); return *this;}
55
57
68 inline const IncludedData& GetIncludedData() const{ return m_includedData; }
69 inline bool IncludedDataHasBeenSet() const { return m_includedDataHasBeenSet; }
70 inline void SetIncludedData(const IncludedData& value) { m_includedDataHasBeenSet = true; m_includedData = value; }
71 inline void SetIncludedData(IncludedData&& value) { m_includedDataHasBeenSet = true; m_includedData = std::move(value); }
72 inline DescribeStateMachineRequest& WithIncludedData(const IncludedData& value) { SetIncludedData(value); return *this;}
73 inline DescribeStateMachineRequest& WithIncludedData(IncludedData&& value) { SetIncludedData(std::move(value)); return *this;}
75 private:
76
77 Aws::String m_stateMachineArn;
78 bool m_stateMachineArnHasBeenSet = false;
79
80 IncludedData m_includedData;
81 bool m_includedDataHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace SFN
86} // namespace Aws
virtual const char * GetServiceRequestName() const override
DescribeStateMachineRequest & WithIncludedData(const IncludedData &value)
AWS_SFN_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
DescribeStateMachineRequest & WithStateMachineArn(const char *value)
DescribeStateMachineRequest & WithIncludedData(IncludedData &&value)
DescribeStateMachineRequest & WithStateMachineArn(const Aws::String &value)
AWS_SFN_API Aws::String SerializePayload() const override
DescribeStateMachineRequest & WithStateMachineArn(Aws::String &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String