325 lines
11 KiB
C++
325 lines
11 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ram/RAM_EXPORTS.h>
|
|
#include <aws/ram/RAMRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/ram/model/ResourceShareStatus.h>
|
|
#include <aws/ram/model/ResourceOwner.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/ram/model/TagFilter.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace RAM
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_RAM_API GetResourceSharesRequest : public RAMRequest
|
|
{
|
|
public:
|
|
GetResourceSharesRequest();
|
|
|
|
// 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 "GetResourceShares"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetResourceShareArns() const{ return m_resourceShareArns; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline bool ResourceShareArnsHasBeenSet() const { return m_resourceShareArnsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline void SetResourceShareArns(const Aws::Vector<Aws::String>& value) { m_resourceShareArnsHasBeenSet = true; m_resourceShareArns = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline void SetResourceShareArns(Aws::Vector<Aws::String>&& value) { m_resourceShareArnsHasBeenSet = true; m_resourceShareArns = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithResourceShareArns(const Aws::Vector<Aws::String>& value) { SetResourceShareArns(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithResourceShareArns(Aws::Vector<Aws::String>&& value) { SetResourceShareArns(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& AddResourceShareArns(const Aws::String& value) { m_resourceShareArnsHasBeenSet = true; m_resourceShareArns.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& AddResourceShareArns(Aws::String&& value) { m_resourceShareArnsHasBeenSet = true; m_resourceShareArns.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& AddResourceShareArns(const char* value) { m_resourceShareArnsHasBeenSet = true; m_resourceShareArns.push_back(value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The status of the resource share.</p>
|
|
*/
|
|
inline const ResourceShareStatus& GetResourceShareStatus() const{ return m_resourceShareStatus; }
|
|
|
|
/**
|
|
* <p>The status of the resource share.</p>
|
|
*/
|
|
inline bool ResourceShareStatusHasBeenSet() const { return m_resourceShareStatusHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The status of the resource share.</p>
|
|
*/
|
|
inline void SetResourceShareStatus(const ResourceShareStatus& value) { m_resourceShareStatusHasBeenSet = true; m_resourceShareStatus = value; }
|
|
|
|
/**
|
|
* <p>The status of the resource share.</p>
|
|
*/
|
|
inline void SetResourceShareStatus(ResourceShareStatus&& value) { m_resourceShareStatusHasBeenSet = true; m_resourceShareStatus = std::move(value); }
|
|
|
|
/**
|
|
* <p>The status of the resource share.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithResourceShareStatus(const ResourceShareStatus& value) { SetResourceShareStatus(value); return *this;}
|
|
|
|
/**
|
|
* <p>The status of the resource share.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithResourceShareStatus(ResourceShareStatus&& value) { SetResourceShareStatus(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The type of owner.</p>
|
|
*/
|
|
inline const ResourceOwner& GetResourceOwner() const{ return m_resourceOwner; }
|
|
|
|
/**
|
|
* <p>The type of owner.</p>
|
|
*/
|
|
inline bool ResourceOwnerHasBeenSet() const { return m_resourceOwnerHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The type of owner.</p>
|
|
*/
|
|
inline void SetResourceOwner(const ResourceOwner& value) { m_resourceOwnerHasBeenSet = true; m_resourceOwner = value; }
|
|
|
|
/**
|
|
* <p>The type of owner.</p>
|
|
*/
|
|
inline void SetResourceOwner(ResourceOwner&& value) { m_resourceOwnerHasBeenSet = true; m_resourceOwner = std::move(value); }
|
|
|
|
/**
|
|
* <p>The type of owner.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithResourceOwner(const ResourceOwner& value) { SetResourceOwner(value); return *this;}
|
|
|
|
/**
|
|
* <p>The type of owner.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithResourceOwner(ResourceOwner&& value) { SetResourceOwner(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline const Aws::String& GetName() const{ return m_name; }
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the resource share.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithName(const char* value) { SetName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline const Aws::Vector<TagFilter>& GetTagFilters() const{ return m_tagFilters; }
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline bool TagFiltersHasBeenSet() const { return m_tagFiltersHasBeenSet; }
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline void SetTagFilters(const Aws::Vector<TagFilter>& value) { m_tagFiltersHasBeenSet = true; m_tagFilters = value; }
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline void SetTagFilters(Aws::Vector<TagFilter>&& value) { m_tagFiltersHasBeenSet = true; m_tagFilters = std::move(value); }
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithTagFilters(const Aws::Vector<TagFilter>& value) { SetTagFilters(value); return *this;}
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithTagFilters(Aws::Vector<TagFilter>&& value) { SetTagFilters(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& AddTagFilters(const TagFilter& value) { m_tagFiltersHasBeenSet = true; m_tagFilters.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>One or more tag filters.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& AddTagFilters(TagFilter&& value) { m_tagFiltersHasBeenSet = true; m_tagFilters.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with a single call. To retrieve the
|
|
* remaining results, make another call with the returned <code>nextToken</code>
|
|
* value.</p>
|
|
*/
|
|
inline int GetMaxResults() const{ return m_maxResults; }
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with a single call. To retrieve the
|
|
* remaining results, make another call with the returned <code>nextToken</code>
|
|
* value.</p>
|
|
*/
|
|
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with a single call. To retrieve the
|
|
* remaining results, make another call with the returned <code>nextToken</code>
|
|
* value.</p>
|
|
*/
|
|
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of results to return with a single call. To retrieve the
|
|
* remaining results, make another call with the returned <code>nextToken</code>
|
|
* value.</p>
|
|
*/
|
|
inline GetResourceSharesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<Aws::String> m_resourceShareArns;
|
|
bool m_resourceShareArnsHasBeenSet;
|
|
|
|
ResourceShareStatus m_resourceShareStatus;
|
|
bool m_resourceShareStatusHasBeenSet;
|
|
|
|
ResourceOwner m_resourceOwner;
|
|
bool m_resourceOwnerHasBeenSet;
|
|
|
|
Aws::String m_name;
|
|
bool m_nameHasBeenSet;
|
|
|
|
Aws::Vector<TagFilter> m_tagFilters;
|
|
bool m_tagFiltersHasBeenSet;
|
|
|
|
Aws::String m_nextToken;
|
|
bool m_nextTokenHasBeenSet;
|
|
|
|
int m_maxResults;
|
|
bool m_maxResultsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RAM
|
|
} // namespace Aws
|