CfnProjectProps
- class aws_cdk.aws_bedrockmantle.CfnProjectProps(*, name, tags=None)
Bases:
objectProperties for defining a
CfnProject.- Parameters:
name (
str) – The name of the project.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- See:
- 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 import aws_bedrockmantle as bedrockmantle cfn_project_props = bedrockmantle.CfnProjectProps( name="name", # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- name
The name of the project.
- tags
An array of key-value pairs to apply to this resource.