interface CfnTrustStoreMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpacesWeb.Mixins.CfnTrustStoreMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspacesweb/mixins#CfnTrustStoreMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.workspacesweb.mixins.CfnTrustStoreMixinProps |
Python | aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnTrustStoreMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_workspacesweb » mixins » CfnTrustStoreMixinProps |
Properties for CfnTrustStorePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspacesweb_mixins } from '@aws-cdk/mixins-preview/aws-workspacesweb';
const cfnTrustStoreMixinProps: workspacesweb_mixins.CfnTrustStoreMixinProps = {
certificateList: ['certificateList'],
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[]
(optional)
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