Enum aws_config::imds::client::EndpointMode
source · #[non_exhaustive]
pub enum EndpointMode {
IpV4,
IpV6,
}
Expand description
IMDSv2 Endpoint Mode
IMDS can be accessed in two ways:
- Via the IpV4 endpoint:
http://169.254.169.254
- Via the Ipv6 endpoint:
http://[fd00:ec2::254]
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
IpV4
IpV4 mode: http://169.254.169.254
This mode is the default unless otherwise specified.
IpV6
IpV6 mode: http://[fd00:ec2::254]
Trait Implementations§
source§impl Clone for EndpointMode
impl Clone for EndpointMode
source§fn clone(&self) -> EndpointMode
fn clone(&self) -> EndpointMode
Returns a copy 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 more