pub struct AcceptVpcEndpointConnectionsRequest {
pub dry_run: Option<bool>,
pub service_id: String,
pub vpc_endpoint_ids: Vec<String>,
}Fields§
§dry_run: 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.
service_id: StringThe ID of the VPC endpoint service.
vpc_endpoint_ids: Vec<String>The IDs of one or more interface VPC endpoints.
Trait Implementations§
Source§impl Clone for AcceptVpcEndpointConnectionsRequest
impl Clone for AcceptVpcEndpointConnectionsRequest
Source§fn clone(&self) -> AcceptVpcEndpointConnectionsRequest
fn clone(&self) -> AcceptVpcEndpointConnectionsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AcceptVpcEndpointConnectionsRequest
impl Default for AcceptVpcEndpointConnectionsRequest
Source§fn default() -> AcceptVpcEndpointConnectionsRequest
fn default() -> AcceptVpcEndpointConnectionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for AcceptVpcEndpointConnectionsRequest
impl PartialEq for AcceptVpcEndpointConnectionsRequest
Source§fn eq(&self, other: &AcceptVpcEndpointConnectionsRequest) -> bool
fn eq(&self, other: &AcceptVpcEndpointConnectionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AcceptVpcEndpointConnectionsRequest
Auto Trait Implementations§
impl Freeze for AcceptVpcEndpointConnectionsRequest
impl RefUnwindSafe for AcceptVpcEndpointConnectionsRequest
impl Send for AcceptVpcEndpointConnectionsRequest
impl Sync for AcceptVpcEndpointConnectionsRequest
impl Unpin for AcceptVpcEndpointConnectionsRequest
impl UnwindSafe for AcceptVpcEndpointConnectionsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more