Interface S3Config.Builder

All Superinterfaces:
Buildable, CopyableBuilder<S3Config.Builder,S3Config>, SdkBuilder<S3Config.Builder,S3Config>, SdkPojo
Enclosing class:
S3Config

@Mutable @NotThreadSafe public static interface S3Config.Builder extends SdkPojo, CopyableBuilder<S3Config.Builder,S3Config>
  • Method Details

    • bucketArn

      S3Config.Builder bucketArn(String bucketArn)

      The Amazon Resource Name (ARN) of the Amazon S3 bucket.

      Parameters:
      bucketArn - The Amazon Resource Name (ARN) of the Amazon S3 bucket.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • dataFormat

      S3Config.Builder dataFormat(String dataFormat)

      Specify the format that files are saved in the Amazon S3 bucket. You can save files in an Apache Parquet or JSON format.

      • Parquet - Store data in a columnar storage file format. Parquet is optimal for fast data retrieval and can reduce costs. This option is selected by default.

      • JSON - Store data in a standard text-based JSON file format.

      Parameters:
      dataFormat - Specify the format that files are saved in the Amazon S3 bucket. You can save files in an Apache Parquet or JSON format.

      • Parquet - Store data in a columnar storage file format. Parquet is optimal for fast data retrieval and can reduce costs. This option is selected by default.

      • JSON - Store data in a standard text-based JSON file format.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • dataFormat

      S3Config.Builder dataFormat(DataFormat dataFormat)

      Specify the format that files are saved in the Amazon S3 bucket. You can save files in an Apache Parquet or JSON format.

      • Parquet - Store data in a columnar storage file format. Parquet is optimal for fast data retrieval and can reduce costs. This option is selected by default.

      • JSON - Store data in a standard text-based JSON file format.

      Parameters:
      dataFormat - Specify the format that files are saved in the Amazon S3 bucket. You can save files in an Apache Parquet or JSON format.

      • Parquet - Store data in a columnar storage file format. Parquet is optimal for fast data retrieval and can reduce costs. This option is selected by default.

      • JSON - Store data in a standard text-based JSON file format.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • storageCompressionFormat

      S3Config.Builder storageCompressionFormat(String storageCompressionFormat)

      By default, stored data is compressed as a .gzip file. Compressed files have a reduced file size, which can optimize the cost of data storage.

      Parameters:
      storageCompressionFormat - By default, stored data is compressed as a .gzip file. Compressed files have a reduced file size, which can optimize the cost of data storage.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • storageCompressionFormat

      S3Config.Builder storageCompressionFormat(StorageCompressionFormat storageCompressionFormat)

      By default, stored data is compressed as a .gzip file. Compressed files have a reduced file size, which can optimize the cost of data storage.

      Parameters:
      storageCompressionFormat - By default, stored data is compressed as a .gzip file. Compressed files have a reduced file size, which can optimize the cost of data storage.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • prefix

      S3Config.Builder prefix(String prefix)

      Enter an S3 bucket prefix. The prefix is the string of characters after the bucket name and before the object name. You can use the prefix to organize data stored in Amazon S3 buckets. For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.

      By default, Amazon Web Services IoT FleetWise sets the prefix processed-data/year=YY/month=MM/date=DD/hour=HH/ (in UTC) to data it delivers to Amazon S3. You can enter a prefix to append it to this default prefix. For example, if you enter the prefix vehicles, the prefix will be vehicles/processed-data/year=YY/month=MM/date=DD/hour=HH/.

      Parameters:
      prefix - Enter an S3 bucket prefix. The prefix is the string of characters after the bucket name and before the object name. You can use the prefix to organize data stored in Amazon S3 buckets. For more information, see Organizing objects using prefixes in the Amazon Simple Storage Service User Guide.

      By default, Amazon Web Services IoT FleetWise sets the prefix processed-data/year=YY/month=MM/date=DD/hour=HH/ (in UTC) to data it delivers to Amazon S3. You can enter a prefix to append it to this default prefix. For example, if you enter the prefix vehicles, the prefix will be vehicles/processed-data/year=YY/month=MM/date=DD/hour=HH/.

      Returns:
      Returns a reference to this object so that method calls can be chained together.