interface ServicePrincipalNameReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.PCAConnectorAD.ServicePrincipalNameReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspcaconnectorad#ServicePrincipalNameReference |
Java | software.amazon.awscdk.interfaces.pcaconnectorad.ServicePrincipalNameReference |
Python | aws_cdk.interfaces.aws_pcaconnectorad.ServicePrincipalNameReference |
TypeScript | aws-cdk-lib » interfaces » aws_pcaconnectorad » ServicePrincipalNameReference |
A reference to a ServicePrincipalName resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcaconnectorad as interfaces_pcaconnectorad } from 'aws-cdk-lib/interfaces';
const servicePrincipalNameReference: interfaces_pcaconnectorad.ServicePrincipalNameReference = {
connectorArn: 'connectorArn',
directoryRegistrationArn: 'directoryRegistrationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The ConnectorArn of the ServicePrincipalName resource. |
| directory | string | The DirectoryRegistrationArn of the ServicePrincipalName resource. |
connectorArn
Type:
string
The ConnectorArn of the ServicePrincipalName resource.
directoryRegistrationArn
Type:
string
The DirectoryRegistrationArn of the ServicePrincipalName resource.

.NET
Go
Java
Python
TypeScript