All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.s3control.model.CreateAccessGrantsInstanceRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS S3 Control module holds the client classes that are used for communicating with AWS S3 Control Service

The newest version!
/*
 * Copyright 2019-2024 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.s3control.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 CreateAccessGrantsInstanceRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The ID of the Amazon Web Services account that is making this request. *

*/ private String accountId; /** *

* If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center * instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center * instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your * corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API * operation to retrieve a list of your Identity Center instances and their ARNs. *

*/ private String identityCenterArn; /** *

* The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label * consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter * resources. *

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

* The ID of the Amazon Web Services account that is making this request. *

* * @param accountId * The ID of the Amazon Web Services account that is making this request. */ public void setAccountId(String accountId) { this.accountId = accountId; } /** *

* The ID of the Amazon Web Services account that is making this request. *

* * @return The ID of the Amazon Web Services account that is making this request. */ public String getAccountId() { return this.accountId; } /** *

* The ID of the Amazon Web Services account that is making this request. *

* * @param accountId * The ID of the Amazon Web Services account that is making this request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAccessGrantsInstanceRequest withAccountId(String accountId) { setAccountId(accountId); return this; } /** *

* If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center * instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center * instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your * corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API * operation to retrieve a list of your Identity Center instances and their ARNs. *

* * @param identityCenterArn * If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity * Center instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM * Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity * Center instance is your corporate identity directory that you added to the IAM Identity Center. You can * use the ListInstances * API operation to retrieve a list of your Identity Center instances and their ARNs. */ public void setIdentityCenterArn(String identityCenterArn) { this.identityCenterArn = identityCenterArn; } /** *

* If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center * instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center * instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your * corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API * operation to retrieve a list of your Identity Center instances and their ARNs. *

* * @return If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity * Center instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM * Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity * Center instance is your corporate identity directory that you added to the IAM Identity Center. You can * use the * ListInstances API operation to retrieve a list of your Identity Center instances and their ARNs. */ public String getIdentityCenterArn() { return this.identityCenterArn; } /** *

* If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity Center * instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center * instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your * corporate identity directory that you added to the IAM Identity Center. You can use the ListInstances API * operation to retrieve a list of your Identity Center instances and their ARNs. *

* * @param identityCenterArn * If you would like to associate your S3 Access Grants instance with an Amazon Web Services IAM Identity * Center instance, use this field to pass the Amazon Resource Name (ARN) of the Amazon Web Services IAM * Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity * Center instance is your corporate identity directory that you added to the IAM Identity Center. You can * use the ListInstances * API operation to retrieve a list of your Identity Center instances and their ARNs. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAccessGrantsInstanceRequest withIdentityCenterArn(String identityCenterArn) { setIdentityCenterArn(identityCenterArn); return this; } /** *

* The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label * consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter * resources. *

* * @return The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a * label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search * for, and filter resources. */ public java.util.List getTags() { return tags; } /** *

* The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label * consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter * resources. *

* * @param tags * The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a * label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search * for, and filter resources. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label * consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter * resources. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

* * @param tags * The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a * label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search * for, and filter resources. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAccessGrantsInstanceRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a label * consisting of a user-defined key and value. Tags can help you manage, identify, organize, search for, and filter * resources. *

* * @param tags * The Amazon Web Services resource tags that you are adding to the S3 Access Grants instance. Each tag is a * label consisting of a user-defined key and value. Tags can help you manage, identify, organize, search * for, and filter resources. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateAccessGrantsInstanceRequest withTags(java.util.Collection tags) { setTags(tags); 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 (getAccountId() != null) sb.append("AccountId: ").append(getAccountId()).append(","); if (getIdentityCenterArn() != null) sb.append("IdentityCenterArn: ").append(getIdentityCenterArn()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateAccessGrantsInstanceRequest == false) return false; CreateAccessGrantsInstanceRequest other = (CreateAccessGrantsInstanceRequest) obj; if (other.getAccountId() == null ^ this.getAccountId() == null) return false; if (other.getAccountId() != null && other.getAccountId().equals(this.getAccountId()) == false) return false; if (other.getIdentityCenterArn() == null ^ this.getIdentityCenterArn() == null) return false; if (other.getIdentityCenterArn() != null && other.getIdentityCenterArn().equals(this.getIdentityCenterArn()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAccountId() == null) ? 0 : getAccountId().hashCode()); hashCode = prime * hashCode + ((getIdentityCenterArn() == null) ? 0 : getIdentityCenterArn().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateAccessGrantsInstanceRequest clone() { return (CreateAccessGrantsInstanceRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy