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

com.amazonaws.services.s3control.model.GetAccessPointResult 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

There is a newer version: 1.12.780
Show 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;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetAccessPointResult extends com.amazonaws.AmazonWebServiceResult implements
        Serializable, Cloneable {

    /**
     * 

* The name of the specified access point. *

*/ private String name; /** *

* The name of the bucket associated with the specified access point. *

*/ private String bucket; /** *

* Indicates whether this access point allows access from the public internet. If VpcConfiguration is * specified for this access point, then NetworkOrigin is VPC, and the access point * doesn't allow access from the public internet. Otherwise, NetworkOrigin is Internet, * and the access point allows access from the public internet, subject to the access point and bucket access * policies. *

*

* This will always be true for an Amazon S3 on Outposts access point *

*/ private String networkOrigin; /** *

* Contains the virtual private cloud (VPC) configuration for the specified access point. *

* *

* This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon * Web Services. *

*
*/ private VpcConfiguration vpcConfiguration; private PublicAccessBlockConfiguration publicAccessBlockConfiguration; /** *

* The date and time when the specified access point was created. *

*/ private java.util.Date creationDate; /** *

* The name or alias of the access point. *

*/ private String alias; /** *

* The ARN of the access point. *

*/ private String accessPointArn; /** *

* The VPC endpoint for the access point. *

*/ private java.util.Map endpoints; /** *

* The Amazon Web Services account ID associated with the S3 bucket associated with this access point. *

*/ private String bucketAccountId; /** *

* The name of the specified access point. *

* * @param name * The name of the specified access point. */ public void setName(String name) { this.name = name; } /** *

* The name of the specified access point. *

* * @return The name of the specified access point. */ public String getName() { return this.name; } /** *

* The name of the specified access point. *

* * @param name * The name of the specified access point. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withName(String name) { setName(name); return this; } /** *

* The name of the bucket associated with the specified access point. *

* * @param bucket * The name of the bucket associated with the specified access point. */ public void setBucket(String bucket) { this.bucket = bucket; } /** *

* The name of the bucket associated with the specified access point. *

* * @return The name of the bucket associated with the specified access point. */ public String getBucket() { return this.bucket; } /** *

* The name of the bucket associated with the specified access point. *

* * @param bucket * The name of the bucket associated with the specified access point. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withBucket(String bucket) { setBucket(bucket); return this; } /** *

* Indicates whether this access point allows access from the public internet. If VpcConfiguration is * specified for this access point, then NetworkOrigin is VPC, and the access point * doesn't allow access from the public internet. Otherwise, NetworkOrigin is Internet, * and the access point allows access from the public internet, subject to the access point and bucket access * policies. *

*

* This will always be true for an Amazon S3 on Outposts access point *

* * @param networkOrigin * Indicates whether this access point allows access from the public internet. If * VpcConfiguration is specified for this access point, then NetworkOrigin is * VPC, and the access point doesn't allow access from the public internet. Otherwise, * NetworkOrigin is Internet, and the access point allows access from the public * internet, subject to the access point and bucket access policies.

*

* This will always be true for an Amazon S3 on Outposts access point * @see NetworkOrigin */ public void setNetworkOrigin(String networkOrigin) { this.networkOrigin = networkOrigin; } /** *

* Indicates whether this access point allows access from the public internet. If VpcConfiguration is * specified for this access point, then NetworkOrigin is VPC, and the access point * doesn't allow access from the public internet. Otherwise, NetworkOrigin is Internet, * and the access point allows access from the public internet, subject to the access point and bucket access * policies. *

*

* This will always be true for an Amazon S3 on Outposts access point *

* * @return Indicates whether this access point allows access from the public internet. If * VpcConfiguration is specified for this access point, then NetworkOrigin is * VPC, and the access point doesn't allow access from the public internet. Otherwise, * NetworkOrigin is Internet, and the access point allows access from the public * internet, subject to the access point and bucket access policies.

*

* This will always be true for an Amazon S3 on Outposts access point * @see NetworkOrigin */ public String getNetworkOrigin() { return this.networkOrigin; } /** *

* Indicates whether this access point allows access from the public internet. If VpcConfiguration is * specified for this access point, then NetworkOrigin is VPC, and the access point * doesn't allow access from the public internet. Otherwise, NetworkOrigin is Internet, * and the access point allows access from the public internet, subject to the access point and bucket access * policies. *

*

* This will always be true for an Amazon S3 on Outposts access point *

* * @param networkOrigin * Indicates whether this access point allows access from the public internet. If * VpcConfiguration is specified for this access point, then NetworkOrigin is * VPC, and the access point doesn't allow access from the public internet. Otherwise, * NetworkOrigin is Internet, and the access point allows access from the public * internet, subject to the access point and bucket access policies.

*

* This will always be true for an Amazon S3 on Outposts access point * @return Returns a reference to this object so that method calls can be chained together. * @see NetworkOrigin */ public GetAccessPointResult withNetworkOrigin(String networkOrigin) { setNetworkOrigin(networkOrigin); return this; } /** *

* Indicates whether this access point allows access from the public internet. If VpcConfiguration is * specified for this access point, then NetworkOrigin is VPC, and the access point * doesn't allow access from the public internet. Otherwise, NetworkOrigin is Internet, * and the access point allows access from the public internet, subject to the access point and bucket access * policies. *

*

* This will always be true for an Amazon S3 on Outposts access point *

* * @param networkOrigin * Indicates whether this access point allows access from the public internet. If * VpcConfiguration is specified for this access point, then NetworkOrigin is * VPC, and the access point doesn't allow access from the public internet. Otherwise, * NetworkOrigin is Internet, and the access point allows access from the public * internet, subject to the access point and bucket access policies.

*

* This will always be true for an Amazon S3 on Outposts access point * @return Returns a reference to this object so that method calls can be chained together. * @see NetworkOrigin */ public GetAccessPointResult withNetworkOrigin(NetworkOrigin networkOrigin) { this.networkOrigin = networkOrigin.toString(); return this; } /** *

* Contains the virtual private cloud (VPC) configuration for the specified access point. *

* *

* This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon * Web Services. *

*
* * @param vpcConfiguration * Contains the virtual private cloud (VPC) configuration for the specified access point.

*

* This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other * Amazon Web Services. *

*/ public void setVpcConfiguration(VpcConfiguration vpcConfiguration) { this.vpcConfiguration = vpcConfiguration; } /** *

* Contains the virtual private cloud (VPC) configuration for the specified access point. *

* *

* This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon * Web Services. *

*
* * @return Contains the virtual private cloud (VPC) configuration for the specified access point.

*

* This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other * Amazon Web Services. *

*/ public VpcConfiguration getVpcConfiguration() { return this.vpcConfiguration; } /** *

* Contains the virtual private cloud (VPC) configuration for the specified access point. *

* *

* This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other Amazon * Web Services. *

*
* * @param vpcConfiguration * Contains the virtual private cloud (VPC) configuration for the specified access point.

*

* This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other * Amazon Web Services. *

* @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withVpcConfiguration(VpcConfiguration vpcConfiguration) { setVpcConfiguration(vpcConfiguration); return this; } /** * @param publicAccessBlockConfiguration */ public void setPublicAccessBlockConfiguration(PublicAccessBlockConfiguration publicAccessBlockConfiguration) { this.publicAccessBlockConfiguration = publicAccessBlockConfiguration; } /** * @return */ public PublicAccessBlockConfiguration getPublicAccessBlockConfiguration() { return this.publicAccessBlockConfiguration; } /** * @param publicAccessBlockConfiguration * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withPublicAccessBlockConfiguration(PublicAccessBlockConfiguration publicAccessBlockConfiguration) { setPublicAccessBlockConfiguration(publicAccessBlockConfiguration); return this; } /** *

* The date and time when the specified access point was created. *

* * @param creationDate * The date and time when the specified access point was created. */ public void setCreationDate(java.util.Date creationDate) { this.creationDate = creationDate; } /** *

* The date and time when the specified access point was created. *

* * @return The date and time when the specified access point was created. */ public java.util.Date getCreationDate() { return this.creationDate; } /** *

* The date and time when the specified access point was created. *

* * @param creationDate * The date and time when the specified access point was created. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withCreationDate(java.util.Date creationDate) { setCreationDate(creationDate); return this; } /** *

* The name or alias of the access point. *

* * @param alias * The name or alias of the access point. */ public void setAlias(String alias) { this.alias = alias; } /** *

* The name or alias of the access point. *

* * @return The name or alias of the access point. */ public String getAlias() { return this.alias; } /** *

* The name or alias of the access point. *

* * @param alias * The name or alias of the access point. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withAlias(String alias) { setAlias(alias); return this; } /** *

* The ARN of the access point. *

* * @param accessPointArn * The ARN of the access point. */ public void setAccessPointArn(String accessPointArn) { this.accessPointArn = accessPointArn; } /** *

* The ARN of the access point. *

* * @return The ARN of the access point. */ public String getAccessPointArn() { return this.accessPointArn; } /** *

* The ARN of the access point. *

* * @param accessPointArn * The ARN of the access point. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withAccessPointArn(String accessPointArn) { setAccessPointArn(accessPointArn); return this; } /** *

* The VPC endpoint for the access point. *

* * @return The VPC endpoint for the access point. */ public java.util.Map getEndpoints() { return endpoints; } /** *

* The VPC endpoint for the access point. *

* * @param endpoints * The VPC endpoint for the access point. */ public void setEndpoints(java.util.Map endpoints) { this.endpoints = endpoints; } /** *

* The VPC endpoint for the access point. *

* * @param endpoints * The VPC endpoint for the access point. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withEndpoints(java.util.Map endpoints) { setEndpoints(endpoints); return this; } /** * Add a single Endpoints entry * * @see GetAccessPointResult#withEndpoints * @returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult addEndpointsEntry(String key, String value) { if (null == this.endpoints) { this.endpoints = new java.util.HashMap(); } if (this.endpoints.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.endpoints.put(key, value); return this; } /** * Removes all the entries added into Endpoints. * * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult clearEndpointsEntries() { this.endpoints = null; return this; } /** *

* The Amazon Web Services account ID associated with the S3 bucket associated with this access point. *

* * @param bucketAccountId * The Amazon Web Services account ID associated with the S3 bucket associated with this access point. */ public void setBucketAccountId(String bucketAccountId) { this.bucketAccountId = bucketAccountId; } /** *

* The Amazon Web Services account ID associated with the S3 bucket associated with this access point. *

* * @return The Amazon Web Services account ID associated with the S3 bucket associated with this access point. */ public String getBucketAccountId() { return this.bucketAccountId; } /** *

* The Amazon Web Services account ID associated with the S3 bucket associated with this access point. *

* * @param bucketAccountId * The Amazon Web Services account ID associated with the S3 bucket associated with this access point. * @return Returns a reference to this object so that method calls can be chained together. */ public GetAccessPointResult withBucketAccountId(String bucketAccountId) { setBucketAccountId(bucketAccountId); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getBucket() != null) sb.append("Bucket: ").append(getBucket()).append(","); if (getNetworkOrigin() != null) sb.append("NetworkOrigin: ").append(getNetworkOrigin()).append(","); if (getVpcConfiguration() != null) sb.append("VpcConfiguration: ").append(getVpcConfiguration()).append(","); if (getPublicAccessBlockConfiguration() != null) sb.append("PublicAccessBlockConfiguration: ").append(getPublicAccessBlockConfiguration()).append(","); if (getCreationDate() != null) sb.append("CreationDate: ").append(getCreationDate()).append(","); if (getAlias() != null) sb.append("Alias: ").append(getAlias()).append(","); if (getAccessPointArn() != null) sb.append("AccessPointArn: ").append(getAccessPointArn()).append(","); if (getEndpoints() != null) sb.append("Endpoints: ").append(getEndpoints()).append(","); if (getBucketAccountId() != null) sb.append("BucketAccountId: ").append(getBucketAccountId()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetAccessPointResult == false) return false; GetAccessPointResult other = (GetAccessPointResult) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getBucket() == null ^ this.getBucket() == null) return false; if (other.getBucket() != null && other.getBucket().equals(this.getBucket()) == false) return false; if (other.getNetworkOrigin() == null ^ this.getNetworkOrigin() == null) return false; if (other.getNetworkOrigin() != null && other.getNetworkOrigin().equals(this.getNetworkOrigin()) == false) return false; if (other.getVpcConfiguration() == null ^ this.getVpcConfiguration() == null) return false; if (other.getVpcConfiguration() != null && other.getVpcConfiguration().equals(this.getVpcConfiguration()) == false) return false; if (other.getPublicAccessBlockConfiguration() == null ^ this.getPublicAccessBlockConfiguration() == null) return false; if (other.getPublicAccessBlockConfiguration() != null && other.getPublicAccessBlockConfiguration().equals(this.getPublicAccessBlockConfiguration()) == false) return false; if (other.getCreationDate() == null ^ this.getCreationDate() == null) return false; if (other.getCreationDate() != null && other.getCreationDate().equals(this.getCreationDate()) == false) return false; if (other.getAlias() == null ^ this.getAlias() == null) return false; if (other.getAlias() != null && other.getAlias().equals(this.getAlias()) == false) return false; if (other.getAccessPointArn() == null ^ this.getAccessPointArn() == null) return false; if (other.getAccessPointArn() != null && other.getAccessPointArn().equals(this.getAccessPointArn()) == false) return false; if (other.getEndpoints() == null ^ this.getEndpoints() == null) return false; if (other.getEndpoints() != null && other.getEndpoints().equals(this.getEndpoints()) == false) return false; if (other.getBucketAccountId() == null ^ this.getBucketAccountId() == null) return false; if (other.getBucketAccountId() != null && other.getBucketAccountId().equals(this.getBucketAccountId()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getBucket() == null) ? 0 : getBucket().hashCode()); hashCode = prime * hashCode + ((getNetworkOrigin() == null) ? 0 : getNetworkOrigin().hashCode()); hashCode = prime * hashCode + ((getVpcConfiguration() == null) ? 0 : getVpcConfiguration().hashCode()); hashCode = prime * hashCode + ((getPublicAccessBlockConfiguration() == null) ? 0 : getPublicAccessBlockConfiguration().hashCode()); hashCode = prime * hashCode + ((getCreationDate() == null) ? 0 : getCreationDate().hashCode()); hashCode = prime * hashCode + ((getAlias() == null) ? 0 : getAlias().hashCode()); hashCode = prime * hashCode + ((getAccessPointArn() == null) ? 0 : getAccessPointArn().hashCode()); hashCode = prime * hashCode + ((getEndpoints() == null) ? 0 : getEndpoints().hashCode()); hashCode = prime * hashCode + ((getBucketAccountId() == null) ? 0 : getBucketAccountId().hashCode()); return hashCode; } @Override public GetAccessPointResult clone() { try { return (GetAccessPointResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy