Class CfnApplicationProps
Properties for defining a CfnApplication
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.SAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : Object, ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps
Inherits Object
Implements ICfnApplicationProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SAM;
var cfnApplicationProps = new CfnApplicationProps {
Location = "location",
// the properties below are optional
NotificationArns = new [] { "notificationArns" },
Parameters = new Dictionary<string, string> {
{ "parametersKey", "parameters" }
},
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
},
TimeoutInMinutes = 123
};
Synopsis
Constructors
Cfn |
Properties
Location | |
Notification |
|
Parameters | |
Tags | |
Timeout |
Constructors
CfnApplicationProps()
public CfnApplicationProps()
Properties
Location
public object Location { get; set; }
Property Value
System.
Remarks
NotificationArns
public string[] NotificationArns { get; set; }
Property Value
System.
Remarks
Parameters
public object Parameters { get; set; }
Property Value
System.
Remarks
Tags
public IDictionary<string, string> Tags { get; set; }
Property Value
System.
Remarks
TimeoutInMinutes
public Nullable<double> TimeoutInMinutes { get; set; }
Property Value
System.