CfnTrustStoreMixinProps
- class aws_cdk.mixins_preview.aws_workspacesweb.mixins.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:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_workspacesweb import mixins as workspacesweb_mixins cfn_trust_store_mixin_props = workspacesweb_mixins.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.