Update Configuration
mq_update_configuration | R Documentation |
Updates the specified configuration¶
Description¶
Updates the specified configuration.
Usage¶
mq_update_configuration(ConfigurationId, Data, Description)
Arguments¶
ConfigurationId |
[required] The unique ID that Amazon MQ generates for the configuration. |
Data |
[required] Amazon MQ for Active MQ: The base64-encoded XML configuration. Amazon MQ for RabbitMQ: the base64-encoded Cuttlefish configuration. |
Description |
The description of the configuration. |
Value¶
A list with the following syntax:
list(
Arn = "string",
Created = as.POSIXct(
"2015-01-01"
),
Id = "string",
LatestRevision = list(
Created = as.POSIXct(
"2015-01-01"
),
Description = "string",
Revision = 123
),
Name = "string",
Warnings = list(
list(
AttributeName = "string",
ElementName = "string",
Reason = "DISALLOWED_ELEMENT_REMOVED"|"DISALLOWED_ATTRIBUTE_REMOVED"|"INVALID_ATTRIBUTE_VALUE_REMOVED"
)
)
)
Request syntax¶
svc$update_configuration(
ConfigurationId = "string",
Data = "string",
Description = "string"
)