Interface ChannelAttributes

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

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T09:32:03.689Z") @Stability(Experimental) public interface ChannelAttributes extends software.amazon.jsii.JsiiSerializable
(experimental) Represents a Channel defined outside of this stack.

Example:

 Stack stack;
 IChannel channel = Channel.fromChannelAttributes(stack, "ImportedChannel", ChannelAttributes.builder()
         .channelName("MyChannel")
         .channelGroupName("MyChannelGroup")
         .build());
 
  • Method Details

    • getChannelGroupName

      @Stability(Experimental) @NotNull String getChannelGroupName()
      (experimental) The name that describes the channel group.
    • getChannelName

      @Stability(Experimental) @NotNull String getChannelName()
      (experimental) The name that describes the channel.
    • builder

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