Create Trust Store
| cloudfront_create_trust_store | R Documentation |
Creates a trust store¶
Description¶
Creates a trust store.
Usage¶
cloudfront_create_trust_store(Name, CaCertificatesBundleSource,
UseClientCertificateOCSPEndpoint, Tags)
Arguments¶
Name |
[required] A name for the trust store. |
CaCertificatesBundleSource |
[required] The CA certificates bundle source for the trust store. |
UseClientCertificateOCSPEndpoint |
A Boolean that determines whether to use the CA certificate's OCSP endpoint to check certificate revocation status. |
Tags |
A complex type that contains zero or more |
Value¶
A list with the following syntax:
list(
TrustStore = list(
Id = "string",
Arn = "string",
Name = "string",
Status = "pending"|"active"|"failed",
NumberOfCaCertificates = 123,
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
Reason = "string",
UseClientCertificateOCSPEndpoint = TRUE|FALSE
),
ETag = "string"
)
Request syntax¶
svc$create_trust_store(
Name = "string",
CaCertificatesBundleSource = list(
CaCertificatesBundleS3Location = list(
Bucket = "string",
Key = "string",
Region = "string",
Version = "string"
)
),
UseClientCertificateOCSPEndpoint = TRUE|FALSE,
Tags = list(
Items = list(
list(
Key = "string",
Value = "string"
)
)
)
)