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());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forChannelAttributesstatic final classAn implementation forChannelAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic ChannelAttributes.Builderbuilder()(experimental) The name that describes the channel group.(experimental) The name that describes the channel.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getChannelGroupName
(experimental) The name that describes the channel group. -
getChannelName
(experimental) The name that describes the channel. -
builder
- Returns:
- a
ChannelAttributes.BuilderofChannelAttributes
-