Skip to content

Modify Trust Store

elbv2_modify_trust_store R Documentation

Update the ca certificate bundle for the specified trust store

Description

Update the ca certificate bundle for the specified trust store.

Usage

elbv2_modify_trust_store(TrustStoreArn, CaCertificatesBundleS3Bucket,
  CaCertificatesBundleS3Key, CaCertificatesBundleS3ObjectVersion)

Arguments

TrustStoreArn

[required] The Amazon Resource Name (ARN) of the trust store.

CaCertificatesBundleS3Bucket

[required] The Amazon S3 bucket for the ca certificates bundle.

CaCertificatesBundleS3Key

[required] The Amazon S3 path for the ca certificates bundle.

CaCertificatesBundleS3ObjectVersion

The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.

Value

A list with the following syntax:

list(
  TrustStores = list(
    list(
      Name = "string",
      TrustStoreArn = "string",
      Status = "ACTIVE"|"CREATING",
      NumberOfCaCertificates = 123,
      TotalRevokedEntries = 123
    )
  )
)

Request syntax

svc$modify_trust_store(
  TrustStoreArn = "string",
  CaCertificatesBundleS3Bucket = "string",
  CaCertificatesBundleS3Key = "string",
  CaCertificatesBundleS3ObjectVersion = "string"
)