Class CfnUserProfile.SsoUserProfileDetailsProperty
The details of the SSO User Profile.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserProfile.SsoUserProfileDetailsProperty : CfnUserProfile.ISsoUserProfileDetailsProperty
Syntax (vb)
Public Class CfnUserProfile.SsoUserProfileDetailsProperty Implements CfnUserProfile.ISsoUserProfileDetailsProperty
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 ssoUserProfileDetailsProperty = new SsoUserProfileDetailsProperty {
FirstName = "firstName",
LastName = "lastName",
Username = "username"
};
Synopsis
Constructors
| SsoUserProfileDetailsProperty() | The details of the SSO User Profile. |
Properties
| FirstName | The First Name of the IAM User Profile. |
| LastName | The Last Name of the IAM User Profile. |
| Username | The username of the SSO User Profile. |
Constructors
SsoUserProfileDetailsProperty()
The details of the SSO User Profile.
public SsoUserProfileDetailsProperty()
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 ssoUserProfileDetailsProperty = new SsoUserProfileDetailsProperty {
FirstName = "firstName",
LastName = "lastName",
Username = "username"
};
Properties
FirstName
The First Name of the IAM User Profile.
public string? FirstName { get; set; }
Property Value
Remarks
LastName
The Last Name of the IAM User Profile.
public string? LastName { get; set; }
Property Value
Remarks
Username
The username of the SSO User Profile.
public string? Username { get; set; }