Struct aws_sdk_rds::model::certificate::Builder
source · [−]pub struct Builder { /* private fields */ }Expand description
A builder for Certificate.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn certificate_identifier(self, input: impl Into<String>) -> Self
pub fn certificate_identifier(self, input: impl Into<String>) -> Self
The unique key that identifies a certificate.
sourcepub fn set_certificate_identifier(self, input: Option<String>) -> Self
pub fn set_certificate_identifier(self, input: Option<String>) -> Self
The unique key that identifies a certificate.
sourcepub fn certificate_type(self, input: impl Into<String>) -> Self
pub fn certificate_type(self, input: impl Into<String>) -> Self
The type of the certificate.
sourcepub fn set_certificate_type(self, input: Option<String>) -> Self
pub fn set_certificate_type(self, input: Option<String>) -> Self
The type of the certificate.
sourcepub fn thumbprint(self, input: impl Into<String>) -> Self
pub fn thumbprint(self, input: impl Into<String>) -> Self
The thumbprint of the certificate.
sourcepub fn set_thumbprint(self, input: Option<String>) -> Self
pub fn set_thumbprint(self, input: Option<String>) -> Self
The thumbprint of the certificate.
sourcepub fn valid_from(self, input: DateTime) -> Self
pub fn valid_from(self, input: DateTime) -> Self
The starting date from which the certificate is valid.
sourcepub fn set_valid_from(self, input: Option<DateTime>) -> Self
pub fn set_valid_from(self, input: Option<DateTime>) -> Self
The starting date from which the certificate is valid.
sourcepub fn valid_till(self, input: DateTime) -> Self
pub fn valid_till(self, input: DateTime) -> Self
The final date that the certificate continues to be valid.
sourcepub fn set_valid_till(self, input: Option<DateTime>) -> Self
pub fn set_valid_till(self, input: Option<DateTime>) -> Self
The final date that the certificate continues to be valid.
sourcepub fn certificate_arn(self, input: impl Into<String>) -> Self
pub fn certificate_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) for the certificate.
sourcepub fn set_certificate_arn(self, input: Option<String>) -> Self
pub fn set_certificate_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) for the certificate.
sourcepub fn customer_override(self, input: bool) -> Self
pub fn customer_override(self, input: bool) -> Self
Whether there is an override for the default certificate identifier.
sourcepub fn set_customer_override(self, input: Option<bool>) -> Self
pub fn set_customer_override(self, input: Option<bool>) -> Self
Whether there is an override for the default certificate identifier.
sourcepub fn customer_override_valid_till(self, input: DateTime) -> Self
pub fn customer_override_valid_till(self, input: DateTime) -> Self
If there is an override for the default certificate identifier, when the override expires.
sourcepub fn set_customer_override_valid_till(self, input: Option<DateTime>) -> Self
pub fn set_customer_override_valid_till(self, input: Option<DateTime>) -> Self
If there is an override for the default certificate identifier, when the override expires.
sourcepub fn build(self) -> Certificate
pub fn build(self) -> Certificate
Consumes the builder and constructs a Certificate.