Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for aws (0.12 sec)

  1. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

        /**
         * Creates a new S3StorageClient instance.
         *
         * @param endpoint the S3 endpoint URL (null for AWS default)
         * @param accessKey the AWS access key
         * @param secretKey the AWS secret key
         * @param bucket the bucket name
         * @param region the AWS region
         */
        public S3StorageClient(final String endpoint, final String accessKey, final String secretKey, final String bucket,
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java

     *   <li>region - The AWS region (default: us-east-1)</li>
     *   <li>connectTimeout - Connection timeout in milliseconds (default: 10000)</li>
     *   <li>readTimeout - Read timeout in milliseconds (default: 10000)</li>
     * </ul>
     *
     * <p>The client supports URLs in the format: {@code s3://bucket-name/object-path}
     *
     * <p>Features:
     * <ul>
     *   <li>Automatic initialization of AWS S3 client</li>
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  3. src/main/config/openapi/openapi-user.yaml

                          properties:
                            label:
                              type: string
                              example: AWS
                            value:
                              type: string
                              example: aws
            '400':
              $ref: '#/components/responses/BadRequest'
            '401':
              $ref: '#/components/responses/Unauthorized'
            '404':
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * Storage type for cloud storage (s3, gcs, auto).
         * Determines which storage client to use.
         */
        @Size(max = 20)
        public String storageType;
    
        /**
         * Storage region for S3.
         * AWS region where the S3 bucket is located.
         */
        @Size(max = 100)
        public String storageRegion;
    
        /**
         * GCS project ID.
         * Google Cloud project ID for GCS storage.
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        // ============================================================
    
        /** Cloud-based search engine type. */
        public static final String FESEN_TYPE_CLOUD = "cloud";
    
        /** AWS-based search engine type. */
        public static final String FESEN_TYPE_AWS = "aws";
    
        /** Search engine username configuration key. */
        public static final String FESEN_USERNAME = "fesen.username";
    
        /** Search engine password configuration key. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 35.2K bytes
    - Viewed (0)
Back to top