interface SubscriberIdentityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityLake.CfnSubscriberPropsMixin.SubscriberIdentityProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecuritylake#CfnSubscriberPropsMixin_SubscriberIdentityProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securitylake.CfnSubscriberPropsMixin.SubscriberIdentityProperty |
Python | aws_cdk.cfn_property_mixins.aws_securitylake.CfnSubscriberPropsMixin.SubscriberIdentityProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securitylake » CfnSubscriberPropsMixin » SubscriberIdentityProperty |
Specify the AWS account ID and external ID that the subscriber will use to access source data.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securitylake as securitylake } from '@aws-cdk/cfn-property-mixins';
const subscriberIdentityProperty: securitylake.CfnSubscriberPropsMixin.SubscriberIdentityProperty = {
externalId: 'externalId',
principal: 'principal',
};
Properties
| Name | Type | Description |
|---|---|---|
| external | string | The external ID is a unique identifier that the subscriber provides to you. |
| principal? | string | Principals can include accounts, users, roles, federated users, or AWS services. |
externalId?
Type:
string
(optional)
The external ID is a unique identifier that the subscriber provides to you.
principal?
Type:
string
(optional)
Principals can include accounts, users, roles, federated users, or AWS services.

.NET
Go
Java
Python
TypeScript