Struct aws_sdk_acm::output::get_certificate_output::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for GetCertificateOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn certificate(self, input: impl Into<String>) -> Self
pub fn certificate(self, input: impl Into<String>) -> Self
The ACM-issued certificate corresponding to the ARN specified as input.
sourcepub fn set_certificate(self, input: Option<String>) -> Self
pub fn set_certificate(self, input: Option<String>) -> Self
The ACM-issued certificate corresponding to the ARN specified as input.
sourcepub fn certificate_chain(self, input: impl Into<String>) -> Self
pub fn certificate_chain(self, input: impl Into<String>) -> Self
Certificates forming the requested certificate's chain of trust. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
sourcepub fn set_certificate_chain(self, input: Option<String>) -> Self
pub fn set_certificate_chain(self, input: Option<String>) -> Self
Certificates forming the requested certificate's chain of trust. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
sourcepub fn build(self) -> GetCertificateOutput
pub fn build(self) -> GetCertificateOutput
Consumes the builder and constructs a GetCertificateOutput
.