the-ldk
Version:
Welcome to the LDK! A collection of custom AWS CDK constructs to help you build serverless applications faster.
10 lines (9 loc) • 394 B
TypeScript
import { CfnAccessKey, IUser } from 'aws-cdk-lib/aws-iam';
import { Stack } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { IAMUserProps } from '../../types/IAMUser.type';
export declare class IAMUser extends Construct {
readonly iamUser: IUser;
readonly iamUserAccessKey: CfnAccessKey | undefined;
constructor(scope: Stack, id: string, props: IAMUserProps);
}