pub struct ImportCertificateRequest {
pub certificate: Bytes,
pub certificate_arn: Option<String>,
pub certificate_chain: Option<Bytes>,
pub private_key: Bytes,
pub tags: Option<Vec<Tag>>,
}
Fields§
§certificate: Bytes
The certificate to import.
certificate_arn: Option<String>
The Amazon Resource Name (ARN) of an imported certificate to replace. To import a new certificate, omit this field.
certificate_chain: Option<Bytes>
The PEM encoded certificate chain.
private_key: Bytes
The private key that matches the public key in the certificate.
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 ImportCertificateRequest
impl Clone for ImportCertificateRequest
Source§fn clone(&self) -> ImportCertificateRequest
fn clone(&self) -> ImportCertificateRequest
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 ImportCertificateRequest
impl Debug for ImportCertificateRequest
Source§impl Default for ImportCertificateRequest
impl Default for ImportCertificateRequest
Source§fn default() -> ImportCertificateRequest
fn default() -> ImportCertificateRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ImportCertificateRequest
impl PartialEq for ImportCertificateRequest
Source§impl Serialize for ImportCertificateRequest
impl Serialize for ImportCertificateRequest
impl StructuralPartialEq for ImportCertificateRequest
Auto Trait Implementations§
impl !Freeze for ImportCertificateRequest
impl RefUnwindSafe for ImportCertificateRequest
impl Send for ImportCertificateRequest
impl Sync for ImportCertificateRequest
impl Unpin for ImportCertificateRequest
impl UnwindSafe for ImportCertificateRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more