Interface OriginEndpointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
OriginEndpointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)",
date="2026-05-21T17:28:01.213Z")
@Stability(Experimental)
public interface OriginEndpointAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) Represents an Origin Endpoint defined outside of this stack.
Example:
Stack stack;
IOriginEndpoint originEndpoint = OriginEndpoint.fromOriginEndpointAttributes(stack, "ImportedOriginEndpoint", OriginEndpointAttributes.builder()
.channelGroupName("MyChannelGroup")
.channelName("MyChannel")
.originEndpointName("MyExampleOriginEndpoint")
.build());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forOriginEndpointAttributesstatic final classAn implementation forOriginEndpointAttributes -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelGroupName
(experimental) The name that describes the channel group.The name is the primary identifier for the channel group.
-
getChannelName
(experimental) The name that describes the channel.The name is the primary identifier for the channel.
-
getOriginEndpointName
(experimental) The name that describes the origin endpoint. -
getRegion
(experimental) The AWS region where the origin endpoint lives.Required for cross-region imports to construct the correct ARN.
Default: - the importing stack's region
-
builder
- Returns:
- a
OriginEndpointAttributes.BuilderofOriginEndpointAttributes
-