Class CfnApplicationProps
Properties for defining a CfnApplication
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.SAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps 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
CfnApplicationProps() | Properties for defining a |
Properties
Location | Properties for defining a |
NotificationArns | Properties for defining a |
Parameters | Properties for defining a |
Tags | Properties for defining a |
TimeoutInMinutes | Properties for defining a |
Constructors
CfnApplicationProps()
Properties for defining a CfnApplication
.
public CfnApplicationProps()
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
};
Properties
Location
Properties for defining a CfnApplication
.
public object Location { get; set; }
Property Value
Remarks
NotificationArns
Properties for defining a CfnApplication
.
public string[]? NotificationArns { get; set; }
Property Value
string[]
Remarks
Parameters
Properties for defining a CfnApplication
.
public object? Parameters { get; set; }
Property Value
Remarks
Tags
Properties for defining a CfnApplication
.
public IDictionary<string, string>? Tags { get; set; }
Property Value
Remarks
TimeoutInMinutes
Properties for defining a CfnApplication
.
public double? TimeoutInMinutes { get; set; }