CfnApplicationProps
- class aws_cdk.aws_sam.CfnApplicationProps(*, location, notification_arns=None, parameters=None, tags=None, timeout_in_minutes=None)
Bases:
object
Properties for defining a
CfnApplication
.- Parameters:
location (
Union
[str
,IResolvable
,ApplicationLocationProperty
,Dict
[str
,Any
]]) –notification_arns (
Optional
[Sequence
[str
]]) –parameters (
Union
[IResolvable
,Mapping
[str
,str
],None
]) –tags (
Optional
[Mapping
[str
,str
]]) –timeout_in_minutes (
Union
[int
,float
,None
]) –
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_sam as sam cfn_application_props = sam.CfnApplicationProps( location="location", # the properties below are optional notification_arns=["notificationArns"], parameters={ "parameters_key": "parameters" }, tags={ "tags_key": "tags" }, timeout_in_minutes=123 )
Attributes
- location
-
- Type:
see
- notification_arns
-
- Type:
see
- parameters
-
- Type:
see
- tags
-
- Type:
see