@infrascan/aws-s3-scanner
Version:
Infrascan scanner definition for AWS S3
8 lines (5 loc) • 471 B
TypeScript
import { ListBucketsCommandInput, ListBucketsCommandOutput, Bucket } from '@aws-sdk/client-s3';
import { BaseState, TranslatedEntity, State, WithCallContext } from '@infrascan/shared-types';
type GraphState = BaseState<ListBucketsCommandInput>;
declare const S3Entity: TranslatedEntity<BaseState<ListBucketsCommandInput>, State<ListBucketsCommandOutput, ListBucketsCommandInput>, WithCallContext<Bucket, ListBucketsCommandInput>>;
export { type GraphState, S3Entity };