interface CfnConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.PCAConnectorSCEP.Mixins.CfnConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspcaconnectorscep/mixins#CfnConnectorMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pcaconnectorscep.mixins.CfnConnectorMixinProps |
Python | aws_cdk.mixins_preview.aws_pcaconnectorscep.mixins.CfnConnectorMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pcaconnectorscep » mixins » CfnConnectorMixinProps |
Properties for CfnConnectorPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pcaconnectorscep_mixins } from '@aws-cdk/mixins-preview/aws-pcaconnectorscep';
const cfnConnectorMixinProps: pcaconnectorscep_mixins.CfnConnectorMixinProps = {
certificateAuthorityArn: 'certificateAuthorityArn',
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
(optional)
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