CfnApplicationProps¶
-
class
aws_cdk.aws_servicecatalogappregistry.
CfnApplicationProps
(*, name, description=None, tags=None)¶ Bases:
object
Properties for defining a
CfnApplication
.- Parameters
name (
str
) – The name of the application. The name must be unique in the region in which you are creating the application.description (
Optional
[str
]) – The description of the application.tags (
Optional
[Mapping
[str
,str
]]) – Key-value pairs you can use to associate with the application.
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_servicecatalogappregistry as servicecatalogappregistry cfn_application_props = servicecatalogappregistry.CfnApplicationProps( name="name", # the properties below are optional description="description", tags={ "tags_key": "tags" } )
Attributes
-
description
¶ The description of the application.
-
name
¶ The name of the application.
The name must be unique in the region in which you are creating the application.
Key-value pairs you can use to associate with the application.
- Link
- Return type
Optional
[Mapping
[str
,str
]]