Struct aws_sdk_acm::input::ImportCertificateInput
source · #[non_exhaustive]pub struct ImportCertificateInput { /* private fields */ }
Implementations§
source§impl ImportCertificateInput
impl ImportCertificateInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportCertificate, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportCertificate, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ImportCertificate
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ImportCertificateInput
.
source§impl ImportCertificateInput
impl ImportCertificateInput
sourcepub fn certificate_arn(&self) -> Option<&str>
pub fn certificate_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
sourcepub fn certificate(&self) -> Option<&Blob>
pub fn certificate(&self) -> Option<&Blob>
The certificate to import.
sourcepub fn private_key(&self) -> Option<&Blob>
pub fn private_key(&self) -> Option<&Blob>
The private key that matches the public key in the certificate.
sourcepub fn certificate_chain(&self) -> Option<&Blob>
pub fn certificate_chain(&self) -> Option<&Blob>
The PEM encoded certificate chain.
One or more resource tags to associate with the imported certificate.
Note: You cannot apply tags when reimporting a certificate.
Trait Implementations§
source§impl Clone for ImportCertificateInput
impl Clone for ImportCertificateInput
source§fn clone(&self) -> ImportCertificateInput
fn clone(&self) -> ImportCertificateInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ImportCertificateInput
impl Debug for ImportCertificateInput
source§impl PartialEq<ImportCertificateInput> for ImportCertificateInput
impl PartialEq<ImportCertificateInput> for ImportCertificateInput
source§fn eq(&self, other: &ImportCertificateInput) -> bool
fn eq(&self, other: &ImportCertificateInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.