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
15 lines (14 loc) • 433 B
TypeScript
import { SourceProfileInit } from "@smithy/shared-ini-file-loader";
import { AwsCredentialIdentityProvider } from "@smithy/types";
/**
* @internal
*/
export interface FromProcessInit extends SourceProfileInit {
}
/**
* @internal
*
* Creates a credential provider that will read from a credential_process specified
* in ini files.
*/
export declare const fromProcess: (init?: FromProcessInit) => AwsCredentialIdentityProvider;