This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-events/include/aws/events/model/DescribeEventBusResult.h

175 lines
5.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/events/CloudWatchEvents_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 CloudWatchEvents
{
namespace Model
{
class AWS_CLOUDWATCHEVENTS_API DescribeEventBusResult
{
public:
DescribeEventBusResult();
DescribeEventBusResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeEventBusResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The name of the event bus. Currently, this is always
* <code>default</code>.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the event bus. Currently, this is always
* <code>default</code>.</p>
*/
inline void SetName(const Aws::String& value) { m_name = value; }
/**
* <p>The name of the event bus. Currently, this is always
* <code>default</code>.</p>
*/
inline void SetName(Aws::String&& value) { m_name = std::move(value); }
/**
* <p>The name of the event bus. Currently, this is always
* <code>default</code>.</p>
*/
inline void SetName(const char* value) { m_name.assign(value); }
/**
* <p>The name of the event bus. Currently, this is always
* <code>default</code>.</p>
*/
inline DescribeEventBusResult& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the event bus. Currently, this is always
* <code>default</code>.</p>
*/
inline DescribeEventBusResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the event bus. Currently, this is always
* <code>default</code>.</p>
*/
inline DescribeEventBusResult& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the account permitted to write events to
* the current account.</p>
*/
inline const Aws::String& GetArn() const{ return m_arn; }
/**
* <p>The Amazon Resource Name (ARN) of the account permitted to write events to
* the current account.</p>
*/
inline void SetArn(const Aws::String& value) { m_arn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the account permitted to write events to
* the current account.</p>
*/
inline void SetArn(Aws::String&& value) { m_arn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the account permitted to write events to
* the current account.</p>
*/
inline void SetArn(const char* value) { m_arn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the account permitted to write events to
* the current account.</p>
*/
inline DescribeEventBusResult& WithArn(const Aws::String& value) { SetArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the account permitted to write events to
* the current account.</p>
*/
inline DescribeEventBusResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the account permitted to write events to
* the current account.</p>
*/
inline DescribeEventBusResult& WithArn(const char* value) { SetArn(value); return *this;}
/**
* <p>The policy that enables the external account to send events to your
* account.</p>
*/
inline const Aws::String& GetPolicy() const{ return m_policy; }
/**
* <p>The policy that enables the external account to send events to your
* account.</p>
*/
inline void SetPolicy(const Aws::String& value) { m_policy = value; }
/**
* <p>The policy that enables the external account to send events to your
* account.</p>
*/
inline void SetPolicy(Aws::String&& value) { m_policy = std::move(value); }
/**
* <p>The policy that enables the external account to send events to your
* account.</p>
*/
inline void SetPolicy(const char* value) { m_policy.assign(value); }
/**
* <p>The policy that enables the external account to send events to your
* account.</p>
*/
inline DescribeEventBusResult& WithPolicy(const Aws::String& value) { SetPolicy(value); return *this;}
/**
* <p>The policy that enables the external account to send events to your
* account.</p>
*/
inline DescribeEventBusResult& WithPolicy(Aws::String&& value) { SetPolicy(std::move(value)); return *this;}
/**
* <p>The policy that enables the external account to send events to your
* account.</p>
*/
inline DescribeEventBusResult& WithPolicy(const char* value) { SetPolicy(value); return *this;}
private:
Aws::String m_name;
Aws::String m_arn;
Aws::String m_policy;
};
} // namespace Model
} // namespace CloudWatchEvents
} // namespace Aws