Show / Hide Table of Contents

Class CfnUserProfile.UserProfileDetailsProperty

Inheritance
object
CfnUserProfile.UserProfileDetailsProperty
Implements
CfnUserProfile.IUserProfileDetailsProperty
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 CfnUserProfile.UserProfileDetailsProperty : CfnUserProfile.IUserProfileDetailsProperty
Syntax (vb)
Public Class CfnUserProfile.UserProfileDetailsProperty Implements CfnUserProfile.IUserProfileDetailsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.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 userProfileDetailsProperty = new UserProfileDetailsProperty {
                 Iam = new IamUserProfileDetailsProperty {
                     Arn = "arn",
                     GroupProfileId = "groupProfileId",
                     SessionName = "sessionName"
                 },
                 Sso = new SsoUserProfileDetailsProperty {
                     FirstName = "firstName",
                     LastName = "lastName",
                     Username = "username"
                 }
             };

Synopsis

Constructors

UserProfileDetailsProperty()

Properties

Iam

The details of the IAM User Profile.

Sso

The details of the SSO User Profile.

Constructors

UserProfileDetailsProperty()

public UserProfileDetailsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.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 userProfileDetailsProperty = new UserProfileDetailsProperty {
                 Iam = new IamUserProfileDetailsProperty {
                     Arn = "arn",
                     GroupProfileId = "groupProfileId",
                     SessionName = "sessionName"
                 },
                 Sso = new SsoUserProfileDetailsProperty {
                     FirstName = "firstName",
                     LastName = "lastName",
                     Username = "username"
                 }
             };

Properties

Iam

The details of the IAM User Profile.

public object? Iam { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-iam

Type union: either IResolvable or CfnUserProfile.IIamUserProfileDetailsProperty

Sso

The details of the SSO User Profile.

public object? Sso { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html#cfn-datazone-userprofile-userprofiledetails-sso

Type union: either IResolvable or CfnUserProfile.ISsoUserProfileDetailsProperty

Implements

CfnUserProfile.IUserProfileDetailsProperty
Back to top Generated by DocFX