176 lines
6.3 KiB
C
176 lines
6.3 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/greengrass/Greengrass_EXPORTS.h>
|
|||
|
|
#include <aws/greengrass/GreengrassRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|||
|
|
#include <aws/greengrass/model/Subscription.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Greengrass
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
*/
|
|||
|
|
class AWS_GREENGRASS_API CreateSubscriptionDefinitionVersionRequest : public GreengrassRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CreateSubscriptionDefinitionVersionRequest();
|
|||
|
|
|
|||
|
|
// 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 "CreateSubscriptionDefinitionVersion"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetAmznClientToken() const{ return m_amznClientToken; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline bool AmznClientTokenHasBeenSet() const { return m_amznClientTokenHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline void SetAmznClientToken(const Aws::String& value) { m_amznClientTokenHasBeenSet = true; m_amznClientToken = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline void SetAmznClientToken(Aws::String&& value) { m_amznClientTokenHasBeenSet = true; m_amznClientToken = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline void SetAmznClientToken(const char* value) { m_amznClientTokenHasBeenSet = true; m_amznClientToken.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithAmznClientToken(const Aws::String& value) { SetAmznClientToken(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithAmznClientToken(Aws::String&& value) { SetAmznClientToken(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A client token used to correlate requests and responses.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithAmznClientToken(const char* value) { SetAmznClientToken(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetSubscriptionDefinitionId() const{ return m_subscriptionDefinitionId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline bool SubscriptionDefinitionIdHasBeenSet() const { return m_subscriptionDefinitionIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline void SetSubscriptionDefinitionId(const Aws::String& value) { m_subscriptionDefinitionIdHasBeenSet = true; m_subscriptionDefinitionId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline void SetSubscriptionDefinitionId(Aws::String&& value) { m_subscriptionDefinitionIdHasBeenSet = true; m_subscriptionDefinitionId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline void SetSubscriptionDefinitionId(const char* value) { m_subscriptionDefinitionIdHasBeenSet = true; m_subscriptionDefinitionId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithSubscriptionDefinitionId(const Aws::String& value) { SetSubscriptionDefinitionId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithSubscriptionDefinitionId(Aws::String&& value) { SetSubscriptionDefinitionId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* The ID of the subscription definition.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithSubscriptionDefinitionId(const char* value) { SetSubscriptionDefinitionId(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline const Aws::Vector<Subscription>& GetSubscriptions() const{ return m_subscriptions; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline bool SubscriptionsHasBeenSet() const { return m_subscriptionsHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline void SetSubscriptions(const Aws::Vector<Subscription>& value) { m_subscriptionsHasBeenSet = true; m_subscriptions = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline void SetSubscriptions(Aws::Vector<Subscription>&& value) { m_subscriptionsHasBeenSet = true; m_subscriptions = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithSubscriptions(const Aws::Vector<Subscription>& value) { SetSubscriptions(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& WithSubscriptions(Aws::Vector<Subscription>&& value) { SetSubscriptions(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& AddSubscriptions(const Subscription& value) { m_subscriptionsHasBeenSet = true; m_subscriptions.push_back(value); return *this; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* A list of subscriptions.
|
|||
|
|
*/
|
|||
|
|
inline CreateSubscriptionDefinitionVersionRequest& AddSubscriptions(Subscription&& value) { m_subscriptionsHasBeenSet = true; m_subscriptions.push_back(std::move(value)); return *this; }
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_amznClientToken;
|
|||
|
|
bool m_amznClientTokenHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_subscriptionDefinitionId;
|
|||
|
|
bool m_subscriptionDefinitionIdHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::Vector<Subscription> m_subscriptions;
|
|||
|
|
bool m_subscriptionsHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Greengrass
|
|||
|
|
} // namespace Aws
|