com.amazonaws.services.identitymanagement.model.ListPoliciesGrantingServiceAccessResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-iam Show documentation
/*
* Copyright 2020-2025 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.identitymanagement.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListPoliciesGrantingServiceAccessResult extends com.amazonaws.AmazonWebServiceResult implements Serializable,
Cloneable {
/**
*
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions policies
* attached to the specified identity (user, group, or role).
*
*/
private com.amazonaws.internal.SdkInternalList policiesGrantingServiceAccess;
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker request parameter to retrieve more items. We
* recommend that you check IsTruncated after every call to ensure that you receive all your results.
*
*/
private Boolean isTruncated;
/**
*
* When IsTruncated is true, this element is present and contains the value to use for the
* Marker parameter in a subsequent pagination request.
*
*/
private String marker;
/**
*
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions policies
* attached to the specified identity (user, group, or role).
*
*
* @return A ListPoliciesGrantingServiceAccess object that contains details about the permissions
* policies attached to the specified identity (user, group, or role).
*/
public java.util.List getPoliciesGrantingServiceAccess() {
if (policiesGrantingServiceAccess == null) {
policiesGrantingServiceAccess = new com.amazonaws.internal.SdkInternalList();
}
return policiesGrantingServiceAccess;
}
/**
*
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions policies
* attached to the specified identity (user, group, or role).
*
*
* @param policiesGrantingServiceAccess
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions
* policies attached to the specified identity (user, group, or role).
*/
public void setPoliciesGrantingServiceAccess(java.util.Collection policiesGrantingServiceAccess) {
if (policiesGrantingServiceAccess == null) {
this.policiesGrantingServiceAccess = null;
return;
}
this.policiesGrantingServiceAccess = new com.amazonaws.internal.SdkInternalList(policiesGrantingServiceAccess);
}
/**
*
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions policies
* attached to the specified identity (user, group, or role).
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPoliciesGrantingServiceAccess(java.util.Collection)} or
* {@link #withPoliciesGrantingServiceAccess(java.util.Collection)} if you want to override the existing values.
*
*
* @param policiesGrantingServiceAccess
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions
* policies attached to the specified identity (user, group, or role).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListPoliciesGrantingServiceAccessResult withPoliciesGrantingServiceAccess(ListPoliciesGrantingServiceAccessEntry... policiesGrantingServiceAccess) {
if (this.policiesGrantingServiceAccess == null) {
setPoliciesGrantingServiceAccess(new com.amazonaws.internal.SdkInternalList(
policiesGrantingServiceAccess.length));
}
for (ListPoliciesGrantingServiceAccessEntry ele : policiesGrantingServiceAccess) {
this.policiesGrantingServiceAccess.add(ele);
}
return this;
}
/**
*
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions policies
* attached to the specified identity (user, group, or role).
*
*
* @param policiesGrantingServiceAccess
* A ListPoliciesGrantingServiceAccess object that contains details about the permissions
* policies attached to the specified identity (user, group, or role).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListPoliciesGrantingServiceAccessResult withPoliciesGrantingServiceAccess(
java.util.Collection policiesGrantingServiceAccess) {
setPoliciesGrantingServiceAccess(policiesGrantingServiceAccess);
return this;
}
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker request parameter to retrieve more items. We
* recommend that you check IsTruncated after every call to ensure that you receive all your results.
*
*
* @param isTruncated
* A flag that indicates whether there are more items to return. If your results were truncated, you can make
* a subsequent pagination request using the Marker request parameter to retrieve more items. We
* recommend that you check IsTruncated after every call to ensure that you receive all your
* results.
*/
public void setIsTruncated(Boolean isTruncated) {
this.isTruncated = isTruncated;
}
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker request parameter to retrieve more items. We
* recommend that you check IsTruncated after every call to ensure that you receive all your results.
*
*
* @return A flag that indicates whether there are more items to return. If your results were truncated, you can
* make a subsequent pagination request using the Marker request parameter to retrieve more
* items. We recommend that you check IsTruncated after every call to ensure that you receive
* all your results.
*/
public Boolean getIsTruncated() {
return this.isTruncated;
}
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker request parameter to retrieve more items. We
* recommend that you check IsTruncated after every call to ensure that you receive all your results.
*
*
* @param isTruncated
* A flag that indicates whether there are more items to return. If your results were truncated, you can make
* a subsequent pagination request using the Marker request parameter to retrieve more items. We
* recommend that you check IsTruncated after every call to ensure that you receive all your
* results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListPoliciesGrantingServiceAccessResult withIsTruncated(Boolean isTruncated) {
setIsTruncated(isTruncated);
return this;
}
/**
*
* A flag that indicates whether there are more items to return. If your results were truncated, you can make a
* subsequent pagination request using the Marker request parameter to retrieve more items. We
* recommend that you check IsTruncated after every call to ensure that you receive all your results.
*
*
* @return A flag that indicates whether there are more items to return. If your results were truncated, you can
* make a subsequent pagination request using the Marker request parameter to retrieve more
* items. We recommend that you check IsTruncated after every call to ensure that you receive
* all your results.
*/
public Boolean isTruncated() {
return this.isTruncated;
}
/**
*
* When IsTruncated is true, this element is present and contains the value to use for the
* Marker parameter in a subsequent pagination request.
*
*
* @param marker
* When IsTruncated is true, this element is present and contains the value to use
* for the Marker parameter in a subsequent pagination request.
*/
public void setMarker(String marker) {
this.marker = marker;
}
/**
*
* When IsTruncated is true, this element is present and contains the value to use for the
* Marker parameter in a subsequent pagination request.
*
*
* @return When IsTruncated is true, this element is present and contains the value to use
* for the Marker parameter in a subsequent pagination request.
*/
public String getMarker() {
return this.marker;
}
/**
*
* When IsTruncated is true, this element is present and contains the value to use for the
* Marker parameter in a subsequent pagination request.
*
*
* @param marker
* When IsTruncated is true, this element is present and contains the value to use
* for the Marker parameter in a subsequent pagination request.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListPoliciesGrantingServiceAccessResult withMarker(String marker) {
setMarker(marker);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getPoliciesGrantingServiceAccess() != null)
sb.append("PoliciesGrantingServiceAccess: ").append(getPoliciesGrantingServiceAccess()).append(",");
if (getIsTruncated() != null)
sb.append("IsTruncated: ").append(getIsTruncated()).append(",");
if (getMarker() != null)
sb.append("Marker: ").append(getMarker());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListPoliciesGrantingServiceAccessResult == false)
return false;
ListPoliciesGrantingServiceAccessResult other = (ListPoliciesGrantingServiceAccessResult) obj;
if (other.getPoliciesGrantingServiceAccess() == null ^ this.getPoliciesGrantingServiceAccess() == null)
return false;
if (other.getPoliciesGrantingServiceAccess() != null
&& other.getPoliciesGrantingServiceAccess().equals(this.getPoliciesGrantingServiceAccess()) == false)
return false;
if (other.getIsTruncated() == null ^ this.getIsTruncated() == null)
return false;
if (other.getIsTruncated() != null && other.getIsTruncated().equals(this.getIsTruncated()) == false)
return false;
if (other.getMarker() == null ^ this.getMarker() == null)
return false;
if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPoliciesGrantingServiceAccess() == null) ? 0 : getPoliciesGrantingServiceAccess().hashCode());
hashCode = prime * hashCode + ((getIsTruncated() == null) ? 0 : getIsTruncated().hashCode());
hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode());
return hashCode;
}
@Override
public ListPoliciesGrantingServiceAccessResult clone() {
try {
return (ListPoliciesGrantingServiceAccessResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}