Learn R Programming

paws (version 0.1.12)

mq: AmazonMQ

Description

Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols.

Usage

mq(config = list())

Value

A client for the service. You can call the service's operations using syntax like svc$operation(...), where svc is the name you've assigned to the client. The available operations are listed in the Operations section.

Arguments

config

Optional configuration of credentials, endpoint, and/or region.

Service syntax

svc <- mq(
  config = list(
    credentials = list(
      creds = list(
        access_key_id = "string",
        secret_access_key = "string",
        session_token = "string"
      ),
      profile = "string"
    ),
    endpoint = "string",
    region = "string"
  )
)

Operations

create_brokerCreates a broker
create_configurationCreates a new configuration for the specified configuration name
create_tagsAdd a tag to a resource
create_userCreates an ActiveMQ user
delete_brokerDeletes a broker
delete_tagsRemoves a tag from a resource
delete_userDeletes an ActiveMQ user
describe_brokerReturns information about the specified broker
describe_broker_engine_typesDescribe available engine types and versions
describe_broker_instance_optionsDescribe available broker instance options
describe_configurationReturns information about the specified configuration
describe_configuration_revisionReturns the specified configuration revision for the specified configuration
describe_userReturns information about an ActiveMQ user
list_brokersReturns a list of all brokers
list_configuration_revisionsReturns a list of all revisions for the specified configuration
list_configurationsReturns a list of all configurations
list_tagsLists tags for a resource
list_usersReturns a list of all ActiveMQ users
reboot_brokerReboots a broker
update_brokerAdds a pending configuration change to a broker
update_configurationUpdates the specified configuration
update_userUpdates the information for an ActiveMQ user

Examples

Run this code
if (FALSE) {
svc <- mq()
svc$create_broker(
  Foo = 123
)
}

Run the code above in your browser using DataLab