UNPKG

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

18 lines (17 loc) 425 B
import { AwsCredentialIdentity } from "./identity"; import { Provider } from "./util"; /** * @public * * An object representing temporary or permanent AWS credentials. * * @deprecated Use {@link AwsCredentialIdentity} */ export interface Credentials extends AwsCredentialIdentity { } /** * @public * * @deprecated Use {@link AwsCredentialIdentityProvider} */ export type CredentialProvider = Provider<Credentials>;