/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.ram.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetResourceShareAssociationsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* Specifies whether you want to retrieve the associations that involve a specified resource or principal. *

* */ private String associationType; /** *

* Specifies a list of Amazon * Resource Names (ARNs) of the resource share whose associations you want to retrieve. *

*/ private java.util.List resourceShareArns; /** *

* Specifies the Amazon * Resource Name (ARN) of a resource whose resource shares you want to retrieve. *

*

* You cannot specify this parameter if the association type is PRINCIPAL. *

*/ private String resourceArn; /** *

* Specifies the ID of the principal whose resource shares you want to retrieve. This can be an Amazon Web Services * account ID, an organization ID, an organizational unit ID, or the Amazon Resource Name (ARN) * of an individual IAM role or user. *

*

* You cannot specify this parameter if the association type is RESOURCE. *

*/ private String principal; /** *

* Specifies that you want to retrieve only associations that have this status. *

*/ private String associationStatus; /** *

* Specifies that you want to receive the next page of results. Valid only if you received a NextToken * response in the previous request. If you did, it indicates that more output is available. Set this parameter to * the value provided by the previous call's NextToken response to request the next page of results. *

*/ private String nextToken; /** *

* Specifies the total number of results that you want included on each page of the response. If you do not include * this parameter, it defaults to a value that is specific to the operation. If additional items exist beyond the * number you specify, the NextToken response element is returned with a value (not null). Include the * specified value as the NextToken request parameter in the next call to the operation to get the next * part of the results. Note that the service might return fewer results than the maximum even when there are more * results available. You should check NextToken after every operation to ensure that you receive all * of the results. *

*/ private Integer maxResults; /** *

* Specifies whether you want to retrieve the associations that involve a specified resource or principal. *

* * * @param associationType * Specifies whether you want to retrieve the associations that involve a specified resource or * principal.

*