Interface LambdaVpcConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LambdaVpcConfig.Builder,LambdaVpcConfig>,SdkBuilder<LambdaVpcConfig.Builder,LambdaVpcConfig>,SdkPojo
- Enclosing class:
- LambdaVpcConfig
public static interface LambdaVpcConfig.Builder extends SdkPojo, CopyableBuilder<LambdaVpcConfig.Builder,LambdaVpcConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LambdaVpcConfig.BuildersecurityGroupIds(String... securityGroupIds)The VPC security groups and subnets that are attached to an AWS Lambda function.LambdaVpcConfig.BuildersecurityGroupIds(Collection<String> securityGroupIds)The VPC security groups and subnets that are attached to an AWS Lambda function.LambdaVpcConfig.BuildersubnetIds(String... subnetIds)A list of VPC subnet IDs.LambdaVpcConfig.BuildersubnetIds(Collection<String> subnetIds)A list of VPC subnet IDs.LambdaVpcConfig.BuildervpcId(String vpcId)The ID of the VPC.-
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, sdkFields
-
-
-
-
Method Detail
-
securityGroupIds
LambdaVpcConfig.Builder securityGroupIds(Collection<String> securityGroupIds)
The VPC security groups and subnets that are attached to an AWS Lambda function. For more information, see VPC Settings.
- Parameters:
securityGroupIds- The VPC security groups and subnets that are attached to an AWS Lambda function. For more information, see VPC Settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityGroupIds
LambdaVpcConfig.Builder securityGroupIds(String... securityGroupIds)
The VPC security groups and subnets that are attached to an AWS Lambda function. For more information, see VPC Settings.
- Parameters:
securityGroupIds- The VPC security groups and subnets that are attached to an AWS Lambda function. For more information, see VPC Settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
LambdaVpcConfig.Builder subnetIds(Collection<String> subnetIds)
A list of VPC subnet IDs.
- Parameters:
subnetIds- A list of VPC subnet IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
subnetIds
LambdaVpcConfig.Builder subnetIds(String... subnetIds)
A list of VPC subnet IDs.
- Parameters:
subnetIds- A list of VPC subnet IDs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcId
LambdaVpcConfig.Builder vpcId(String vpcId)
The ID of the VPC.
- Parameters:
vpcId- The ID of the VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-