/** * @public * @enum */ export declare const ConnectionType: { readonly CONNECT_SSH: "CONNECT_SSH"; readonly CONNECT_SSM: "CONNECT_SSM"; }; /** * @public */ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType]; /** * @public * @enum */ export declare const MemberPermissions: { readonly READ_ONLY: "read-only"; readonly READ_WRITE: "read-write"; }; /** * @public */ export type MemberPermissions = (typeof MemberPermissions)[keyof typeof MemberPermissions]; /** * @public * @enum */ export declare const Permissions: { readonly OWNER: "owner"; readonly READ_ONLY: "read-only"; readonly READ_WRITE: "read-write"; }; /** * @public */ export type Permissions = (typeof Permissions)[keyof typeof Permissions]; /** * @public * @enum */ export declare const EnvironmentLifecycleStatus: { readonly CREATED: "CREATED"; readonly CREATE_FAILED: "CREATE_FAILED"; readonly CREATING: "CREATING"; readonly DELETE_FAILED: "DELETE_FAILED"; readonly DELETING: "DELETING"; }; /** * @public */ export type EnvironmentLifecycleStatus = (typeof EnvironmentLifecycleStatus)[keyof typeof EnvironmentLifecycleStatus]; /** * @public * @enum */ export declare const ManagedCredentialsStatus: { readonly DISABLED_BY_COLLABORATOR: "DISABLED_BY_COLLABORATOR"; readonly DISABLED_BY_DEFAULT: "DISABLED_BY_DEFAULT"; readonly DISABLED_BY_OWNER: "DISABLED_BY_OWNER"; readonly ENABLED_BY_OWNER: "ENABLED_BY_OWNER"; readonly ENABLED_ON_CREATE: "ENABLED_ON_CREATE"; readonly FAILED_REMOVAL_BY_COLLABORATOR: "FAILED_REMOVAL_BY_COLLABORATOR"; readonly FAILED_REMOVAL_BY_OWNER: "FAILED_REMOVAL_BY_OWNER"; readonly PENDING_REMOVAL_BY_COLLABORATOR: "PENDING_REMOVAL_BY_COLLABORATOR"; readonly PENDING_REMOVAL_BY_OWNER: "PENDING_REMOVAL_BY_OWNER"; readonly PENDING_START_REMOVAL_BY_COLLABORATOR: "PENDING_START_REMOVAL_BY_COLLABORATOR"; readonly PENDING_START_REMOVAL_BY_OWNER: "PENDING_START_REMOVAL_BY_OWNER"; }; /** * @public */ export type ManagedCredentialsStatus = (typeof ManagedCredentialsStatus)[keyof typeof ManagedCredentialsStatus]; /** * @public * @enum */ export declare const EnvironmentType: { readonly EC2: "ec2"; readonly SSH: "ssh"; }; /** * @public */ export type EnvironmentType = (typeof EnvironmentType)[keyof typeof EnvironmentType]; /** * @public * @enum */ export declare const EnvironmentStatus: { readonly CONNECTING: "connecting"; readonly CREATING: "creating"; readonly DELETING: "deleting"; readonly ERROR: "error"; readonly READY: "ready"; readonly STOPPED: "stopped"; readonly STOPPING: "stopping"; }; /** * @public */ export type EnvironmentStatus = (typeof EnvironmentStatus)[keyof typeof EnvironmentStatus]; /** * @public * @enum */ export declare const ManagedCredentialsAction: { readonly DISABLE: "DISABLE"; readonly ENABLE: "ENABLE"; }; /** * @public */ export type ManagedCredentialsAction = (typeof ManagedCredentialsAction)[keyof typeof ManagedCredentialsAction];