Show / Hide Table of Contents

Interface ICfnUserHierarchyStructureProps

Properties for defining a CfnUserHierarchyStructure.

Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnUserHierarchyStructureProps
Syntax (vb)
Public Interface ICfnUserHierarchyStructureProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.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.Connect;

             var cfnUserHierarchyStructureProps = new CfnUserHierarchyStructureProps {
                 InstanceArn = "instanceArn",

                 // the properties below are optional
                 UserHierarchyStructure = new UserHierarchyStructureProperty {
                     LevelFive = new LevelFiveProperty {
                         Name = "name",

                         // the properties below are optional
                         HierarchyLevelArn = "hierarchyLevelArn",
                         HierarchyLevelId = "hierarchyLevelId"
                     },
                     LevelFour = new LevelFourProperty {
                         Name = "name",

                         // the properties below are optional
                         HierarchyLevelArn = "hierarchyLevelArn",
                         HierarchyLevelId = "hierarchyLevelId"
                     },
                     LevelOne = new LevelOneProperty {
                         Name = "name",

                         // the properties below are optional
                         HierarchyLevelArn = "hierarchyLevelArn",
                         HierarchyLevelId = "hierarchyLevelId"
                     },
                     LevelThree = new LevelThreeProperty {
                         Name = "name",

                         // the properties below are optional
                         HierarchyLevelArn = "hierarchyLevelArn",
                         HierarchyLevelId = "hierarchyLevelId"
                     },
                     LevelTwo = new LevelTwoProperty {
                         Name = "name",

                         // the properties below are optional
                         HierarchyLevelArn = "hierarchyLevelArn",
                         HierarchyLevelId = "hierarchyLevelId"
                     }
                 }
             };

Synopsis

Properties

InstanceArn

The Amazon Resource Name (ARN) of the instance.

UserHierarchyStructure

Contains information about a hierarchy structure.

Properties

InstanceArn

The Amazon Resource Name (ARN) of the instance.

string InstanceArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html#cfn-connect-userhierarchystructure-instancearn

UserHierarchyStructure

Contains information about a hierarchy structure.

object? UserHierarchyStructure { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchystructure.html#cfn-connect-userhierarchystructure-userhierarchystructure

Back to top Generated by DocFX