Interface ChannelGroupAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ChannelGroupAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-21T17:28:01.171Z") @Stability(Experimental) public interface ChannelGroupAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Attributes to enable import of a Channel Group, which in turn can be used to create a Channel and OriginEndpoint).

Example:

 Stack stack;
 IChannelGroup channelGroup = ChannelGroup.fromChannelGroupAttributes(stack, "ImportedChannelGroup", ChannelGroupAttributes.builder()
         .channelGroupName("MyChannelGroup")
         .build());
 
  • Method Details

    • getChannelGroupName

      @Stability(Experimental) @NotNull String getChannelGroupName()
      (experimental) Channel Group Name.
    • getEgressDomain

      @Stability(Experimental) @Nullable default String getEgressDomain()
      (experimental) The egress domain where packaged content is available.

      Use this as the origin domain when configuring a CDN such as Amazon CloudFront.

      Default: - not available on imported channel groups

    • getRegion

      @Stability(Experimental) @Nullable default String getRegion()
      (experimental) The AWS region where the channel group lives.

      Required for cross-region imports to construct the correct ARN.

      Default: - the importing stack's region

    • builder

      @Stability(Experimental) static ChannelGroupAttributes.Builder builder()
      Returns:
      a ChannelGroupAttributes.Builder of ChannelGroupAttributes