CfnTrustStoreMixinProps

class aws_cdk.mixins_preview.aws_workspacesweb.mixins.CfnTrustStoreMixinProps(*, certificate_list=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-truststore.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-truststore.html#cfn-workspacesweb-truststore-certificatelist

tags

The tags to add to the trust store.

A tag is a key-value pair.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspacesweb-truststore.html#cfn-workspacesweb-truststore-tags