Struct aws_sdk_apprunner::model::egress_configuration::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for EgressConfiguration
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn egress_type(self, input: EgressType) -> Self
pub fn egress_type(self, input: EgressType) -> Self
The type of egress configuration.
Set to DEFAULT
for access to resources hosted on public networks.
Set to VPC
to associate your service to a custom VPC specified by VpcConnectorArn
.
sourcepub fn set_egress_type(self, input: Option<EgressType>) -> Self
pub fn set_egress_type(self, input: Option<EgressType>) -> Self
The type of egress configuration.
Set to DEFAULT
for access to resources hosted on public networks.
Set to VPC
to associate your service to a custom VPC specified by VpcConnectorArn
.
sourcepub fn vpc_connector_arn(self, input: impl Into<String>) -> Self
pub fn vpc_connector_arn(self, input: impl Into<String>) -> Self
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
.
sourcepub fn set_vpc_connector_arn(self, input: Option<String>) -> Self
pub fn set_vpc_connector_arn(self, input: Option<String>) -> Self
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
.
sourcepub fn build(self) -> EgressConfiguration
pub fn build(self) -> EgressConfiguration
Consumes the builder and constructs a EgressConfiguration
.