Interface CfnEventStreamMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventStreamMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.749Z")
@Stability(Stable)
public interface CfnEventStreamMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEventStreamPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
CfnEventStreamMixinProps cfnEventStreamMixinProps = CfnEventStreamMixinProps.builder()
.domainName("domainName")
.eventStreamName("eventStreamName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.uri("uri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventStreamMixinPropsstatic final classAn implementation forCfnEventStreamMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe unique name of the domain.default StringThe name of the event stream.getTags()The tags used to organize, track, or control access for this resource.default StringgetUri()The StreamARN of the destination to deliver profile events to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The unique name of the domain.- See Also:
-
getEventStreamName
The name of the event stream.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
getUri
The StreamARN of the destination to deliver profile events to.For example, arn:aws:kinesis:region:account-id:stream/stream-name.
- See Also:
-
builder
- Returns:
- a
CfnEventStreamMixinProps.BuilderofCfnEventStreamMixinProps
-