interface CfnConnectorProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.PCAConnectorSCEP.CfnConnectorProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspcaconnectorscep#CfnConnectorProps |
Java | software.amazon.awscdk.services.pcaconnectorscep.CfnConnectorProps |
Python | aws_cdk.aws_pcaconnectorscep.CfnConnectorProps |
TypeScript | aws-cdk-lib » aws_pcaconnectorscep » CfnConnectorProps |
Properties for defining a CfnConnector.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcaconnectorscep as pcaconnectorscep } from 'aws-cdk-lib';
const cfnConnectorProps: pcaconnectorscep.CfnConnectorProps = {
certificateAuthorityArn: 'certificateAuthorityArn',
// the properties below are optional
mobileDeviceManagement: {
intune: {
azureApplicationId: 'azureApplicationId',
domain: 'domain',
},
},
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The Amazon Resource Name (ARN) of the certificate authority associated with the connector. |
| mobile | IResolvable | Mobile | Contains settings relevant to the mobile device management system that you chose for the connector. |
| tags? | { [string]: string } |
certificateAuthorityArn
Type:
string
The Amazon Resource Name (ARN) of the certificate authority associated with the connector.
mobileDeviceManagement?
Type:
IResolvable | Mobile
(optional)
Contains settings relevant to the mobile device management system that you chose for the connector.
If you didn't configure MobileDeviceManagement , then the connector is for general-purpose use and this object is empty.
tags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript