cdk-ssm-secure-iam-access-key
Version:
Creates an IAM Access Key for a provided IAM User and stores the result in an SSM SecureString Parameter
13 lines (12 loc) • 307 B
TypeScript
/**
* The result of a successful KeyOperation.
*
* @see {KeyOperation}
* @see https://msdn.microsoft.com/en-us/library/dn302313(v=vs.85).aspx
*/
export interface Key {
readonly algorithm: string;
readonly extractable: boolean;
readonly keyUsage: Array<string>;
readonly type: string;
}