/* * 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.auditmanager.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* A collection of attributes that's used to create a delegation for an assessment in Audit Manager. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateDelegationRequest implements Serializable, Cloneable, StructuredPojo { /** ** A comment that's related to the delegation request. *
*/ private String comment; /** ** The unique identifier for the control set. *
*/ private String controlSetId; /** ** The Amazon Resource Name (ARN) of the IAM role. *
*/ private String roleArn; /** ** The type of customer persona. *
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be RESOURCE_OWNER
.
*
* A comment that's related to the delegation request. *
* * @param comment * A comment that's related to the delegation request. */ public void setComment(String comment) { this.comment = comment; } /** ** A comment that's related to the delegation request. *
* * @return A comment that's related to the delegation request. */ public String getComment() { return this.comment; } /** ** A comment that's related to the delegation request. *
* * @param comment * A comment that's related to the delegation request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDelegationRequest withComment(String comment) { setComment(comment); return this; } /** ** The unique identifier for the control set. *
* * @param controlSetId * The unique identifier for the control set. */ public void setControlSetId(String controlSetId) { this.controlSetId = controlSetId; } /** ** The unique identifier for the control set. *
* * @return The unique identifier for the control set. */ public String getControlSetId() { return this.controlSetId; } /** ** The unique identifier for the control set. *
* * @param controlSetId * The unique identifier for the control set. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDelegationRequest withControlSetId(String controlSetId) { setControlSetId(controlSetId); return this; } /** ** The Amazon Resource Name (ARN) of the IAM role. *
* * @param roleArn * The Amazon Resource Name (ARN) of the IAM role. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** ** The Amazon Resource Name (ARN) of the IAM role. *
* * @return The Amazon Resource Name (ARN) of the IAM role. */ public String getRoleArn() { return this.roleArn; } /** ** The Amazon Resource Name (ARN) of the IAM role. *
* * @param roleArn * The Amazon Resource Name (ARN) of the IAM role. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDelegationRequest withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** ** The type of customer persona. *
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be RESOURCE_OWNER
.
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be
* RESOURCE_OWNER
.
*
* The type of customer persona. *
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be RESOURCE_OWNER
.
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be
* RESOURCE_OWNER
.
*
* The type of customer persona. *
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be RESOURCE_OWNER
.
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be
* RESOURCE_OWNER
.
*
* The type of customer persona. *
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be RESOURCE_OWNER
.
*
* In CreateAssessment
, roleType
can only be PROCESS_OWNER
.
*
* In UpdateSettings
, roleType
can only be PROCESS_OWNER
.
*
* In BatchCreateDelegationByAssessment
, roleType
can only be
* RESOURCE_OWNER
.
*