ServicePrincipalNameReference
- class aws_cdk.interfaces.aws_pcaconnectorad.ServicePrincipalNameReference(*, connector_arn, directory_registration_arn)
Bases:
objectA 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.interfaces import aws_pcaconnectorad as interfaces_aws_pcaconnectorad service_principal_name_reference = interfaces_aws_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.