CfnTrustStoreProps

class aws_cdk.aws_workspacesweb.CfnTrustStoreProps(*, certificate_list, tags=None)

Bases: object

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

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 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.

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