pub struct PrivateLinkConfig {
pub private_link_endpoint: Option<String>,
pub security_group_arns: Option<Vec<String>>,
pub subnet_arns: Option<Vec<String>>,
pub vpc_endpoint_id: Option<String>,
}
Expand description
The VPC endpoint, subnet and security group that an agent uses to access IP addresses in a VPC (Virtual Private Cloud).
Fields§
§private_link_endpoint: Option<String>
The private endpoint that is configured for an agent that has access to IP addresses in a PrivateLink. An agent that is configured with this endpoint will not be accessible over the public Internet.
security_group_arns: Option<Vec<String>>
The Amazon Resource Names (ARNs) of the security groups that are configured for the EC2 resource that hosts an agent activated in a VPC or an agent that has access to a VPC endpoint.
subnet_arns: Option<Vec<String>>
The Amazon Resource Names (ARNs) of the subnets that are configured for an agent activated in a VPC or an agent that has access to a VPC endpoint.
vpc_endpoint_id: Option<String>
The ID of the VPC endpoint that is configured for an agent. An agent that is configured with a VPC endpoint will not be accessible over the public Internet.
Trait Implementations§
Source§impl Clone for PrivateLinkConfig
impl Clone for PrivateLinkConfig
Source§fn clone(&self) -> PrivateLinkConfig
fn clone(&self) -> PrivateLinkConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more