CfnTrustStoreMixinProps
- class aws_cdk.cfn_property_mixins.aws_workspacesweb.CfnTrustStoreMixinProps(*, certificate_list=None, tags=None)
Bases:
objectProperties for CfnTrustStorePropsMixin.
- Parameters:
certificate_list (
Optional[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.cfn_property_mixins import aws_workspacesweb as workspacesweb cfn_trust_store_mixin_props = workspacesweb.CfnTrustStoreMixinProps( certificate_list=["certificateList"], 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.