Amazon Systems Manager · Schema
Parameter
An SSM Parameter Store parameter containing configuration data.
AutomationManagementOperations
Properties
| Name | Type | Description |
|---|---|---|
| Name | string | The name of the parameter. |
| Type | string | The type of parameter. |
| Value | string | The parameter value. |
| Version | integer | The parameter version. |
| ARN | string | The Amazon Resource Name (ARN) of the parameter. |
| LastModifiedDate | string | Date the parameter was last changed or updated. |
| DataType | string | The data type of the parameter. |
| Selector | string | Either the version number or the label used to retrieve the parameter value. |
| SourceResult | string | The raw result or response from the source. |
JSON Schema
{
"type": "object",
"description": "An SSM Parameter Store parameter containing configuration data.",
"properties": {
"Name": {
"type": "string",
"description": "The name of the parameter."
},
"Type": {
"type": "string",
"description": "The type of parameter.",
"enum": [
"String",
"StringList",
"SecureString"
]
},
"Value": {
"type": "string",
"description": "The parameter value."
},
"Version": {
"type": "integer",
"description": "The parameter version."
},
"ARN": {
"type": "string",
"description": "The Amazon Resource Name (ARN) of the parameter."
},
"LastModifiedDate": {
"type": "string",
"format": "date-time",
"description": "Date the parameter was last changed or updated."
},
"DataType": {
"type": "string",
"description": "The data type of the parameter."
},
"Selector": {
"type": "string",
"description": "Either the version number or the label used to retrieve the parameter value."
},
"SourceResult": {
"type": "string",
"description": "The raw result or response from the source."
}
},
"required": [
"Name",
"Type",
"Value",
"Version"
],
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameter"
}