Interface VpcLink.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcLink.Builder,VpcLink>,SdkBuilder<VpcLink.Builder,VpcLink>,SdkPojo
- Enclosing class:
- VpcLink
public static interface VpcLink.Builder extends SdkPojo, CopyableBuilder<VpcLink.Builder,VpcLink>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcLink.Builderdescription(String description)The description of the VPC link.VpcLink.Builderid(String id)The identifier of the VpcLink.VpcLink.Buildername(String name)The name used to label and identify the VPC link.VpcLink.Builderstatus(String status)The status of the VPC link.VpcLink.Builderstatus(VpcLinkStatus status)The status of the VPC link.VpcLink.BuilderstatusMessage(String statusMessage)A description about the VPC link status.VpcLink.Buildertags(Map<String,String> tags)The collection of tags.VpcLink.BuildertargetArns(String... targetArns)The ARN of the network load balancer of the VPC targeted by the VPC link.VpcLink.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.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
-
-
-
-
Method Detail
-
id
VpcLink.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
VpcLink.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
VpcLink.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
VpcLink.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
VpcLink.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
VpcLink.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
VpcLink.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
VpcLink.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
VpcLink.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.
-
-