import type * as mi from "@distilled.cloud/aws/iot-managed-integrations"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `iotmanagedintegrations:GetCustomEndpoint` * (account-level). * * Reads the account's custom MQTT endpoint address — the address devices * connect to for Managed integrations traffic. Provide the implementation * with `Effect.provide(AWS.IoTManagedIntegrations.GetCustomEndpointHttp)`. * * ### Connectivity * **Example:** Resolve the Custom Endpoint * ```typescript * const getCustomEndpoint = yield* IoTManagedIntegrations.GetCustomEndpoint(); * * const { EndpointAddress } = yield* getCustomEndpoint(); * ``` * * @binding */ export interface GetCustomEndpoint extends Binding.Service Effect.Effect<() => Effect.Effect>> { } export declare const GetCustomEndpoint: GetCustomEndpoint; //# sourceMappingURL=GetCustomEndpoint.d.ts.map