Description Usage Arguments Value Request syntax
View source: R/ssm_operations.R
Updates one or more values for an SSM document.
1 2 | ssm_update_document(Content, Attachments, Name, VersionName,
DocumentVersion, DocumentFormat, TargetType)
|
Content |
[required] A valid JSON or YAML string. |
Attachments |
A list of key and value pairs that describe attachments to a version of a document. |
Name |
[required] The name of the document that you want to update. |
VersionName |
An optional field specifying the version of the artifact you are updating with the document. For example, "Release 12, Update 6". This value is unique across all versions of a document, and cannot be changed. |
DocumentVersion |
(Required) The latest version of the document that you want to update. The latest document version can be specified using the $LATEST variable or by the version number. Updating a previous version of a document is not supported. |
DocumentFormat |
Specify the document format for the new document version. Systems Manager supports JSON and YAML documents. JSON is the default format. |
TargetType |
Specify a new target type for the document. |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | list(
DocumentDescription = list(
Sha1 = "string",
Hash = "string",
HashType = "Sha256"|"Sha1",
Name = "string",
VersionName = "string",
Owner = "string",
CreatedDate = as.POSIXct(
"2015-01-01"
),
Status = "Creating"|"Active"|"Updating"|"Deleting"|"Failed",
StatusInformation = "string",
DocumentVersion = "string",
Description = "string",
Parameters = list(
list(
Name = "string",
Type = "String"|"StringList",
Description = "string",
DefaultValue = "string"
)
),
PlatformTypes = list(
"Windows"|"Linux"
),
DocumentType = "Command"|"Policy"|"Automation"|"Session"|"Package"|"ApplicationConfiguration"|"ApplicationConfigurationSchema"|"DeploymentStrategy"|"ChangeCalendar"|"Automation.ChangeTemplate",
SchemaVersion = "string",
LatestVersion = "string",
DefaultVersion = "string",
DocumentFormat = "YAML"|"JSON"|"TEXT",
TargetType = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
AttachmentsInformation = list(
list(
Name = "string"
)
),
Requires = list(
list(
Name = "string",
Version = "string"
)
),
Author = "string",
ReviewInformation = list(
list(
ReviewedTime = as.POSIXct(
"2015-01-01"
),
Status = "APPROVED"|"NOT_REVIEWED"|"PENDING"|"REJECTED",
Reviewer = "string"
)
),
ApprovedVersion = "string",
PendingReviewVersion = "string",
ReviewStatus = "APPROVED"|"NOT_REVIEWED"|"PENDING"|"REJECTED"
)
)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.