Struct aws_sdk_acm::input::ImportCertificateInput [−][src]
#[non_exhaustive]pub struct ImportCertificateInput {
pub certificate_arn: Option<String>,
pub certificate: Option<Blob>,
pub private_key: Option<Blob>,
pub certificate_chain: Option<Blob>,
pub tags: Option<Vec<Tag>>,
}
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_arn: Option<String>
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
certificate: Option<Blob>
The certificate to import.
private_key: Option<Blob>
The private key that matches the public key in the certificate.
certificate_chain: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportCertificate, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportCertificate, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ImportCertificate
>
Creates a new builder-style object to manufacture ImportCertificateInput
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
The certificate to import.
The private key that matches the public key in the certificate.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ImportCertificateInput
impl Send for ImportCertificateInput
impl Sync for ImportCertificateInput
impl Unpin for ImportCertificateInput
impl UnwindSafe for ImportCertificateInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more