Show / Hide Table of Contents

Class UserProfileReference

A reference to a UserProfile resource.

Inheritance
object
UserProfileReference
Implements
IUserProfileReference
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.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

string

Remarks

ExampleMetadata: fixture=_generated

UserProfileArn

The ARN of the UserProfile resource.

public string UserProfileArn { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

UserProfileName

The UserProfileName of the UserProfile resource.

public string UserProfileName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IUserProfileReference
Back to top Generated by DocFX