ImportKeyMaterialRequest: {
    keyId: string;
    keyMaterial: string;
    region?: Region;
    salt?: string;
}

Type declaration

  • keyId: string

    The key's origin must be 'external'.

  • keyMaterial: string

    The key material The key material is a random sequence of bytes used to derive a cryptographic key.

  • Optionalregion?: Region

    Region to target. If none is passed will use default region from the config.

  • Optionalsalt?: string

    A salt can be used to improve the quality of randomness when the key material is generated from a low entropy source.