Struct aws_sdk_gamelift::types::CertificateConfiguration
source · #[non_exhaustive]pub struct CertificateConfiguration {
pub certificate_type: Option<CertificateType>,
}Expand description
Determines whether a TLS/SSL certificate is generated for a fleet. This feature must be enabled when creating the fleet. All instances in a fleet share the same certificate. The certificate can be retrieved by calling the Amazon GameLift Server SDK operation GetInstanceCertificate.
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.certificate_type: Option<CertificateType>Indicates whether a TLS/SSL certificate is generated for a fleet.
Valid values include:
-
GENERATED - Generate a TLS/SSL certificate for this fleet.
-
DISABLED - (default) Do not generate a TLS/SSL certificate for this fleet.
Implementations§
source§impl CertificateConfiguration
impl CertificateConfiguration
sourcepub fn certificate_type(&self) -> Option<&CertificateType>
pub fn certificate_type(&self) -> Option<&CertificateType>
Indicates whether a TLS/SSL certificate is generated for a fleet.
Valid values include:
-
GENERATED - Generate a TLS/SSL certificate for this fleet.
-
DISABLED - (default) Do not generate a TLS/SSL certificate for this fleet.
source§impl CertificateConfiguration
impl CertificateConfiguration
sourcepub fn builder() -> CertificateConfigurationBuilder
pub fn builder() -> CertificateConfigurationBuilder
Creates a new builder-style object to manufacture CertificateConfiguration.
Trait Implementations§
source§impl Clone for CertificateConfiguration
impl Clone for CertificateConfiguration
source§fn clone(&self) -> CertificateConfiguration
fn clone(&self) -> CertificateConfiguration
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CertificateConfiguration
impl Debug for CertificateConfiguration
source§impl PartialEq<CertificateConfiguration> for CertificateConfiguration
impl PartialEq<CertificateConfiguration> for CertificateConfiguration
source§fn eq(&self, other: &CertificateConfiguration) -> bool
fn eq(&self, other: &CertificateConfiguration) -> bool
self and other values to be equal, and is used
by ==.