Details
Description
For now all MQ instances are created with "public accessibility" = false using "createBroker" command. As result, created AWS Broker instance is not accessible outside AWS environment. And there is no way to change it (corresponding parameter in not propagated to AWS MQ client).
It is necessary to add propagation of "publiclyAccessible" parameter to "createBroker" operation:
...
request.withPubliclyAccessible(publiclyAccessible);
...