CfnTrustStoreProps
- class aws_cdk.aws_workspacesweb.CfnTrustStoreProps(*, certificate_list, tags=None)
Bases:
objectProperties for defining a
CfnTrustStore.- Parameters:
certificate_list (
Sequence[str]) – A list of CA certificates to be added to the trust store.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags to add to the trust store. A tag is a key-value pair.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_workspacesweb as workspacesweb cfn_trust_store_props = workspacesweb.CfnTrustStoreProps( certificate_list=["certificateList"], # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- certificate_list
A list of CA certificates to be added to the trust store.
- tags
The tags to add to the trust store.
A tag is a key-value pair.