Class UserProfileReference
A reference to a UserProfile resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class UserProfileReference : IUserProfileReference
Syntax (vb)
Public Class UserProfileReference Implements IUserProfileReference
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.Sagemaker;
var userProfileReference = new UserProfileReference {
DomainId = "domainId",
UserProfileArn = "userProfileArn",
UserProfileName = "userProfileName"
};
Synopsis
Constructors
UserProfileReference() | A reference to a UserProfile resource. |
Properties
DomainId | The DomainId of the UserProfile resource. |
UserProfileArn | The ARN of the UserProfile resource. |
UserProfileName | The UserProfileName of the UserProfile resource. |
Constructors
UserProfileReference()
A reference to a UserProfile resource.
public UserProfileReference()
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.Sagemaker;
var userProfileReference = new UserProfileReference {
DomainId = "domainId",
UserProfileArn = "userProfileArn",
UserProfileName = "userProfileName"
};
Properties
DomainId
The DomainId of the UserProfile resource.
public string DomainId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
UserProfileArn
The ARN of the UserProfile resource.
public string UserProfileArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
UserProfileName
The UserProfileName of the UserProfile resource.
public string UserProfileName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated