interface CfnServicePrincipalNameMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCAConnectorAD.CfnServicePrincipalNameMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcaconnectorad#CfnServicePrincipalNameMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorad.CfnServicePrincipalNameMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_pcaconnectorad.CfnServicePrincipalNameMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcaconnectorad » CfnServicePrincipalNameMixinProps |
Properties for CfnServicePrincipalNamePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcaconnectorad as pcaconnectorad } from '@aws-cdk/cfn-property-mixins';
const cfnServicePrincipalNameMixinProps: pcaconnectorad.CfnServicePrincipalNameMixinProps = {
connectorArn: 'connectorArn',
directoryRegistrationArn: 'directoryRegistrationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The Amazon Resource Name (ARN) that was returned when you called CreateConnector.html . |
| directory | string | The Amazon Resource Name (ARN) that was returned when you called CreateDirectoryRegistration . |
connectorArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that was returned when you called CreateConnector.html .
directoryRegistrationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that was returned when you called CreateDirectoryRegistration .

.NET
Go
Java
Python
TypeScript