Show / Hide Table of Contents

Class CfnApplicationProps

Properties for defining a CfnApplication.

Inheritance
object
CfnApplicationProps
Implements
ICfnApplicationProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AccountAccess
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps Implements ICfnApplicationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accountaccess-application.html

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.AccountAccess;

             var cfnApplicationProps = new CfnApplicationProps {
                 IdentitySource = new IdentitySourceProperty {
                     IdentityCenter = new IdentityCenterProperty {
                         InstanceArn = "instanceArn",

                         // the properties below are optional
                         ApplicationArn = "applicationArn"
                     }
                 },

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnApplicationProps()

Properties for defining a CfnApplication.

Properties

IdentitySource

Properties for defining a CfnApplication.

Tags

An array of key-value pairs to apply to this resource.

Constructors

CfnApplicationProps()

Properties for defining a CfnApplication.

public CfnApplicationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accountaccess-application.html

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.AccountAccess;

             var cfnApplicationProps = new CfnApplicationProps {
                 IdentitySource = new IdentitySourceProperty {
                     IdentityCenter = new IdentityCenterProperty {
                         InstanceArn = "instanceArn",

                         // the properties below are optional
                         ApplicationArn = "applicationArn"
                     }
                 },

                 // the properties below are optional
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

IdentitySource

Properties for defining a CfnApplication.

public object IdentitySource { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accountaccess-application.html#cfn-accountaccess-application-identitysource

Type union: either IResolvable or CfnApplication.IIdentitySourceProperty

Tags

An array of key-value pairs to apply to this resource.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-accountaccess-application.html#cfn-accountaccess-application-tags

Implements

ICfnApplicationProps
Back to top Generated by DocFX