Interface CfnSubscriber.SubscriberIdentityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSubscriber.SubscriberIdentityProperty.Jsii$Proxy
- Enclosing class:
CfnSubscriber
@Stability(Stable)
public static interface CfnSubscriber.SubscriberIdentityProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.securitylake.*;
SubscriberIdentityProperty subscriberIdentityProperty = SubscriberIdentityProperty.builder()
.externalId("externalId")
.principal("principal")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSubscriber.SubscriberIdentityPropertystatic final classAn implementation forCfnSubscriber.SubscriberIdentityProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The external ID is a unique identifier that the subscriber provides to you.Principals can include accounts, users, roles, federated users, or AWS services.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExternalId
The external ID is a unique identifier that the subscriber provides to you.- See Also:
-
getPrincipal
Principals can include accounts, users, roles, federated users, or AWS services.- See Also:
-
builder
-