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/CreatePartnerEventSourceRequest.h

170 lines
6.9 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/events/CloudWatchEventsRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace CloudWatchEvents
{
namespace Model
{
/**
*/
class AWS_CLOUDWATCHEVENTS_API CreatePartnerEventSourceRequest : public CloudWatchEventsRequest
{
public:
CreatePartnerEventSourceRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "CreatePartnerEventSource"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline const Aws::String& GetName() const{ return m_name; }
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline CreatePartnerEventSourceRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline CreatePartnerEventSourceRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
/**
* <p>The name of the partner event source. This name must be unique and must be in
* the format <code> <i>partner_name</i>/<i>event_namespace</i>/<i>event_name</i>
* </code>. The AWS account that wants to use this partner event source must create
* a partner event bus with a name that matches the name of the partner event
* source.</p>
*/
inline CreatePartnerEventSourceRequest& WithName(const char* value) { SetName(value); return *this;}
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline const Aws::String& GetAccount() const{ return m_account; }
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline bool AccountHasBeenSet() const { return m_accountHasBeenSet; }
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline void SetAccount(const Aws::String& value) { m_accountHasBeenSet = true; m_account = value; }
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline void SetAccount(Aws::String&& value) { m_accountHasBeenSet = true; m_account = std::move(value); }
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline void SetAccount(const char* value) { m_accountHasBeenSet = true; m_account.assign(value); }
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline CreatePartnerEventSourceRequest& WithAccount(const Aws::String& value) { SetAccount(value); return *this;}
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline CreatePartnerEventSourceRequest& WithAccount(Aws::String&& value) { SetAccount(std::move(value)); return *this;}
/**
* <p>The AWS account ID that is permitted to create a matching partner event bus
* for this partner event source.</p>
*/
inline CreatePartnerEventSourceRequest& WithAccount(const char* value) { SetAccount(value); return *this;}
private:
Aws::String m_name;
bool m_nameHasBeenSet;
Aws::String m_account;
bool m_accountHasBeenSet;
};
} // namespace Model
} // namespace CloudWatchEvents
} // namespace Aws