interface CfnProjectProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockMantle.CfnProjectProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockmantle#CfnProjectProps |
Java | software.amazon.awscdk.services.bedrockmantle.CfnProjectProps |
Python | aws_cdk.aws_bedrockmantle.CfnProjectProps |
TypeScript | aws-cdk-lib » aws_bedrockmantle » CfnProjectProps |
Properties for defining a CfnProject.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockmantle as bedrockmantle } from 'aws-cdk-lib';
const cfnProjectProps: bedrockmantle.CfnProjectProps = {
name: 'name',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the project. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
name
Type:
string
The name of the project.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript