package awsconnect // Properties for defining a `CfnUserHierarchyGroup`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // cfnUserHierarchyGroupProps := &CfnUserHierarchyGroupProps{ // InstanceArn: jsii.String("instanceArn"), // Name: jsii.String("name"), // // // the properties below are optional // ParentGroupArn: jsii.String("parentGroupArn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchygroup.html // type CfnUserHierarchyGroupProps struct { // The Amazon Resource Name (ARN) of the user hierarchy group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchygroup.html#cfn-connect-userhierarchygroup-instancearn // InstanceArn *string `field:"required" json:"instanceArn" yaml:"instanceArn"` // The name of the user hierarchy group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchygroup.html#cfn-connect-userhierarchygroup-name // Name *string `field:"required" json:"name" yaml:"name"` // The Amazon Resource Name (ARN) of the parent group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-userhierarchygroup.html#cfn-connect-userhierarchygroup-parentgrouparn // ParentGroupArn *string `field:"optional" json:"parentGroupArn" yaml:"parentGroupArn"` }