Interface CfnConnector.MobileDeviceManagementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnector.MobileDeviceManagementProperty.Jsii$Proxy
Enclosing class:
CfnConnector

@Stability(Stable) public static interface CfnConnector.MobileDeviceManagementProperty extends software.amazon.jsii.JsiiSerializable
If you don't supply a value, by default Connector for SCEP creates a connector for general-purpose use.

A general-purpose connector is designed to work with clients or endpoints that support the SCEP protocol, except Connector for SCEP for Microsoft Intune. For information about considerations and limitations with using Connector for SCEP, see Considerations and Limitations .

If you provide an IntuneConfiguration , Connector for SCEP creates a connector for use with Microsoft Intune, and you manage the challenge passwords using Microsoft Intune. For more information, see Using Connector for SCEP for Microsoft Intune .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.pcaconnectorscep.*;
 MobileDeviceManagementProperty mobileDeviceManagementProperty = MobileDeviceManagementProperty.builder()
         .intune(IntuneConfigurationProperty.builder()
                 .azureApplicationId("azureApplicationId")
                 .domain("domain")
                 .build())
         .build();
 

See Also: