interface CfnSubscriberMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityLake.Mixins.CfnSubscriberMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecuritylake/mixins#CfnSubscriberMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.securitylake.mixins.CfnSubscriberMixinProps |
Python | aws_cdk.mixins_preview.aws_securitylake.mixins.CfnSubscriberMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_securitylake » mixins » CfnSubscriberMixinProps |
Properties for CfnSubscriberPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as securitylake_mixins } from '@aws-cdk/mixins-preview/aws-securitylake';
const cfnSubscriberMixinProps: securitylake_mixins.CfnSubscriberMixinProps = {
accessTypes: ['accessTypes'],
dataLakeArn: 'dataLakeArn',
sources: [{
awsLogSource: {
sourceName: 'sourceName',
sourceVersion: 'sourceVersion',
},
customLogSource: {
sourceName: 'sourceName',
sourceVersion: 'sourceVersion',
},
}],
subscriberDescription: 'subscriberDescription',
subscriberIdentity: {
externalId: 'externalId',
principal: 'principal',
},
subscriberName: 'subscriberName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string[] | 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. |
| data | string | The Amazon Resource Name (ARN) used to create the data lake. |
| sources? | IResolvable | (IResolvable | Source)[] | Amazon Security Lake supports log and event collection for natively supported AWS services . |
| subscriber | string | The subscriber descriptions for a subscriber account. |
| subscriber | IResolvable | Subscriber | The AWS identity used to access your data. |
| subscriber | string | The name of your Amazon Security Lake subscriber account. |
| tags? | Cfn[] | An array of objects, one for each tag to associate with the subscriber. |
accessTypes?
Type:
string[]
(optional)
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 .
dataLakeArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) used to create the data lake.
sources?
Type:
IResolvable | (IResolvable | Source)[]
(optional)
Amazon Security Lake supports log and event collection for natively supported AWS services .
For more information, see the Amazon Security Lake User Guide .
subscriberDescription?
Type:
string
(optional)
The subscriber descriptions for a subscriber account.
The description for a subscriber includes subscriberName , accountID , externalID , and subscriberId .
subscriberIdentity?
Type:
IResolvable | Subscriber
(optional)
The AWS identity used to access your data.
subscriberName?
Type:
string
(optional)
The name of your Amazon Security Lake subscriber account.
tags?
Type:
Cfn[]
(optional)
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.

.NET
Go
Java
Python
TypeScript