Interface EgressConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EgressConfiguration.Builder,EgressConfiguration>,SdkBuilder<EgressConfiguration.Builder,EgressConfiguration>,SdkPojo
- Enclosing class:
- EgressConfiguration
public static interface EgressConfiguration.Builder extends SdkPojo, CopyableBuilder<EgressConfiguration.Builder,EgressConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EgressConfiguration.BuilderegressType(String egressType)The type of egress configuration.EgressConfiguration.BuilderegressType(EgressType egressType)The type of egress configuration.EgressConfiguration.BuildervpcConnectorArn(String vpcConnectorArn)The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service.-
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
-
egressType
EgressConfiguration.Builder egressType(String egressType)
The type of egress configuration.
Set to
DEFAULTfor access to resources hosted on public networks.Set to
VPCto associate your service to a custom VPC specified byVpcConnectorArn.- Parameters:
egressType- The type of egress configuration.Set to
DEFAULTfor access to resources hosted on public networks.Set to
VPCto associate your service to a custom VPC specified byVpcConnectorArn.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EgressType,EgressType
-
egressType
EgressConfiguration.Builder egressType(EgressType egressType)
The type of egress configuration.
Set to
DEFAULTfor access to resources hosted on public networks.Set to
VPCto associate your service to a custom VPC specified byVpcConnectorArn.- Parameters:
egressType- The type of egress configuration.Set to
DEFAULTfor access to resources hosted on public networks.Set to
VPCto associate your service to a custom VPC specified byVpcConnectorArn.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EgressType,EgressType
-
vpcConnectorArn
EgressConfiguration.Builder vpcConnectorArn(String vpcConnectorArn)
The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid when
EgressType = VPC.- Parameters:
vpcConnectorArn- The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. Only valid whenEgressType = VPC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-