Interface CfnEventStreamProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventStreamProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:06.704Z")
@Stability(Stable)
public interface CfnEventStreamProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnEventStream
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.customerprofiles.*; CfnEventStreamProps cfnEventStreamProps = CfnEventStreamProps.builder() .domainName("domainName") .eventStreamName("eventStreamName") .uri("uri") // the properties below are optional .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEventStreamProps
static final class
An implementation forCfnEventStreamProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnEventStreamProps.Builder
builder()
The unique name of the domain.The name of the event stream.getTags()
The tags used to organize, track, or control access for this resource.getUri()
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:
-
getUri
The StreamARN of the destination to deliver profile events to.For example, arn:aws:kinesis:region:account-id:stream/stream-name.
- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnEventStreamProps.Builder
ofCfnEventStreamProps
-