Struct aws_sdk_appmesh::input::update_gateway_route_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for UpdateGatewayRouteInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn gateway_route_name(self, input: impl Into<String>) -> Self
pub fn gateway_route_name(self, input: impl Into<String>) -> Self
The name of the gateway route to update.
sourcepub fn set_gateway_route_name(self, input: Option<String>) -> Self
pub fn set_gateway_route_name(self, input: Option<String>) -> Self
The name of the gateway route to update.
sourcepub fn mesh_name(self, input: impl Into<String>) -> Self
pub fn mesh_name(self, input: impl Into<String>) -> Self
The name of the service mesh that the gateway route resides in.
sourcepub fn set_mesh_name(self, input: Option<String>) -> Self
pub fn set_mesh_name(self, input: Option<String>) -> Self
The name of the service mesh that the gateway route resides in.
sourcepub fn virtual_gateway_name(self, input: impl Into<String>) -> Self
pub fn virtual_gateway_name(self, input: impl Into<String>) -> Self
The name of the virtual gateway that the gateway route is associated with.
sourcepub fn set_virtual_gateway_name(self, input: Option<String>) -> Self
pub fn set_virtual_gateway_name(self, input: Option<String>) -> Self
The name of the virtual gateway that the gateway route is associated with.
sourcepub fn spec(self, input: GatewayRouteSpec) -> Self
pub fn spec(self, input: GatewayRouteSpec) -> Self
The new gateway route specification to apply. This overwrites the existing data.
sourcepub fn set_spec(self, input: Option<GatewayRouteSpec>) -> Self
pub fn set_spec(self, input: Option<GatewayRouteSpec>) -> Self
The new gateway route specification to apply. This overwrites the existing data.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.
sourcepub fn mesh_owner(self, input: impl Into<String>) -> Self
pub fn mesh_owner(self, input: impl Into<String>) -> Self
The Amazon Web Services IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.
sourcepub fn set_mesh_owner(self, input: Option<String>) -> Self
pub fn set_mesh_owner(self, input: Option<String>) -> Self
The Amazon Web Services IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.
sourcepub fn build(self) -> Result<UpdateGatewayRouteInput, BuildError>
pub fn build(self) -> Result<UpdateGatewayRouteInput, BuildError>
Consumes the builder and constructs a UpdateGatewayRouteInput
.