/* * 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.codeguruprofiler.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* *
* The structure representing the <code>removePermissionRequest</code>.</p>
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RemovePermissionRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* Specifies an action group that contains the permissions to remove from a profiling group's resource-based policy.
* One action group is supported, agentPermissions
, which grants ConfigureAgent
and
* PostAgentProfile
permissions.
*
* The name of the profiling group. *
*/ private String profilingGroupName; /** ** A universally unique identifier (UUID) for the revision of the resource-based policy from which you want to * remove permissions. *
*/ private String revisionId; /** *
* Specifies an action group that contains the permissions to remove from a profiling group's resource-based policy.
* One action group is supported, agentPermissions
, which grants ConfigureAgent
and
* PostAgentProfile
permissions.
*
agentPermissions
, which grants
* ConfigureAgent
and PostAgentProfile
permissions.
* @see ActionGroup
*/
public void setActionGroup(String actionGroup) {
this.actionGroup = actionGroup;
}
/**
*
* Specifies an action group that contains the permissions to remove from a profiling group's resource-based policy.
* One action group is supported, agentPermissions
, which grants ConfigureAgent
and
* PostAgentProfile
permissions.
*
agentPermissions
, which grants
* ConfigureAgent
and PostAgentProfile
permissions.
* @see ActionGroup
*/
public String getActionGroup() {
return this.actionGroup;
}
/**
*
* Specifies an action group that contains the permissions to remove from a profiling group's resource-based policy.
* One action group is supported, agentPermissions
, which grants ConfigureAgent
and
* PostAgentProfile
permissions.
*
agentPermissions
, which grants
* ConfigureAgent
and PostAgentProfile
permissions.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ActionGroup
*/
public RemovePermissionRequest withActionGroup(String actionGroup) {
setActionGroup(actionGroup);
return this;
}
/**
*
* Specifies an action group that contains the permissions to remove from a profiling group's resource-based policy.
* One action group is supported, agentPermissions
, which grants ConfigureAgent
and
* PostAgentProfile
permissions.
*
agentPermissions
, which grants
* ConfigureAgent
and PostAgentProfile
permissions.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ActionGroup
*/
public RemovePermissionRequest withActionGroup(ActionGroup actionGroup) {
this.actionGroup = actionGroup.toString();
return this;
}
/**
* * The name of the profiling group. *
* * @param profilingGroupName * The name of the profiling group. */ public void setProfilingGroupName(String profilingGroupName) { this.profilingGroupName = profilingGroupName; } /** ** The name of the profiling group. *
* * @return The name of the profiling group. */ public String getProfilingGroupName() { return this.profilingGroupName; } /** ** The name of the profiling group. *
* * @param profilingGroupName * The name of the profiling group. * @return Returns a reference to this object so that method calls can be chained together. */ public RemovePermissionRequest withProfilingGroupName(String profilingGroupName) { setProfilingGroupName(profilingGroupName); return this; } /** ** A universally unique identifier (UUID) for the revision of the resource-based policy from which you want to * remove permissions. *
* * @param revisionId * A universally unique identifier (UUID) for the revision of the resource-based policy from which you want * to remove permissions. */ public void setRevisionId(String revisionId) { this.revisionId = revisionId; } /** ** A universally unique identifier (UUID) for the revision of the resource-based policy from which you want to * remove permissions. *
* * @return A universally unique identifier (UUID) for the revision of the resource-based policy from which you want * to remove permissions. */ public String getRevisionId() { return this.revisionId; } /** ** A universally unique identifier (UUID) for the revision of the resource-based policy from which you want to * remove permissions. *
* * @param revisionId * A universally unique identifier (UUID) for the revision of the resource-based policy from which you want * to remove permissions. * @return Returns a reference to this object so that method calls can be chained together. */ public RemovePermissionRequest withRevisionId(String revisionId) { setRevisionId(revisionId); 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 (getActionGroup() != null) sb.append("ActionGroup: ").append(getActionGroup()).append(","); if (getProfilingGroupName() != null) sb.append("ProfilingGroupName: ").append(getProfilingGroupName()).append(","); if (getRevisionId() != null) sb.append("RevisionId: ").append(getRevisionId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RemovePermissionRequest == false) return false; RemovePermissionRequest other = (RemovePermissionRequest) obj; if (other.getActionGroup() == null ^ this.getActionGroup() == null) return false; if (other.getActionGroup() != null && other.getActionGroup().equals(this.getActionGroup()) == false) return false; if (other.getProfilingGroupName() == null ^ this.getProfilingGroupName() == null) return false; if (other.getProfilingGroupName() != null && other.getProfilingGroupName().equals(this.getProfilingGroupName()) == false) return false; if (other.getRevisionId() == null ^ this.getRevisionId() == null) return false; if (other.getRevisionId() != null && other.getRevisionId().equals(this.getRevisionId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getActionGroup() == null) ? 0 : getActionGroup().hashCode()); hashCode = prime * hashCode + ((getProfilingGroupName() == null) ? 0 : getProfilingGroupName().hashCode()); hashCode = prime * hashCode + ((getRevisionId() == null) ? 0 : getRevisionId().hashCode()); return hashCode; } @Override public RemovePermissionRequest clone() { return (RemovePermissionRequest) super.clone(); } }