interface CfnNamespaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SCN.CfnNamespaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsscn#CfnNamespaceProps |
Java | software.amazon.awscdk.services.scn.CfnNamespaceProps |
Python | aws_cdk.aws_scn.CfnNamespaceProps |
TypeScript | aws-cdk-lib » aws_scn » CfnNamespaceProps |
Properties for defining a CfnNamespace.
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-lib';
const cfnNamespaceProps: scn.CfnNamespaceProps = {
instanceId: 'instanceId',
name: 'name',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The Amazon Web Services Supply Chain instance identifier. |
| name | string | The name of the namespace. |
| description? | string | The description of the namespace. |
| tags? | Cfn[] | The tags for the namespace. |
instanceId
Type:
string
The Amazon Web Services Supply Chain instance identifier.
name
Type:
string
The name of the namespace.
description?
Type:
string
(optional)
The description of the namespace.
tags?
Type:
Cfn[]
(optional)
The tags for the namespace.

.NET
Go
Java
Python
TypeScript