Struct aws_sdk_ec2::input::ModifyVpcEndpointInput
source · [−]#[non_exhaustive]pub struct ModifyVpcEndpointInput { /* private fields */ }
Expand description
Contains the parameters for ModifyVpcEndpoint.
Implementations
sourceimpl ModifyVpcEndpointInput
impl ModifyVpcEndpointInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyVpcEndpoint, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyVpcEndpoint, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ModifyVpcEndpoint
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ModifyVpcEndpointInput
.
sourceimpl ModifyVpcEndpointInput
impl ModifyVpcEndpointInput
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 vpc_endpoint_id(&self) -> Option<&str>
pub fn vpc_endpoint_id(&self) -> Option<&str>
The ID of the endpoint.
sourcepub fn reset_policy(&self) -> Option<bool>
pub fn reset_policy(&self) -> Option<bool>
(Gateway endpoint) Specify true
to reset the policy document to the default policy. The default policy allows full access to the service.
sourcepub fn policy_document(&self) -> Option<&str>
pub fn policy_document(&self) -> Option<&str>
(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format.
sourcepub fn add_route_table_ids(&self) -> Option<&[String]>
pub fn add_route_table_ids(&self) -> Option<&[String]>
(Gateway endpoint) One or more route tables IDs to associate with the endpoint.
sourcepub fn remove_route_table_ids(&self) -> Option<&[String]>
pub fn remove_route_table_ids(&self) -> Option<&[String]>
(Gateway endpoint) One or more route table IDs to disassociate from the endpoint.
sourcepub fn add_subnet_ids(&self) -> Option<&[String]>
pub fn add_subnet_ids(&self) -> Option<&[String]>
(Interface and Gateway Load Balancer endpoints) One or more subnet IDs in which to serve the endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
sourcepub fn remove_subnet_ids(&self) -> Option<&[String]>
pub fn remove_subnet_ids(&self) -> Option<&[String]>
(Interface endpoint) One or more subnets IDs in which to remove the endpoint.
sourcepub fn add_security_group_ids(&self) -> Option<&[String]>
pub fn add_security_group_ids(&self) -> Option<&[String]>
(Interface endpoint) One or more security group IDs to associate with the network interface.
sourcepub fn remove_security_group_ids(&self) -> Option<&[String]>
pub fn remove_security_group_ids(&self) -> Option<&[String]>
(Interface endpoint) One or more security group IDs to disassociate from the network interface.
sourcepub fn ip_address_type(&self) -> Option<&IpAddressType>
pub fn ip_address_type(&self) -> Option<&IpAddressType>
The IP address type for the endpoint.
sourcepub fn dns_options(&self) -> Option<&DnsOptionsSpecification>
pub fn dns_options(&self) -> Option<&DnsOptionsSpecification>
The DNS options for the endpoint.
sourcepub fn private_dns_enabled(&self) -> Option<bool>
pub fn private_dns_enabled(&self) -> Option<bool>
(Interface endpoint) Indicates whether a private hosted zone is associated with the VPC.
Trait Implementations
sourceimpl Clone for ModifyVpcEndpointInput
impl Clone for ModifyVpcEndpointInput
sourcefn clone(&self) -> ModifyVpcEndpointInput
fn clone(&self) -> ModifyVpcEndpointInput
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 more
sourceimpl Debug for ModifyVpcEndpointInput
impl Debug for ModifyVpcEndpointInput
sourceimpl PartialEq<ModifyVpcEndpointInput> for ModifyVpcEndpointInput
impl PartialEq<ModifyVpcEndpointInput> for ModifyVpcEndpointInput
sourcefn eq(&self, other: &ModifyVpcEndpointInput) -> bool
fn eq(&self, other: &ModifyVpcEndpointInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for ModifyVpcEndpointInput
Auto Trait Implementations
impl RefUnwindSafe for ModifyVpcEndpointInput
impl Send for ModifyVpcEndpointInput
impl Sync for ModifyVpcEndpointInput
impl Unpin for ModifyVpcEndpointInput
impl UnwindSafe for ModifyVpcEndpointInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more