interface CfnNamespaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SCN.CfnNamespaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsscn#CfnNamespaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.scn.CfnNamespaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_scn.CfnNamespaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_scn » CfnNamespaceMixinProps |
Properties for CfnNamespacePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-scn-namespace.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_scn as scn } from '@aws-cdk/cfn-property-mixins';
const cfnNamespaceMixinProps: scn.CfnNamespaceMixinProps = {
description: 'description',
instanceId: 'instanceId',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the namespace. |
| instance | string | The Amazon Web Services Supply Chain instance identifier. |
| name? | string | The name of the namespace. |
| tags? | Cfn[] | The tags for the namespace. |
description?
Type:
string
(optional)
The description of the namespace.
instanceId?
Type:
string
(optional)
The Amazon Web Services Supply Chain instance identifier.
name?
Type:
string
(optional)
The name of the namespace.
tags?
Type:
Cfn[]
(optional)
The tags for the namespace.

.NET
Go
Java
Python
TypeScript