All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.davidmoten.aws.lw.client.Formats Maven / Gradle / Ivy

Go to download

Lightweight client for all AWS services (but still with useful builders and XML parser)

The newest version!
package com.github.davidmoten.aws.lw.client;

import java.time.format.DateTimeFormatter;
import java.util.Locale;

public final class Formats {

    private Formats() {
        // prevent instantiation
    }

    /**
     * A common date-time format used in the AWS API. For example {@code Last-Modified}
     * header for an S3 object uses this format.
     * 
     * 

* See Common * Request Headers and Common * Response Headers. */ public static final DateTimeFormatter FULL_DATE = DateTimeFormatter // .ofPattern("EEE, d MMM yyyy HH:mm:ss z", Locale.ENGLISH); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy