Class CfnApplication
Creates and persists an Application resource.
Inherited Members
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplication : CfnResource, IInspectable, ITaggableV2
Syntax (vb)
Public Class CfnApplication
Inherits CfnResource
Implements IInspectable, ITaggableV2
Remarks
CloudformationResource: AWS::AppIntegrations::Application
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.AppIntegrations;
var cfnApplication = new CfnApplication(this, "MyCfnApplication", new CfnApplicationProps {
ApplicationSourceConfig = new ApplicationSourceConfigProperty {
ExternalUrlConfig = new ExternalUrlConfigProperty {
AccessUrl = "accessUrl",
// the properties below are optional
ApprovedOrigins = new [] { "approvedOrigins" }
}
},
Description = "description",
Name = "name",
Namespace = "namespace",
// the properties below are optional
Permissions = new [] { "permissions" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
CfnApplication(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnApplication(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
CfnApplication(Construct, String, ICfnApplicationProps) |
Properties
ApplicationSourceConfig | The configuration for where the application should be loaded from. |
AttrApplicationArn | The Amazon Resource Name (ARN) of the Application. |
AttrId | A unique identifier for the Application. |
CdkTagManager | Tag Manager which manages the tags for this resource. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
Description | The description of the application. |
Name | The name of the application. |
Namespace | The namespace of the application. |
Permissions | The configuration of events or requests that the application has access to. |
Tags | The tags used to organize, track, or control access for this resource. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnApplication(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnApplication(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnApplication(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnApplication(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
CfnApplication(Construct, String, ICfnApplicationProps)
public CfnApplication(Construct scope, string id, ICfnApplicationProps props)
Parameters
- scope Constructs.Construct
Scope in which this resource is defined.
- id System.String
Construct identifier for this resource (unique in its scope).
- props ICfnApplicationProps
Resource properties.
Properties
ApplicationSourceConfig
The configuration for where the application should be loaded from.
public virtual object ApplicationSourceConfig { get; set; }
Property Value
System.Object
AttrApplicationArn
The Amazon Resource Name (ARN) of the Application.
public virtual string AttrApplicationArn { get; }
Property Value
System.String
Remarks
CloudformationAttribute: ApplicationArn
AttrId
A unique identifier for the Application.
public virtual string AttrId { get; }
Property Value
System.String
Remarks
CloudformationAttribute: Id
CdkTagManager
Tag Manager which manages the tags for this resource.
public virtual TagManager CdkTagManager { get; }
Property Value
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
Description
The description of the application.
public virtual string Description { get; set; }
Property Value
System.String
Name
The name of the application.
public virtual string Name { get; set; }
Property Value
System.String
Namespace
The namespace of the application.
public virtual string Namespace { get; set; }
Property Value
System.String
Permissions
The configuration of events or requests that the application has access to.
public virtual string[] Permissions { get; set; }
Property Value
System.String[]
Tags
The tags used to organize, track, or control access for this resource.
public virtual ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>