Struct aws_sdk_kms::types::XksProxyConfigurationType
source · #[non_exhaustive]pub struct XksProxyConfigurationType {
pub connectivity: Option<XksProxyConnectivityType>,
pub access_key_id: Option<String>,
pub uri_endpoint: Option<String>,
pub uri_path: Option<String>,
pub vpc_endpoint_service_name: Option<String>,
}
Expand description
Detailed information about the external key store proxy (XKS proxy). Your external key store proxy translates KMS requests into a format that your external key manager can understand. These fields appear in a DescribeCustomKeyStores
response only when the CustomKeyStoreType
is EXTERNAL_KEY_STORE
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.connectivity: Option<XksProxyConnectivityType>
Indicates whether the external key store proxy uses a public endpoint or an Amazon VPC endpoint service to communicate with KMS.
access_key_id: Option<String>
The part of the external key store proxy authentication credential that uniquely identifies the secret access key.
uri_endpoint: Option<String>
The URI endpoint for the external key store proxy.
If the external key store proxy has a public endpoint, it is displayed here.
If the external key store proxy uses an Amazon VPC endpoint service name, this field displays the private DNS name associated with the VPC endpoint service.
uri_path: Option<String>
The path to the external key store proxy APIs.
vpc_endpoint_service_name: Option<String>
The Amazon VPC endpoint service used to communicate with the external key store proxy. This field appears only when the external key store proxy uses an Amazon VPC endpoint service to communicate with KMS.
Implementations§
source§impl XksProxyConfigurationType
impl XksProxyConfigurationType
sourcepub fn connectivity(&self) -> Option<&XksProxyConnectivityType>
pub fn connectivity(&self) -> Option<&XksProxyConnectivityType>
Indicates whether the external key store proxy uses a public endpoint or an Amazon VPC endpoint service to communicate with KMS.
sourcepub fn access_key_id(&self) -> Option<&str>
pub fn access_key_id(&self) -> Option<&str>
The part of the external key store proxy authentication credential that uniquely identifies the secret access key.
sourcepub fn uri_endpoint(&self) -> Option<&str>
pub fn uri_endpoint(&self) -> Option<&str>
The URI endpoint for the external key store proxy.
If the external key store proxy has a public endpoint, it is displayed here.
If the external key store proxy uses an Amazon VPC endpoint service name, this field displays the private DNS name associated with the VPC endpoint service.
sourcepub fn vpc_endpoint_service_name(&self) -> Option<&str>
pub fn vpc_endpoint_service_name(&self) -> Option<&str>
The Amazon VPC endpoint service used to communicate with the external key store proxy. This field appears only when the external key store proxy uses an Amazon VPC endpoint service to communicate with KMS.
source§impl XksProxyConfigurationType
impl XksProxyConfigurationType
sourcepub fn builder() -> XksProxyConfigurationTypeBuilder
pub fn builder() -> XksProxyConfigurationTypeBuilder
Creates a new builder-style object to manufacture XksProxyConfigurationType
.
Trait Implementations§
source§impl Clone for XksProxyConfigurationType
impl Clone for XksProxyConfigurationType
source§fn clone(&self) -> XksProxyConfigurationType
fn clone(&self) -> XksProxyConfigurationType
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for XksProxyConfigurationType
impl Debug for XksProxyConfigurationType
source§impl PartialEq for XksProxyConfigurationType
impl PartialEq for XksProxyConfigurationType
source§fn eq(&self, other: &XksProxyConfigurationType) -> bool
fn eq(&self, other: &XksProxyConfigurationType) -> bool
self
and other
values to be equal, and is used
by ==
.