CfnNamespaceMixinProps

class aws_cdk.cfn_property_mixins.aws_scn.CfnNamespaceMixinProps(*, description=None, instance_id=None, name=None, tags=None)

Bases: object

Properties for CfnNamespacePropsMixin.

Parameters:
  • description (Optional[str]) – The description of the namespace.

  • instance_id (Optional[str]) – The Amazon Web Services Supply Chain instance identifier.

  • name (Optional[str]) – The name of the namespace.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags for the namespace.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scn-namespace.html

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_scn as scn

cfn_namespace_mixin_props = scn.CfnNamespaceMixinProps(
    description="description",
    instance_id="instanceId",
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The description of the namespace.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scn-namespace.html#cfn-scn-namespace-description

instance_id

The Amazon Web Services Supply Chain instance identifier.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scn-namespace.html#cfn-scn-namespace-instanceid

name

The name of the namespace.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scn-namespace.html#cfn-scn-namespace-name

tags

The tags for the namespace.

See:

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