Show / Hide Table of Contents

Class CfnGroupProfileProps

Properties for defining a CfnGroupProfile.

Inheritance
object
CfnGroupProfileProps
Implements
ICfnGroupProfileProps
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.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGroupProfileProps : ICfnGroupProfileProps
Syntax (vb)
Public Class CfnGroupProfileProps Implements ICfnGroupProfileProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.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.DataZone;

             var cfnGroupProfileProps = new CfnGroupProfileProps {
                 DomainIdentifier = "domainIdentifier",

                 // the properties below are optional
                 GroupIdentifier = "groupIdentifier",
                 GroupType = "groupType",
                 RolePrincipalArn = "rolePrincipalArn",
                 Status = "status"
             };

Synopsis

Constructors

CfnGroupProfileProps()

Properties for defining a CfnGroupProfile.

Properties

DomainIdentifier

The identifier of the Amazon DataZone domain in which a group profile exists.

GroupIdentifier

The ID of the group of a project member.

GroupType

The type of the group.

RolePrincipalArn

The ARN of the role principal for the group profile.

Status

The status of a group profile.

Constructors

CfnGroupProfileProps()

Properties for defining a CfnGroupProfile.

public CfnGroupProfileProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.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.DataZone;

             var cfnGroupProfileProps = new CfnGroupProfileProps {
                 DomainIdentifier = "domainIdentifier",

                 // the properties below are optional
                 GroupIdentifier = "groupIdentifier",
                 GroupType = "groupType",
                 RolePrincipalArn = "rolePrincipalArn",
                 Status = "status"
             };

Properties

DomainIdentifier

The identifier of the Amazon DataZone domain in which a group profile exists.

public string DomainIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-domainidentifier

GroupIdentifier

The ID of the group of a project member.

public string? GroupIdentifier { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-groupidentifier

GroupType

The type of the group.

public string? GroupType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-grouptype

RolePrincipalArn

The ARN of the role principal for the group profile.

public string? RolePrincipalArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-roleprincipalarn

Status

The status of a group profile.

public string? Status { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#cfn-datazone-groupprofile-status

Implements

ICfnGroupProfileProps
Back to top Generated by DocFX