@karmaniverous/get-dotenv
    Preparing search index...

    Variable awsPluginConfigSchemaConst

    awsPluginConfigSchema: z.ZodObject<
        {
            defaultRegion: z.ZodOptional<z.ZodString>;
            loginOnDemand: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
            profile: z.ZodOptional<z.ZodString>;
            profileFallbackKey: z.ZodOptional<z.ZodDefault<z.ZodString>>;
            profileKey: z.ZodOptional<z.ZodDefault<z.ZodString>>;
            region: z.ZodOptional<z.ZodString>;
            regionKey: z.ZodOptional<z.ZodDefault<z.ZodString>>;
            strategy: z.ZodOptional<
                z.ZodDefault<
                    z.ZodUnion<
                        readonly [z.ZodLiteral<"cli-export">, z.ZodLiteral<"none">],
                    >,
                >,
            >;
        },
        $strip,
    > = ...

    AWS plugin configuration schema.

    This Zod schema is used by the host to validate the plugins.aws config slice.