Struct rusoto_kms::GetParametersForImportResponse [] [src]

pub struct GetParametersForImportResponse {
    pub import_token: Option<Vec<u8>>,
    pub key_id: Option<String>,
    pub parameters_valid_to: Option<f64>,
    pub public_key: Option<Vec<u8>>,
}

Fields

The import token to send in a subsequent ImportKeyMaterial request.

The identifier of the CMK to use in a subsequent ImportKeyMaterial request. This is the same CMK specified in the GetParametersForImport request.

The time at which the import token and public key are no longer valid. After this time, you cannot use them to make an ImportKeyMaterial request and you must send another GetParametersForImport request to retrieve new ones.

The public key to use to encrypt the key material before importing it with ImportKeyMaterial.

Trait Implementations

impl Default for GetParametersForImportResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for GetParametersForImportResponse
[src]

Formats the value using the given formatter.

impl Clone for GetParametersForImportResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more