Interface GetVpcLinkResponse.Builder
-
- All Superinterfaces:
ApiGatewayResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<GetVpcLinkResponse.Builder,GetVpcLinkResponse>,SdkBuilder<GetVpcLinkResponse.Builder,GetVpcLinkResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- GetVpcLinkResponse
public static interface GetVpcLinkResponse.Builder extends ApiGatewayResponse.Builder, SdkPojo, CopyableBuilder<GetVpcLinkResponse.Builder,GetVpcLinkResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetVpcLinkResponse.Builderdescription(String description)The description of the VPC link.GetVpcLinkResponse.Builderid(String id)The identifier of the VpcLink.GetVpcLinkResponse.Buildername(String name)The name used to label and identify the VPC link.GetVpcLinkResponse.Builderstatus(String status)The status of the VPC link.GetVpcLinkResponse.Builderstatus(VpcLinkStatus status)The status of the VPC link.GetVpcLinkResponse.BuilderstatusMessage(String statusMessage)A description about the VPC link status.GetVpcLinkResponse.Buildertags(Map<String,String> tags)The collection of tags.GetVpcLinkResponse.BuildertargetArns(String... targetArns)The ARN of the network load balancer of the VPC targeted by the VPC link.GetVpcLinkResponse.BuildertargetArns(Collection<String> targetArns)The ARN of the network load balancer of the VPC targeted by the VPC link.-
Methods inherited from interface software.amazon.awssdk.services.apigateway.model.ApiGatewayResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
id
GetVpcLinkResponse.Builder id(String id)
The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.
- Parameters:
id- The identifier of the VpcLink. It is used in an Integration to reference this VpcLink.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
GetVpcLinkResponse.Builder name(String name)
The name used to label and identify the VPC link.
- Parameters:
name- The name used to label and identify the VPC link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
GetVpcLinkResponse.Builder description(String description)
The description of the VPC link.
- Parameters:
description- The description of the VPC link.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetArns
GetVpcLinkResponse.Builder targetArns(Collection<String> targetArns)
The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same Amazon Web Services account of the API owner.
- Parameters:
targetArns- The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same Amazon Web Services account of the API owner.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
targetArns
GetVpcLinkResponse.Builder targetArns(String... targetArns)
The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same Amazon Web Services account of the API owner.
- Parameters:
targetArns- The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same Amazon Web Services account of the API owner.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
GetVpcLinkResponse.Builder status(String status)
The status of the VPC link. The valid values are
AVAILABLE,PENDING,DELETING, orFAILED. Deploying an API will wait if the status isPENDINGand will fail if the status isDELETING.- Parameters:
status- The status of the VPC link. The valid values areAVAILABLE,PENDING,DELETING, orFAILED. Deploying an API will wait if the status isPENDINGand will fail if the status isDELETING.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcLinkStatus,VpcLinkStatus
-
status
GetVpcLinkResponse.Builder status(VpcLinkStatus status)
The status of the VPC link. The valid values are
AVAILABLE,PENDING,DELETING, orFAILED. Deploying an API will wait if the status isPENDINGand will fail if the status isDELETING.- Parameters:
status- The status of the VPC link. The valid values areAVAILABLE,PENDING,DELETING, orFAILED. Deploying an API will wait if the status isPENDINGand will fail if the status isDELETING.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcLinkStatus,VpcLinkStatus
-
statusMessage
GetVpcLinkResponse.Builder statusMessage(String statusMessage)
A description about the VPC link status.
- Parameters:
statusMessage- A description about the VPC link status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
GetVpcLinkResponse.Builder tags(Map<String,String> tags)
The collection of tags. Each tag element is associated with a given resource.
- Parameters:
tags- The collection of tags. Each tag element is associated with a given resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-