210 lines
6.9 KiB
C++
210 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/ram/RAM_EXPORTS.h>
|
|
#include <aws/ram/RAMRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace RAM
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_RAM_API GetResourcePoliciesRequest : public RAMRequest
|
|
{
|
|
public:
|
|
GetResourcePoliciesRequest();
|
|
|
|
// 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 "GetResourcePolicies"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetResourceArns() const{ return m_resourceArns; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline bool ResourceArnsHasBeenSet() const { return m_resourceArnsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline void SetResourceArns(const Aws::Vector<Aws::String>& value) { m_resourceArnsHasBeenSet = true; m_resourceArns = value; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline void SetResourceArns(Aws::Vector<Aws::String>&& value) { m_resourceArnsHasBeenSet = true; m_resourceArns = std::move(value); }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& WithResourceArns(const Aws::Vector<Aws::String>& value) { SetResourceArns(value); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& WithResourceArns(Aws::Vector<Aws::String>&& value) { SetResourceArns(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& AddResourceArns(const Aws::String& value) { m_resourceArnsHasBeenSet = true; m_resourceArns.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& AddResourceArns(Aws::String&& value) { m_resourceArnsHasBeenSet = true; m_resourceArns.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The Amazon Resource Names (ARN) of the resources.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& AddResourceArns(const char* value) { m_resourceArnsHasBeenSet = true; m_resourceArns.push_back(value); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline const Aws::String& GetPrincipal() const{ return m_principal; }
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline bool PrincipalHasBeenSet() const { return m_principalHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline void SetPrincipal(const Aws::String& value) { m_principalHasBeenSet = true; m_principal = value; }
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline void SetPrincipal(Aws::String&& value) { m_principalHasBeenSet = true; m_principal = std::move(value); }
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline void SetPrincipal(const char* value) { m_principalHasBeenSet = true; m_principal.assign(value); }
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& WithPrincipal(const Aws::String& value) { SetPrincipal(value); return *this;}
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& WithPrincipal(Aws::String&& value) { SetPrincipal(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The principal.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& WithPrincipal(const char* value) { SetPrincipal(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 GetResourcePoliciesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The token for the next page of results.</p>
|
|
*/
|
|
inline GetResourcePoliciesRequest& 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 GetResourcePoliciesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::Vector<Aws::String> m_resourceArns;
|
|
bool m_resourceArnsHasBeenSet;
|
|
|
|
Aws::String m_principal;
|
|
bool m_principalHasBeenSet;
|
|
|
|
Aws::String m_nextToken;
|
|
bool m_nextTokenHasBeenSet;
|
|
|
|
int m_maxResults;
|
|
bool m_maxResultsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RAM
|
|
} // namespace Aws
|