@juki-team/commons - v0.1.10
    Preparing search index...

    Interface Ec2Instance

    interface Ec2Instance {
        imageId: string;
        instanceId: string;
        instanceLifecycle:
            | "capacity-block"
            | "scheduled"
            | "spot"
            | "interruptible-capacity-reservation"
            | undefined;
        instanceType: string;
        launchTime: Date
        | undefined;
        privateIpAddress: string;
        publicIpAddress: string;
        raw: any;
        securityGroups: { groupId: string; groupName: string }[];
        state:
            | "pending"
            | "running"
            | "shutting-down"
            | "stopped"
            | "stopping"
            | "terminated"
            | undefined;
        subnet: { id: string; name: string };
        tags: { key: string; value: string }[];
        vpcId: string;
    }
    Index

    Properties

    imageId: string
    instanceId: string
    instanceLifecycle:
        | "capacity-block"
        | "scheduled"
        | "spot"
        | "interruptible-capacity-reservation"
        | undefined
    instanceType: string
    launchTime: Date | undefined
    privateIpAddress: string
    publicIpAddress: string
    raw: any
    securityGroups: { groupId: string; groupName: string }[]
    state:
        | "pending"
        | "running"
        | "shutting-down"
        | "stopped"
        | "stopping"
        | "terminated"
        | undefined
    subnet: { id: string; name: string }
    tags: { key: string; value: string }[]
    vpcId: string