Interface CfnSubscriber.SourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubscriber.SourceProperty.Jsii$Proxy
- Enclosing class:
CfnSubscriber
@Stability(Stable)
public static interface CfnSubscriber.SourceProperty
extends software.amazon.jsii.JsiiSerializable
Sources are logs and events generated from a single system that match a specific event class in the Open Cybersecurity Schema Framework (OCSF) schema.
Amazon Security Lake can collect logs and events from a variety of sources, including natively supported AWS services and third-party custom sources.
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.*; SourceProperty sourceProperty = SourceProperty.builder() .awsLogSource(AwsLogSourceProperty.builder() .sourceName("sourceName") .sourceVersion("sourceVersion") .build()) .customLogSource(CustomLogSourceProperty.builder() .sourceName("sourceName") .sourceVersion("sourceVersion") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSubscriber.SourceProperty
static final class
An implementation forCfnSubscriber.SourceProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAwsLogSource
The natively supported AWS service which is used a Amazon Security Lake source to collect logs and events from.- See Also:
-
getCustomLogSource
The custom log source AWS which is used a Amazon Security Lake source to collect logs and events from.- See Also:
-
builder
-