skip to Main Content

Mapping List<LocalDateTime> to DynamoDB – Amazon web services

I'm trying to map to DynamoDB list of dates in Java @DynamoDBTypeConverted(converter = LocalDateTimeConverter.class) private List<LocalDateTime> acquisitionsDates; public class LocalDateTimeConverter implements DynamoDBTypeConverter<String, LocalDateTime> { @Override public String convert(LocalDateTime dateTime) { return dateTime.format(DateTimeFormatter.ISO_LOCAL_DATE_TIME); } @Override public LocalDateTime unconvert(String dateTimeStr) { return…

VIEW QUESTION

AWS Glue AccessDeniedException Account <ID> is denied access – Amazon web services

I am getting this message when I try to create a crawler on AWS Glue: {"service":"AWSGlue","statusCode":400,"errorCode":"AccessDeniedException","requestId":"RequestIDNumber","errorMessage":"Account <AccountID> is denied access.","type":"AwsServiceError"} already attached all those policies below to the IAM All my Policies here Already setup permissions to the AWS lake…

VIEW QUESTION
Back To Top
Search