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-ram/include/aws/ram/model/GetResourceShareAssociationsRequest.h

358 lines
14 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/ram/model/ResourceShareAssociationType.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/ram/model/ResourceShareAssociationStatus.h>
#include <utility>
namespace Aws
{
namespace RAM
{
namespace Model
{
/**
*/
class AWS_RAM_API GetResourceShareAssociationsRequest : public RAMRequest
{
public:
GetResourceShareAssociationsRequest();
// 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 "GetResourceShareAssociations"; }
Aws::String SerializePayload() const override;
/**
* <p>The association type. Specify <code>PRINCIPAL</code> to list the principals
* that are associated with the specified resource share. Specify
* <code>RESOURCE</code> to list the resources that are associated with the
* specified resource share.</p>
*/
inline const ResourceShareAssociationType& GetAssociationType() const{ return m_associationType; }
/**
* <p>The association type. Specify <code>PRINCIPAL</code> to list the principals
* that are associated with the specified resource share. Specify
* <code>RESOURCE</code> to list the resources that are associated with the
* specified resource share.</p>
*/
inline bool AssociationTypeHasBeenSet() const { return m_associationTypeHasBeenSet; }
/**
* <p>The association type. Specify <code>PRINCIPAL</code> to list the principals
* that are associated with the specified resource share. Specify
* <code>RESOURCE</code> to list the resources that are associated with the
* specified resource share.</p>
*/
inline void SetAssociationType(const ResourceShareAssociationType& value) { m_associationTypeHasBeenSet = true; m_associationType = value; }
/**
* <p>The association type. Specify <code>PRINCIPAL</code> to list the principals
* that are associated with the specified resource share. Specify
* <code>RESOURCE</code> to list the resources that are associated with the
* specified resource share.</p>
*/
inline void SetAssociationType(ResourceShareAssociationType&& value) { m_associationTypeHasBeenSet = true; m_associationType = std::move(value); }
/**
* <p>The association type. Specify <code>PRINCIPAL</code> to list the principals
* that are associated with the specified resource share. Specify
* <code>RESOURCE</code> to list the resources that are associated with the
* specified resource share.</p>
*/
inline GetResourceShareAssociationsRequest& WithAssociationType(const ResourceShareAssociationType& value) { SetAssociationType(value); return *this;}
/**
* <p>The association type. Specify <code>PRINCIPAL</code> to list the principals
* that are associated with the specified resource share. Specify
* <code>RESOURCE</code> to list the resources that are associated with the
* specified resource share.</p>
*/
inline GetResourceShareAssociationsRequest& WithAssociationType(ResourceShareAssociationType&& value) { SetAssociationType(std::move(value)); return *this;}
/**
* <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 GetResourceShareAssociationsRequest& WithResourceShareArns(const Aws::Vector<Aws::String>& value) { SetResourceShareArns(value); return *this;}
/**
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
*/
inline GetResourceShareAssociationsRequest& WithResourceShareArns(Aws::Vector<Aws::String>&& value) { SetResourceShareArns(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Names (ARN) of the resource shares.</p>
*/
inline GetResourceShareAssociationsRequest& 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 GetResourceShareAssociationsRequest& 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 GetResourceShareAssociationsRequest& AddResourceShareArns(const char* value) { m_resourceShareArnsHasBeenSet = true; m_resourceShareArns.push_back(value); return *this; }
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline const Aws::String& GetResourceArn() const{ return m_resourceArn; }
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline bool ResourceArnHasBeenSet() const { return m_resourceArnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline void SetResourceArn(const Aws::String& value) { m_resourceArnHasBeenSet = true; m_resourceArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline void SetResourceArn(Aws::String&& value) { m_resourceArnHasBeenSet = true; m_resourceArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline void SetResourceArn(const char* value) { m_resourceArnHasBeenSet = true; m_resourceArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline GetResourceShareAssociationsRequest& WithResourceArn(const Aws::String& value) { SetResourceArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline GetResourceShareAssociationsRequest& WithResourceArn(Aws::String&& value) { SetResourceArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the resource. You cannot specify this
* parameter if the association type is <code>PRINCIPAL</code>.</p>
*/
inline GetResourceShareAssociationsRequest& WithResourceArn(const char* value) { SetResourceArn(value); return *this;}
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline const Aws::String& GetPrincipal() const{ return m_principal; }
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline bool PrincipalHasBeenSet() const { return m_principalHasBeenSet; }
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline void SetPrincipal(const Aws::String& value) { m_principalHasBeenSet = true; m_principal = value; }
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline void SetPrincipal(Aws::String&& value) { m_principalHasBeenSet = true; m_principal = std::move(value); }
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline void SetPrincipal(const char* value) { m_principalHasBeenSet = true; m_principal.assign(value); }
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline GetResourceShareAssociationsRequest& WithPrincipal(const Aws::String& value) { SetPrincipal(value); return *this;}
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline GetResourceShareAssociationsRequest& WithPrincipal(Aws::String&& value) { SetPrincipal(std::move(value)); return *this;}
/**
* <p>The principal. You cannot specify this parameter if the association type is
* <code>RESOURCE</code>.</p>
*/
inline GetResourceShareAssociationsRequest& WithPrincipal(const char* value) { SetPrincipal(value); return *this;}
/**
* <p>The association status.</p>
*/
inline const ResourceShareAssociationStatus& GetAssociationStatus() const{ return m_associationStatus; }
/**
* <p>The association status.</p>
*/
inline bool AssociationStatusHasBeenSet() const { return m_associationStatusHasBeenSet; }
/**
* <p>The association status.</p>
*/
inline void SetAssociationStatus(const ResourceShareAssociationStatus& value) { m_associationStatusHasBeenSet = true; m_associationStatus = value; }
/**
* <p>The association status.</p>
*/
inline void SetAssociationStatus(ResourceShareAssociationStatus&& value) { m_associationStatusHasBeenSet = true; m_associationStatus = std::move(value); }
/**
* <p>The association status.</p>
*/
inline GetResourceShareAssociationsRequest& WithAssociationStatus(const ResourceShareAssociationStatus& value) { SetAssociationStatus(value); return *this;}
/**
* <p>The association status.</p>
*/
inline GetResourceShareAssociationsRequest& WithAssociationStatus(ResourceShareAssociationStatus&& value) { SetAssociationStatus(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 GetResourceShareAssociationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
/**
* <p>The token for the next page of results.</p>
*/
inline GetResourceShareAssociationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
/**
* <p>The token for the next page of results.</p>
*/
inline GetResourceShareAssociationsRequest& 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 GetResourceShareAssociationsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
private:
ResourceShareAssociationType m_associationType;
bool m_associationTypeHasBeenSet;
Aws::Vector<Aws::String> m_resourceShareArns;
bool m_resourceShareArnsHasBeenSet;
Aws::String m_resourceArn;
bool m_resourceArnHasBeenSet;
Aws::String m_principal;
bool m_principalHasBeenSet;
ResourceShareAssociationStatus m_associationStatus;
bool m_associationStatusHasBeenSet;
Aws::String m_nextToken;
bool m_nextTokenHasBeenSet;
int m_maxResults;
bool m_maxResultsHasBeenSet;
};
} // namespace Model
} // namespace RAM
} // namespace Aws