Class CfnUserProfile.IamUserProfileDetailsProperty
The details of the IAM User Profile.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUserProfile.IamUserProfileDetailsProperty : CfnUserProfile.IIamUserProfileDetailsProperty
Syntax (vb)
Public Class CfnUserProfile.IamUserProfileDetailsProperty Implements CfnUserProfile.IIamUserProfileDetailsProperty
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 iamUserProfileDetailsProperty = new IamUserProfileDetailsProperty {
Arn = "arn",
GroupProfileId = "groupProfileId",
SessionName = "sessionName"
};
Synopsis
Constructors
| IamUserProfileDetailsProperty() | The details of the IAM User Profile. |
Properties
| Arn | The ARN of the IAM User Profile. |
| GroupProfileId | The group profile ID of the IAM User Profile. |
| SessionName | The session name of the IAM User Profile. |
Constructors
IamUserProfileDetailsProperty()
The details of the IAM User Profile.
public IamUserProfileDetailsProperty()
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 iamUserProfileDetailsProperty = new IamUserProfileDetailsProperty {
Arn = "arn",
GroupProfileId = "groupProfileId",
SessionName = "sessionName"
};
Properties
Arn
The ARN of the IAM User Profile.
public string? Arn { get; set; }
Property Value
Remarks
GroupProfileId
The group profile ID of the IAM User Profile.
public string? GroupProfileId { get; set; }
Property Value
Remarks
SessionName
The session name of the IAM User Profile.
public string? SessionName { get; set; }