Export Server Engine Attribute
opsworkscm_export_server_engine_attribute | R Documentation |
Exports a specified server engine attribute as a base64-encoded string¶
Description¶
Exports a specified server engine attribute as a base64-encoded string. For example, you can export user data that you can use in EC2 to associate nodes with a server.
This operation is synchronous.
A ValidationException
is raised when parameters of the request are not
valid. A ResourceNotFoundException
is thrown when the server does not
exist. An InvalidStateException
is thrown when the server is in any of
the following states: CREATING, TERMINATED, FAILED or DELETING.
Usage¶
opsworkscm_export_server_engine_attribute(ExportAttributeName,
ServerName, InputAttributes)
Arguments¶
ExportAttributeName |
[required] The name of the export attribute. Currently, the
supported export attribute is |
ServerName |
[required] The name of the server from which you are exporting the attribute. |
InputAttributes |
The list of engine attributes. The list type is
|
Value¶
A list with the following syntax:
list(
EngineAttribute = list(
Name = "string",
Value = "string"
),
ServerName = "string"
)
Request syntax¶
svc$export_server_engine_attribute(
ExportAttributeName = "string",
ServerName = "string",
InputAttributes = list(
list(
Name = "string",
Value = "string"
)
)
)