Class DomainReference
A reference to a Domain resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DomainReference : IDomainReference
Syntax (vb)
Public Class DomainReference Implements IDomainReference
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.Interfaces.Sagemaker;
var domainReference = new DomainReference {
DomainArn = "domainArn",
DomainId = "domainId"
};
Synopsis
Constructors
| DomainReference() | A reference to a Domain resource. |
Properties
| DomainArn | The ARN of the Domain resource. |
| DomainId | The DomainId of the Domain resource. |
Constructors
DomainReference()
A reference to a Domain resource.
public DomainReference()
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.Interfaces.Sagemaker;
var domainReference = new DomainReference {
DomainArn = "domainArn",
DomainId = "domainId"
};
Properties
DomainArn
The ARN of the Domain resource.
public string DomainArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DomainId
The DomainId of the Domain resource.
public string DomainId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated