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, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyVpcEndpoint, AwsResponseRetryClassifier>, 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
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more