src/main/java/software/amazon/sqs/sample/ReceiveMessage.java [44:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
				System.out.println("Message has system attributes: " + message.hasAttributes());
				System.out.println("Message has user attributes: " + message.hasMessageAttributes());
				System.out.println("\nFetchig Message System Attributes");
				Map<MessageSystemAttributeName, String> attributes = message.attributes();
				for (Map.Entry<MessageSystemAttributeName, String> entry : attributes.entrySet()) {
					System.out.println(entry.getKey() + ": " + entry.getValue());
				}
				System.out.println("\nFetchig Message Attributes");
				Map<String, MessageAttributeValue> messageAttributes = message.messageAttributes();
				for (Map.Entry<String, MessageAttributeValue> entry : messageAttributes.entrySet()) {
					System.out.println(entry.getKey() + ": " + entry.getValue());
				}
			}
		} catch (SqsException e) {
			System.err.println(e.awsErrorDetails().errorMessage());
			System.exit(1);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/software/amazon/sqs/sample/ReceiveMessage_AWSXRay_Tracing.java [50:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
				System.out.println("Message has system attributes: " + message.hasAttributes());
				System.out.println("Message has user attributes: " + message.hasMessageAttributes());

				System.out.println("\nFetchig Message System Attributes");
				// Fetch Message System Attributes
				Map<MessageSystemAttributeName, String> attributes = message.attributes();
				for (Map.Entry<MessageSystemAttributeName, String> entry : attributes.entrySet()) {
					System.out.println(entry.getKey() + ": " + entry.getValue());
				}

				System.out.println("\nFetchig Message Attributes");
				// Fetch Message Attributes
				Map<String, MessageAttributeValue> messageAttributes = message.messageAttributes();
				for (Map.Entry<String, MessageAttributeValue> entry : messageAttributes.entrySet()) {
					System.out.println(entry.getKey() + ": " + entry.getValue());
				}
			}

		} catch (SqsException e) {
			System.err.println(e.awsErrorDetails().errorMessage());
			System.exit(1);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



