interface CfnProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockMantle.CfnProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockmantle#CfnProjectMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockmantle.CfnProjectMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_bedrockmantle.CfnProjectMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockmantle » CfnProjectMixinProps |
Properties for CfnProjectPropsMixin.
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/cfn-property-mixins';
const cfnProjectMixinProps: bedrockmantle.CfnProjectMixinProps = {
name: 'name',
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
(optional)
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