Struct aws_sdk_grafana::types::NetworkAccessConfiguration
source · #[non_exhaustive]pub struct NetworkAccessConfiguration { /* private fields */ }
Expand description
The configuration settings for in-bound network access to your workspace.
When this is configured, only listed IP addresses and VPC endpoints will be able to access your workspace. Standard Grafana authentication and authorization will still be required.
If this is not configured, or is removed, then all IP addresses and VPC endpoints will be allowed. Standard Grafana authentication and authorization will still be required.
Implementations§
source§impl NetworkAccessConfiguration
impl NetworkAccessConfiguration
sourcepub fn prefix_list_ids(&self) -> Option<&[String]>
pub fn prefix_list_ids(&self) -> Option<&[String]>
An array of prefix list IDs. A prefix list is a list of CIDR ranges of IP addresses. The IP addresses specified are allowed to access your workspace. If the list is not included in the configuration then no IP addresses will be allowed to access the workspace. You create a prefix list using the Amazon VPC console.
Prefix list IDs have the format pl-1a2b3c4d
.
For more information about prefix lists, see Group CIDR blocks using managed prefix listsin the Amazon Virtual Private Cloud User Guide.
sourcepub fn vpce_ids(&self) -> Option<&[String]>
pub fn vpce_ids(&self) -> Option<&[String]>
An array of Amazon VPC endpoint IDs for the workspace. You can create VPC endpoints to your Amazon Managed Grafana workspace for access from within a VPC. If a NetworkAccessConfiguration
is specified then only VPC endpoints specified here will be allowed to access the workspace.
VPC endpoint IDs have the format vpce-1a2b3c4d
.
For more information about creating an interface VPC endpoint, see Interface VPC endpoints in the Amazon Managed Grafana User Guide.
The only VPC endpoints that can be specified here are interface VPC endpoints for Grafana workspaces (using the com.amazonaws.[region].grafana-workspace
service endpoint). Other VPC endpoints will be ignored.
source§impl NetworkAccessConfiguration
impl NetworkAccessConfiguration
sourcepub fn builder() -> NetworkAccessConfigurationBuilder
pub fn builder() -> NetworkAccessConfigurationBuilder
Creates a new builder-style object to manufacture NetworkAccessConfiguration
.
Trait Implementations§
source§impl Clone for NetworkAccessConfiguration
impl Clone for NetworkAccessConfiguration
source§fn clone(&self) -> NetworkAccessConfiguration
fn clone(&self) -> NetworkAccessConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NetworkAccessConfiguration
impl Debug for NetworkAccessConfiguration
source§impl PartialEq<NetworkAccessConfiguration> for NetworkAccessConfiguration
impl PartialEq<NetworkAccessConfiguration> for NetworkAccessConfiguration
source§fn eq(&self, other: &NetworkAccessConfiguration) -> bool
fn eq(&self, other: &NetworkAccessConfiguration) -> bool
self
and other
values to be equal, and is used
by ==
.