Interface OriginEndpointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
OriginEndpointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T09:32:03.726Z")
@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
Modifier and TypeMethodDescriptionbuilder()(experimental) The name that describes the channel group.(experimental) The name that describes the channel.(experimental) The name that describes the origin endpoint.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. -
builder
- Returns:
- a
OriginEndpointAttributes.BuilderofOriginEndpointAttributes
-