Create a package for use with Amazon ES domains.
elasticsearchservice_create_package(PackageName, PackageType,
PackageDescription, PackageSource)
A list with the following syntax:
list(
PackageDetails = list(
PackageID = "string",
PackageName = "string",
PackageType = "TXT-DICTIONARY",
PackageDescription = "string",
PackageStatus = "COPYING"|"COPY_FAILED"|"VALIDATING"|"VALIDATION_FAILED"|"AVAILABLE"|"DELETING"|"DELETED"|"DELETE_FAILED",
CreatedAt = as.POSIXct(
"2015-01-01"
),
LastUpdatedAt = as.POSIXct(
"2015-01-01"
),
AvailablePackageVersion = "string",
ErrorDetails = list(
ErrorType = "string",
ErrorMessage = "string"
)
)
)
[required] Unique identifier for the package.
[required] Type of package. Currently supports only TXT-DICTIONARY.
Description of the package.
[required] The customer S3 location PackageSource
for importing the package.
svc$create_package(
PackageName = "string",
PackageType = "TXT-DICTIONARY",
PackageDescription = "string",
PackageSource = list(
S3BucketName = "string",
S3Key = "string"
)
)