interface CfnTrustStoreProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpacesWeb.CfnTrustStoreProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspacesweb#CfnTrustStoreProps |
Java | software.amazon.awscdk.services.workspacesweb.CfnTrustStoreProps |
Python | aws_cdk.aws_workspacesweb.CfnTrustStoreProps |
TypeScript | aws-cdk-lib » aws_workspacesweb » CfnTrustStoreProps |
Properties for defining a CfnTrustStore.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspacesweb as workspacesweb } from 'aws-cdk-lib';
const cfnTrustStoreProps: workspacesweb.CfnTrustStoreProps = {
certificateList: ['certificateList'],
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string[] | A list of CA certificates to be added to the trust store. |
| tags? | Cfn[] | The tags to add to the trust store. |
certificateList
Type:
string[]
A list of CA certificates to be added to the trust store.
tags?
Type:
Cfn[]
(optional)
The tags to add to the trust store.
A tag is a key-value pair.

.NET
Go
Java
Python
TypeScript