pub struct PublicKey {
pub created_time: String,
pub id: String,
pub public_key_config: PublicKeyConfig,
}
Expand description
A complex data type of public keys you add to CloudFront to use with features like field-level encryption.
Fields§
§created_time: String
A time you added a public key to CloudFront.
id: String
A unique ID assigned to a public key you've added to CloudFront.
public_key_config: PublicKeyConfig
A complex data type for a public key you add to CloudFront to use with features like field-level encryption.
Trait Implementations§
impl StructuralPartialEq for PublicKey
Auto Trait Implementations§
impl Freeze for PublicKey
impl RefUnwindSafe for PublicKey
impl Send for PublicKey
impl Sync for PublicKey
impl Unpin for PublicKey
impl UnwindSafe for PublicKey
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