Search in sources :

Example 1 with EndpointLocation

use of software.amazon.awssdk.services.pinpoint.model.EndpointLocation in project aws-doc-sdk-examples by awsdocs.

the class UpdateEndpoint method createEndpointRequestData.

private static EndpointRequest createEndpointRequestData() {
    try {
        List<String> favoriteTeams = new ArrayList<>();
        favoriteTeams.add("Lakers");
        favoriteTeams.add("Warriors");
        HashMap<String, List<String>> customAttributes = new HashMap<>();
        customAttributes.put("team", favoriteTeams);
        EndpointDemographic demographic = EndpointDemographic.builder().appVersion("1.0").make("apple").model("iPhone").modelVersion("7").platform("ios").platformVersion("10.1.1").timezone("America/Los_Angeles").build();
        EndpointLocation location = EndpointLocation.builder().city("Los Angeles").country("US").latitude(34.0).longitude(-118.2).postalCode("90068").region("CA").build();
        Map<String, Double> metrics = new HashMap<>();
        metrics.put("health", 100.00);
        metrics.put("luck", 75.00);
        EndpointUser user = EndpointUser.builder().userId(UUID.randomUUID().toString()).build();
        // Quoted "Z" to indicate UTC, no timezone offset
        DateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'");
        String nowAsISO = df.format(new Date());
        EndpointRequest endpointRequest = EndpointRequest.builder().address(UUID.randomUUID().toString()).attributes(customAttributes).channelType("APNS").demographic(demographic).effectiveDate(nowAsISO).location(location).metrics(metrics).optOut("NONE").requestId(UUID.randomUUID().toString()).user(user).build();
        return endpointRequest;
    } catch (PinpointException e) {
        System.err.println(e.awsErrorDetails().errorMessage());
        System.exit(1);
    }
    return null;
}
Also used : HashMap(java.util.HashMap) PinpointException(software.amazon.awssdk.services.pinpoint.model.PinpointException) ArrayList(java.util.ArrayList) GetEndpointRequest(software.amazon.awssdk.services.pinpoint.model.GetEndpointRequest) UpdateEndpointRequest(software.amazon.awssdk.services.pinpoint.model.UpdateEndpointRequest) EndpointRequest(software.amazon.awssdk.services.pinpoint.model.EndpointRequest) Date(java.util.Date) EndpointDemographic(software.amazon.awssdk.services.pinpoint.model.EndpointDemographic) EndpointLocation(software.amazon.awssdk.services.pinpoint.model.EndpointLocation) EndpointUser(software.amazon.awssdk.services.pinpoint.model.EndpointUser) SimpleDateFormat(java.text.SimpleDateFormat) DateFormat(java.text.DateFormat) ArrayList(java.util.ArrayList) List(java.util.List) SimpleDateFormat(java.text.SimpleDateFormat)

Aggregations

DateFormat (java.text.DateFormat)1 SimpleDateFormat (java.text.SimpleDateFormat)1 ArrayList (java.util.ArrayList)1 Date (java.util.Date)1 HashMap (java.util.HashMap)1 List (java.util.List)1 EndpointDemographic (software.amazon.awssdk.services.pinpoint.model.EndpointDemographic)1 EndpointLocation (software.amazon.awssdk.services.pinpoint.model.EndpointLocation)1 EndpointRequest (software.amazon.awssdk.services.pinpoint.model.EndpointRequest)1 EndpointUser (software.amazon.awssdk.services.pinpoint.model.EndpointUser)1 GetEndpointRequest (software.amazon.awssdk.services.pinpoint.model.GetEndpointRequest)1 PinpointException (software.amazon.awssdk.services.pinpoint.model.PinpointException)1 UpdateEndpointRequest (software.amazon.awssdk.services.pinpoint.model.UpdateEndpointRequest)1