Interface AppReference
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- AppReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:47.894Z")
@Stability(Stable)
public interface AppReference
extends software.amazon.jsii.JsiiSerializable
A reference to a App resource.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 AppReference appReference = AppReference.builder()
         .appArn("appArn")
         .appName("appName")
         .appType("appType")
         .domainId("domainId")
         .userProfileName("userProfileName")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAppReferencestatic final classAn implementation forAppReference
- 
Method SummaryModifier and TypeMethodDescriptionstatic AppReference.Builderbuilder()The ARN of the App resource.The AppName of the App resource.The AppType of the App resource.The DomainId of the App resource.The UserProfileName of the App resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAppArnThe ARN of the App resource.
- 
getAppNameThe AppName of the App resource.
- 
getAppTypeThe AppType of the App resource.
- 
getDomainIdThe DomainId of the App resource.
- 
getUserProfileNameThe UserProfileName of the App resource.
- 
builder- Returns:
- a AppReference.BuilderofAppReference
 
 
-