Interface TestGridProject.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestGridProject.Builder,TestGridProject>,SdkBuilder<TestGridProject.Builder,TestGridProject>,SdkPojo
- Enclosing class:
- TestGridProject
public static interface TestGridProject.Builder extends SdkPojo, CopyableBuilder<TestGridProject.Builder,TestGridProject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description TestGridProject.Builderarn(String arn)The ARN for the project.TestGridProject.Buildercreated(Instant created)When the project was created.TestGridProject.Builderdescription(String description)A human-readable description for the project.TestGridProject.Buildername(String name)A human-readable name for the project.default TestGridProject.BuildervpcConfig(Consumer<TestGridVpcConfig.Builder> vpcConfig)The VPC security groups and subnets that are attached to a project.TestGridProject.BuildervpcConfig(TestGridVpcConfig vpcConfig)The VPC security groups and subnets that are attached to a project.-
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
-
arn
TestGridProject.Builder arn(String arn)
The ARN for the project.
- Parameters:
arn- The ARN for the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
TestGridProject.Builder name(String name)
A human-readable name for the project.
- Parameters:
name- A human-readable name for the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
TestGridProject.Builder description(String description)
A human-readable description for the project.
- Parameters:
description- A human-readable description for the project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcConfig
TestGridProject.Builder vpcConfig(TestGridVpcConfig vpcConfig)
The VPC security groups and subnets that are attached to a project.
- Parameters:
vpcConfig- The VPC security groups and subnets that are attached to a project.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
vpcConfig
default TestGridProject.Builder vpcConfig(Consumer<TestGridVpcConfig.Builder> vpcConfig)
The VPC security groups and subnets that are attached to a project.
This is a convenience method that creates an instance of theTestGridVpcConfig.Builderavoiding the need to create one manually viaTestGridVpcConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovpcConfig(TestGridVpcConfig).- Parameters:
vpcConfig- a consumer that will call methods onTestGridVpcConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
vpcConfig(TestGridVpcConfig)
-
created
TestGridProject.Builder created(Instant created)
When the project was created.
- Parameters:
created- When the project was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-