[−][src]Struct rusoto_ec2::CreateVpcEndpointRequest
Contains the parameters for CreateVpcEndpoint.
Fields
client_token: Option<String>
Unique, case-sensitive identifier you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
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
.
policy_document: Option<String>
A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format. If this parameter is not specified, we attach a default policy that allows full access to the service.
private_dns_enabled: Option<bool>
(Interface endpoint) Indicate whether to associate a private hosted zone with the specified VPC. The private hosted zone contains a record set for the default public DNS name for the service for the Region (for example, kinesis.us-east-1.amazonaws.com
) which resolves to the private IP addresses of the endpoint network interfaces in the VPC. This enables you to make requests to the default public DNS name for the service instead of the public DNS names that are automatically generated by the VPC endpoint service.
To use a private hosted zone, you must set the following VPC attributes to true
: enableDnsHostnames
and enableDnsSupport
. Use ModifyVpcAttribute to set the VPC attributes.
Default: true
route_table_ids: Option<Vec<String>>
(Gateway endpoint) One or more route table IDs.
security_group_ids: Option<Vec<String>>
(Interface endpoint) The ID of one or more security groups to associate with the endpoint network interface.
service_name: String
The service name. To get a list of available services, use the DescribeVpcEndpointServices request, or get the name from the service provider.
subnet_ids: Option<Vec<String>>
(Interface endpoint) The ID of one or more subnets in which to create an endpoint network interface.
vpc_endpoint_type: Option<String>
The type of endpoint.
Default: Gateway
vpc_id: String
The ID of the VPC in which the endpoint will be used.
Trait Implementations
impl PartialEq<CreateVpcEndpointRequest> for CreateVpcEndpointRequest
[src]
fn eq(&self, other: &CreateVpcEndpointRequest) -> bool
[src]
fn ne(&self, other: &CreateVpcEndpointRequest) -> bool
[src]
impl Default for CreateVpcEndpointRequest
[src]
fn default() -> CreateVpcEndpointRequest
[src]
impl Clone for CreateVpcEndpointRequest
[src]
fn clone(&self) -> CreateVpcEndpointRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateVpcEndpointRequest
[src]
Auto Trait Implementations
impl Send for CreateVpcEndpointRequest
impl Sync for CreateVpcEndpointRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self