Interface CfnSubscriberProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubscriberProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:16.981Z")
@Stability(Stable)
public interface CfnSubscriberProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSubscriber
.
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.securitylake.*; CfnSubscriberProps cfnSubscriberProps = CfnSubscriberProps.builder() .accessTypes(List.of("accessTypes")) .dataLakeArn("dataLakeArn") .sources(List.of(SourceProperty.builder() .awsLogSource(AwsLogSourceProperty.builder() .sourceName("sourceName") .sourceVersion("sourceVersion") .build()) .customLogSource(CustomLogSourceProperty.builder() .sourceName("sourceName") .sourceVersion("sourceVersion") .build()) .build())) .subscriberIdentity(SubscriberIdentityProperty.builder() .externalId("externalId") .principal("principal") .build()) .subscriberName("subscriberName") // the properties below are optional .subscriberDescription("subscriberDescription") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSubscriberProps
static final class
An implementation forCfnSubscriberProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSubscriberProps.Builder
builder()
You can choose to notify subscribers of new objects with an Amazon Simple Queue Service (Amazon SQS) queue or through messaging to an HTTPS endpoint provided by the subscriber.The Amazon Resource Name (ARN) used to create the data lake.Amazon Security Lake supports log and event collection for natively supported AWS services .default String
The subscriber descriptions for a subscriber account.The AWS identity used to access your data.The name of your Amazon Security Lake subscriber account.getTags()
An array of objects, one for each tag to associate with the subscriber.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessTypes
You can choose to notify subscribers of new objects with an Amazon Simple Queue Service (Amazon SQS) queue or through messaging to an HTTPS endpoint provided by the subscriber.Subscribers can consume data by directly querying AWS Lake Formation tables in your Amazon S3 bucket through services like Amazon Athena. This subscription type is defined as
LAKEFORMATION
.- See Also:
-
getDataLakeArn
The Amazon Resource Name (ARN) used to create the data lake.- See Also:
-
getSources
Amazon Security Lake supports log and event collection for natively supported AWS services .For more information, see the Amazon Security Lake User Guide .
- See Also:
-
getSubscriberIdentity
The AWS identity used to access your data.- See Also:
-
getSubscriberName
The name of your Amazon Security Lake subscriber account.- See Also:
-
getSubscriberDescription
The subscriber descriptions for a subscriber account.The description for a subscriber includes
subscriberName
,accountID
,externalID
, andsubscriberId
.- See Also:
-
getTags
An array of objects, one for each tag to associate with the subscriber.For each tag, you must specify both a tag key and a tag value. A tag value cannot be null, but it can be an empty string.
- See Also:
-
builder
- Returns:
- a
CfnSubscriberProps.Builder
ofCfnSubscriberProps
-