import * as sns from "@distilled.cloud/aws/sns"; import * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; export interface GetSMSSandboxAccountStatusRequest extends sns.GetSMSSandboxAccountStatusInput { } /** * Runtime binding for `sns:GetSMSSandboxAccountStatus`. * * An account-scoped operation — reports whether the account is still in * the SMS sandbox (only verified destination numbers deliverable). * Provide the `GetSMSSandboxAccountStatusHttp` layer on the Function to implement the binding. * ### SMS Sandbox * **Example:** Check Sandbox Status * ```typescript * const getSandboxStatus = yield* SNS.GetSMSSandboxAccountStatus(); * const { IsInSandbox } = yield* getSandboxStatus(); * ``` * * @binding */ export interface GetSMSSandboxAccountStatus extends Binding.Service Effect.Effect<(request?: GetSMSSandboxAccountStatusRequest) => Effect.Effect>> { } export declare const GetSMSSandboxAccountStatus: GetSMSSandboxAccountStatus; //# sourceMappingURL=GetSMSSandboxAccountStatus.d.ts.map