Package com.amazonaws.services.ec2.model
Class CreateVpcEndpointResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.CreateVpcEndpointResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateVpcEndpointResult extends Object implements Serializable, Cloneable
Contains the output of CreateVpcEndpoint.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateVpcEndpointResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateVpcEndpointResult
clone()
boolean
equals(Object obj)
String
getClientToken()
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.VpcEndpoint
getVpcEndpoint()
Information about the endpoint.int
hashCode()
void
setClientToken(String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.void
setVpcEndpoint(VpcEndpoint vpcEndpoint)
Information about the endpoint.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateVpcEndpointResult
withClientToken(String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.CreateVpcEndpointResult
withVpcEndpoint(VpcEndpoint vpcEndpoint)
Information about the endpoint.
-
-
-
Method Detail
-
setVpcEndpoint
public void setVpcEndpoint(VpcEndpoint vpcEndpoint)
Information about the endpoint.
- Parameters:
vpcEndpoint
- Information about the endpoint.
-
getVpcEndpoint
public VpcEndpoint getVpcEndpoint()
Information about the endpoint.
- Returns:
- Information about the endpoint.
-
withVpcEndpoint
public CreateVpcEndpointResult withVpcEndpoint(VpcEndpoint vpcEndpoint)
Information about the endpoint.
- Parameters:
vpcEndpoint
- Information about the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setClientToken
public void setClientToken(String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
- Parameters:
clientToken
- Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
-
getClientToken
public String getClientToken()
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
- Returns:
- Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
-
withClientToken
public CreateVpcEndpointResult withClientToken(String clientToken)
Unique, case-sensitive identifier you provide to ensure the idempotency of the request.
- Parameters:
clientToken
- Unique, case-sensitive identifier you provide to ensure the idempotency of the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CreateVpcEndpointResult clone()
-
-