Class CfnUserProfile.UserProfileDetailsProperty
Implements
Inherited Members
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
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
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
Remarks
Sso
The details of the SSO User Profile.
public object? Sso { get; set; }