Struct aws_sdk_ec2::input::DeleteRouteInput
source · [−]#[non_exhaustive]pub struct DeleteRouteInput { /* private fields */ }
Implementations
sourceimpl DeleteRouteInput
impl DeleteRouteInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteRoute, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteRoute, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteRoute
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteRouteInput
.
sourceimpl DeleteRouteInput
impl DeleteRouteInput
sourcepub fn destination_cidr_block(&self) -> Option<&str>
pub fn destination_cidr_block(&self) -> Option<&str>
The IPv4 CIDR range for the route. The value you specify must match the CIDR for the route exactly.
sourcepub fn destination_ipv6_cidr_block(&self) -> Option<&str>
pub fn destination_ipv6_cidr_block(&self) -> Option<&str>
The IPv6 CIDR range for the route. The value you specify must match the CIDR for the route exactly.
sourcepub fn destination_prefix_list_id(&self) -> Option<&str>
pub fn destination_prefix_list_id(&self) -> Option<&str>
The ID of the prefix list for the route.
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn route_table_id(&self) -> Option<&str>
pub fn route_table_id(&self) -> Option<&str>
The ID of the route table.
Trait Implementations
sourceimpl Clone for DeleteRouteInput
impl Clone for DeleteRouteInput
sourcefn clone(&self) -> DeleteRouteInput
fn clone(&self) -> DeleteRouteInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for DeleteRouteInput
impl Debug for DeleteRouteInput
sourceimpl PartialEq<DeleteRouteInput> for DeleteRouteInput
impl PartialEq<DeleteRouteInput> for DeleteRouteInput
sourcefn eq(&self, other: &DeleteRouteInput) -> bool
fn eq(&self, other: &DeleteRouteInput) -> bool
impl StructuralPartialEq for DeleteRouteInput
Auto Trait Implementations
impl RefUnwindSafe for DeleteRouteInput
impl Send for DeleteRouteInput
impl Sync for DeleteRouteInput
impl Unpin for DeleteRouteInput
impl UnwindSafe for DeleteRouteInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more