src/main/java/software/amazon/sqs/sample/ReceiveMessage.java [26:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		SqsClient sqsClient = SqsClient.builder().region(Region.US_EAST_1).build();
		try {
			Collection<QueueAttributeName> attributeNames = new ArrayList<QueueAttributeName>();
			attributeNames.add(QueueAttributeName.ALL);
			Collection<String> messageAttributeNames = new ArrayList<String>();
			messageAttributeNames.add("All");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/software/amazon/sqs/sample/ReceiveMessage_FIFO.java [26:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		SqsClient sqsClient = SqsClient.builder().region(Region.US_EAST_1).build();
		try {
			Collection<QueueAttributeName> attributeNames = new ArrayList<QueueAttributeName>();
			attributeNames.add(QueueAttributeName.ALL);
			Collection<String> messageAttributeNames = new ArrayList<String>();
			messageAttributeNames.add("All");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



