Class CfnApplicationProps
Properties for defining a CfnApplication.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Servicecatalogappregistry
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.Servicecatalogappregistry;
var cfnApplicationProps = new CfnApplicationProps {
Name = "name",
// the properties below are optional
Description = "description",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Constructors
| CfnApplicationProps() | Properties for defining a |
Properties
| Description | The description of the application. |
| Name | The name of the application. |
| Tags | Key-value pairs you can use to associate with the application. |
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.Servicecatalogappregistry;
var cfnApplicationProps = new CfnApplicationProps {
Name = "name",
// the properties below are optional
Description = "description",
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Properties
Description
The description of the application.
public string? Description { get; set; }
Property Value
Remarks
Name
The name of the application.
public string Name { get; set; }
Property Value
Remarks
The name must be unique in the region in which you are creating the application.
Tags
Key-value pairs you can use to associate with the application.
public IDictionary<string, string>? Tags { get; set; }