/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/oam/OAM_EXPORTS.h> #include <aws/core/utils/memory/stl/AWSString.h> #include <utility> namespace Aws { template<typename RESULT_TYPE> class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace OAM { namespace Model { class GetSinkPolicyResult { public: AWS_OAM_API GetSinkPolicyResult(); AWS_OAM_API GetSinkPolicyResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_OAM_API GetSinkPolicyResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The ARN of the sink.</p> */ inline const Aws::String& GetSinkArn() const{ return m_sinkArn; } /** * <p>The ARN of the sink.</p> */ inline void SetSinkArn(const Aws::String& value) { m_sinkArn = value; } /** * <p>The ARN of the sink.</p> */ inline void SetSinkArn(Aws::String&& value) { m_sinkArn = std::move(value); } /** * <p>The ARN of the sink.</p> */ inline void SetSinkArn(const char* value) { m_sinkArn.assign(value); } /** * <p>The ARN of the sink.</p> */ inline GetSinkPolicyResult& WithSinkArn(const Aws::String& value) { SetSinkArn(value); return *this;} /** * <p>The ARN of the sink.</p> */ inline GetSinkPolicyResult& WithSinkArn(Aws::String&& value) { SetSinkArn(std::move(value)); return *this;} /** * <p>The ARN of the sink.</p> */ inline GetSinkPolicyResult& WithSinkArn(const char* value) { SetSinkArn(value); return *this;} /** * <p>The random ID string that Amazon Web Services generated as part of the sink * ARN.</p> */ inline const Aws::String& GetSinkId() const{ return m_sinkId; } /** * <p>The random ID string that Amazon Web Services generated as part of the sink * ARN.</p> */ inline void SetSinkId(const Aws::String& value) { m_sinkId = value; } /** * <p>The random ID string that Amazon Web Services generated as part of the sink * ARN.</p> */ inline void SetSinkId(Aws::String&& value) { m_sinkId = std::move(value); } /** * <p>The random ID string that Amazon Web Services generated as part of the sink * ARN.</p> */ inline void SetSinkId(const char* value) { m_sinkId.assign(value); } /** * <p>The random ID string that Amazon Web Services generated as part of the sink * ARN.</p> */ inline GetSinkPolicyResult& WithSinkId(const Aws::String& value) { SetSinkId(value); return *this;} /** * <p>The random ID string that Amazon Web Services generated as part of the sink * ARN.</p> */ inline GetSinkPolicyResult& WithSinkId(Aws::String&& value) { SetSinkId(std::move(value)); return *this;} /** * <p>The random ID string that Amazon Web Services generated as part of the sink * ARN.</p> */ inline GetSinkPolicyResult& WithSinkId(const char* value) { SetSinkId(value); return *this;} /** * <p>The policy that you specified, in JSON format.</p> */ inline const Aws::String& GetPolicy() const{ return m_policy; } /** * <p>The policy that you specified, in JSON format.</p> */ inline void SetPolicy(const Aws::String& value) { m_policy = value; } /** * <p>The policy that you specified, in JSON format.</p> */ inline void SetPolicy(Aws::String&& value) { m_policy = std::move(value); } /** * <p>The policy that you specified, in JSON format.</p> */ inline void SetPolicy(const char* value) { m_policy.assign(value); } /** * <p>The policy that you specified, in JSON format.</p> */ inline GetSinkPolicyResult& WithPolicy(const Aws::String& value) { SetPolicy(value); return *this;} /** * <p>The policy that you specified, in JSON format.</p> */ inline GetSinkPolicyResult& WithPolicy(Aws::String&& value) { SetPolicy(std::move(value)); return *this;} /** * <p>The policy that you specified, in JSON format.</p> */ inline GetSinkPolicyResult& WithPolicy(const char* value) { SetPolicy(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetSinkPolicyResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetSinkPolicyResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetSinkPolicyResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_sinkArn; Aws::String m_sinkId; Aws::String m_policy; Aws::String m_requestId; }; } // namespace Model } // namespace OAM } // namespace Aws