pub struct GetKeyRotationStatusRequest {
pub key_id: String,
}Expand description
AWS API: kms.v1.GetKeyRotationStatusRequest
Fields§
§key_id: StringGets the rotation status for the specified KMS key. Specify the key ID or key ARN of the KMS key. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN. For example: Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab To get the key ID and key ARN for a KMS key, use ListKeys or DescribeKey.
Trait Implementations§
Source§impl Clone for GetKeyRotationStatusRequest
impl Clone for GetKeyRotationStatusRequest
Source§fn clone(&self) -> GetKeyRotationStatusRequest
fn clone(&self) -> GetKeyRotationStatusRequest
Returns a duplicate 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 GetKeyRotationStatusRequest
impl Debug for GetKeyRotationStatusRequest
Source§impl Default for GetKeyRotationStatusRequest
impl Default for GetKeyRotationStatusRequest
Source§fn default() -> GetKeyRotationStatusRequest
fn default() -> GetKeyRotationStatusRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetKeyRotationStatusRequest
impl<'de> Deserialize<'de> for GetKeyRotationStatusRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetKeyRotationStatusRequest
impl RefUnwindSafe for GetKeyRotationStatusRequest
impl Send for GetKeyRotationStatusRequest
impl Sync for GetKeyRotationStatusRequest
impl Unpin for GetKeyRotationStatusRequest
impl UnsafeUnpin for GetKeyRotationStatusRequest
impl UnwindSafe for GetKeyRotationStatusRequest
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