Class CfnSubscriberPropsMixin.SubscriberIdentityProperty
Specify the AWS account ID and external ID that the subscriber will use to access source data.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SecurityLake.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnSubscriberPropsMixin.SubscriberIdentityProperty : CfnSubscriberPropsMixin.ISubscriberIdentityProperty
Syntax (vb)
Public Class CfnSubscriberPropsMixin.SubscriberIdentityProperty Implements CfnSubscriberPropsMixin.ISubscriberIdentityProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SecurityLake.Mixins;
var subscriberIdentityProperty = new SubscriberIdentityProperty {
ExternalId = "externalId",
Principal = "principal"
};
Synopsis
Constructors
| SubscriberIdentityProperty() | Specify the AWS account ID and external ID that the subscriber will use to access source data. |
Properties
| ExternalId | The external ID is a unique identifier that the subscriber provides to you. |
| Principal | Principals can include accounts, users, roles, federated users, or AWS services. |
Constructors
SubscriberIdentityProperty()
Specify the AWS account ID and external ID that the subscriber will use to access source data.
public SubscriberIdentityProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SecurityLake.Mixins;
var subscriberIdentityProperty = new SubscriberIdentityProperty {
ExternalId = "externalId",
Principal = "principal"
};
Properties
ExternalId
The external ID is a unique identifier that the subscriber provides to you.
public string? ExternalId { get; set; }
Property Value
Remarks
Principal
Principals can include accounts, users, roles, federated users, or AWS services.
public string? Principal { get; set; }