ServicePrincipalNameReference

class aws_cdk.aws_pcaconnectorad.ServicePrincipalNameReference(*, connector_arn, directory_registration_arn)

Bases: object

A reference to a ServicePrincipalName resource.

Parameters:
  • connector_arn (str) – The ConnectorArn of the ServicePrincipalName resource.

  • directory_registration_arn (str) – The DirectoryRegistrationArn of the ServicePrincipalName resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_pcaconnectorad as pcaconnectorad

service_principal_name_reference = pcaconnectorad.ServicePrincipalNameReference(
    connector_arn="connectorArn",
    directory_registration_arn="directoryRegistrationArn"
)

Attributes

connector_arn

The ConnectorArn of the ServicePrincipalName resource.

directory_registration_arn

The DirectoryRegistrationArn of the ServicePrincipalName resource.