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

com.amazonaws.services.ec2.model.CreateVpcEndpointServiceConfigurationRequest Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.765
Show newest version
/*
 * Copyright 2016-2021 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.ec2.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.CreateVpcEndpointServiceConfigurationRequestMarshaller;

/**
 * 
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateVpcEndpointServiceConfigurationRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
        DryRunSupportedRequest {

    /**
     * 

* Indicates whether requests from service consumers to create an endpoint to your service must be accepted. To * accept a request, use AcceptVpcEndpointConnections. *

*/ private Boolean acceptanceRequired; /** *

* (Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service. *

*/ private String privateDnsName; /** *

* The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. *

*/ private com.amazonaws.internal.SdkInternalList networkLoadBalancerArns; /** *

* The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. *

*/ private com.amazonaws.internal.SdkInternalList gatewayLoadBalancerArns; /** *

* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *

*/ private String clientToken; /** *

* The tags to associate with the service. *

*/ private com.amazonaws.internal.SdkInternalList tagSpecifications; /** *

* Indicates whether requests from service consumers to create an endpoint to your service must be accepted. To * accept a request, use AcceptVpcEndpointConnections. *

* * @param acceptanceRequired * Indicates whether requests from service consumers to create an endpoint to your service must be accepted. * To accept a request, use AcceptVpcEndpointConnections. */ public void setAcceptanceRequired(Boolean acceptanceRequired) { this.acceptanceRequired = acceptanceRequired; } /** *

* Indicates whether requests from service consumers to create an endpoint to your service must be accepted. To * accept a request, use AcceptVpcEndpointConnections. *

* * @return Indicates whether requests from service consumers to create an endpoint to your service must be accepted. * To accept a request, use AcceptVpcEndpointConnections. */ public Boolean getAcceptanceRequired() { return this.acceptanceRequired; } /** *

* Indicates whether requests from service consumers to create an endpoint to your service must be accepted. To * accept a request, use AcceptVpcEndpointConnections. *

* * @param acceptanceRequired * Indicates whether requests from service consumers to create an endpoint to your service must be accepted. * To accept a request, use AcceptVpcEndpointConnections. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withAcceptanceRequired(Boolean acceptanceRequired) { setAcceptanceRequired(acceptanceRequired); return this; } /** *

* Indicates whether requests from service consumers to create an endpoint to your service must be accepted. To * accept a request, use AcceptVpcEndpointConnections. *

* * @return Indicates whether requests from service consumers to create an endpoint to your service must be accepted. * To accept a request, use AcceptVpcEndpointConnections. */ public Boolean isAcceptanceRequired() { return this.acceptanceRequired; } /** *

* (Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service. *

* * @param privateDnsName * (Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service. */ public void setPrivateDnsName(String privateDnsName) { this.privateDnsName = privateDnsName; } /** *

* (Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service. *

* * @return (Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service. */ public String getPrivateDnsName() { return this.privateDnsName; } /** *

* (Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service. *

* * @param privateDnsName * (Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withPrivateDnsName(String privateDnsName) { setPrivateDnsName(privateDnsName); return this; } /** *

* The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. *

* * @return The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. */ public java.util.List getNetworkLoadBalancerArns() { if (networkLoadBalancerArns == null) { networkLoadBalancerArns = new com.amazonaws.internal.SdkInternalList(); } return networkLoadBalancerArns; } /** *

* The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. *

* * @param networkLoadBalancerArns * The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. */ public void setNetworkLoadBalancerArns(java.util.Collection networkLoadBalancerArns) { if (networkLoadBalancerArns == null) { this.networkLoadBalancerArns = null; return; } this.networkLoadBalancerArns = new com.amazonaws.internal.SdkInternalList(networkLoadBalancerArns); } /** *

* The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. *

*

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

* * @param networkLoadBalancerArns * The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withNetworkLoadBalancerArns(String... networkLoadBalancerArns) { if (this.networkLoadBalancerArns == null) { setNetworkLoadBalancerArns(new com.amazonaws.internal.SdkInternalList(networkLoadBalancerArns.length)); } for (String ele : networkLoadBalancerArns) { this.networkLoadBalancerArns.add(ele); } return this; } /** *

* The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. *

* * @param networkLoadBalancerArns * The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withNetworkLoadBalancerArns(java.util.Collection networkLoadBalancerArns) { setNetworkLoadBalancerArns(networkLoadBalancerArns); return this; } /** *

* The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. *

* * @return The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. */ public java.util.List getGatewayLoadBalancerArns() { if (gatewayLoadBalancerArns == null) { gatewayLoadBalancerArns = new com.amazonaws.internal.SdkInternalList(); } return gatewayLoadBalancerArns; } /** *

* The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. *

* * @param gatewayLoadBalancerArns * The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. */ public void setGatewayLoadBalancerArns(java.util.Collection gatewayLoadBalancerArns) { if (gatewayLoadBalancerArns == null) { this.gatewayLoadBalancerArns = null; return; } this.gatewayLoadBalancerArns = new com.amazonaws.internal.SdkInternalList(gatewayLoadBalancerArns); } /** *

* The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. *

*

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

* * @param gatewayLoadBalancerArns * The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withGatewayLoadBalancerArns(String... gatewayLoadBalancerArns) { if (this.gatewayLoadBalancerArns == null) { setGatewayLoadBalancerArns(new com.amazonaws.internal.SdkInternalList(gatewayLoadBalancerArns.length)); } for (String ele : gatewayLoadBalancerArns) { this.gatewayLoadBalancerArns.add(ele); } return this; } /** *

* The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. *

* * @param gatewayLoadBalancerArns * The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withGatewayLoadBalancerArns(java.util.Collection gatewayLoadBalancerArns) { setGatewayLoadBalancerArns(gatewayLoadBalancerArns); return this; } /** *

* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *

* * @param clientToken * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How to ensure * idempotency. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *

* * @return Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How to ensure * idempotency. */ public String getClientToken() { return this.clientToken; } /** *

* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *

* * @param clientToken * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How to ensure * idempotency. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The tags to associate with the service. *

* * @return The tags to associate with the service. */ public java.util.List getTagSpecifications() { if (tagSpecifications == null) { tagSpecifications = new com.amazonaws.internal.SdkInternalList(); } return tagSpecifications; } /** *

* The tags to associate with the service. *

* * @param tagSpecifications * The tags to associate with the service. */ public void setTagSpecifications(java.util.Collection tagSpecifications) { if (tagSpecifications == null) { this.tagSpecifications = null; return; } this.tagSpecifications = new com.amazonaws.internal.SdkInternalList(tagSpecifications); } /** *

* The tags to associate with the service. *

*

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

* * @param tagSpecifications * The tags to associate with the service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withTagSpecifications(TagSpecification... tagSpecifications) { if (this.tagSpecifications == null) { setTagSpecifications(new com.amazonaws.internal.SdkInternalList(tagSpecifications.length)); } for (TagSpecification ele : tagSpecifications) { this.tagSpecifications.add(ele); } return this; } /** *

* The tags to associate with the service. *

* * @param tagSpecifications * The tags to associate with the service. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcEndpointServiceConfigurationRequest withTagSpecifications(java.util.Collection tagSpecifications) { setTagSpecifications(tagSpecifications); return this; } /** * This method is intended for internal use only. Returns the marshaled request configured with additional * parameters to enable operation dry-run. */ @Override public Request getDryRunRequest() { Request request = new CreateVpcEndpointServiceConfigurationRequestMarshaller().marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } /** * 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 (getAcceptanceRequired() != null) sb.append("AcceptanceRequired: ").append(getAcceptanceRequired()).append(","); if (getPrivateDnsName() != null) sb.append("PrivateDnsName: ").append(getPrivateDnsName()).append(","); if (getNetworkLoadBalancerArns() != null) sb.append("NetworkLoadBalancerArns: ").append(getNetworkLoadBalancerArns()).append(","); if (getGatewayLoadBalancerArns() != null) sb.append("GatewayLoadBalancerArns: ").append(getGatewayLoadBalancerArns()).append(","); if (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getTagSpecifications() != null) sb.append("TagSpecifications: ").append(getTagSpecifications()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateVpcEndpointServiceConfigurationRequest == false) return false; CreateVpcEndpointServiceConfigurationRequest other = (CreateVpcEndpointServiceConfigurationRequest) obj; if (other.getAcceptanceRequired() == null ^ this.getAcceptanceRequired() == null) return false; if (other.getAcceptanceRequired() != null && other.getAcceptanceRequired().equals(this.getAcceptanceRequired()) == false) return false; if (other.getPrivateDnsName() == null ^ this.getPrivateDnsName() == null) return false; if (other.getPrivateDnsName() != null && other.getPrivateDnsName().equals(this.getPrivateDnsName()) == false) return false; if (other.getNetworkLoadBalancerArns() == null ^ this.getNetworkLoadBalancerArns() == null) return false; if (other.getNetworkLoadBalancerArns() != null && other.getNetworkLoadBalancerArns().equals(this.getNetworkLoadBalancerArns()) == false) return false; if (other.getGatewayLoadBalancerArns() == null ^ this.getGatewayLoadBalancerArns() == null) return false; if (other.getGatewayLoadBalancerArns() != null && other.getGatewayLoadBalancerArns().equals(this.getGatewayLoadBalancerArns()) == false) return false; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getTagSpecifications() == null ^ this.getTagSpecifications() == null) return false; if (other.getTagSpecifications() != null && other.getTagSpecifications().equals(this.getTagSpecifications()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAcceptanceRequired() == null) ? 0 : getAcceptanceRequired().hashCode()); hashCode = prime * hashCode + ((getPrivateDnsName() == null) ? 0 : getPrivateDnsName().hashCode()); hashCode = prime * hashCode + ((getNetworkLoadBalancerArns() == null) ? 0 : getNetworkLoadBalancerArns().hashCode()); hashCode = prime * hashCode + ((getGatewayLoadBalancerArns() == null) ? 0 : getGatewayLoadBalancerArns().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getTagSpecifications() == null) ? 0 : getTagSpecifications().hashCode()); return hashCode; } @Override public CreateVpcEndpointServiceConfigurationRequest clone() { return (CreateVpcEndpointServiceConfigurationRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy