Interface DomainReference
- All Superinterfaces:
- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- DomainReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:39.989Z")
@Stability(Stable)
public interface DomainReference
extends software.amazon.jsii.JsiiSerializable
A reference to a Domain 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.elasticsearch.*;
 DomainReference domainReference = DomainReference.builder()
         .domainArn("domainArn")
         .domainId("domainId")
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forDomainReferencestatic final classAn implementation forDomainReference
- 
Method SummaryModifier and TypeMethodDescriptionstatic DomainReference.Builderbuilder()The ARN of the Domain resource.The Id of the Domain resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getDomainArnThe ARN of the Domain resource.
- 
getDomainIdThe Id of the Domain resource.
- 
builder- Returns:
- a DomainReference.BuilderofDomainReference
 
 
-