Interface CfnConnectorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-27T13:12:17.665Z")
@Stability(Stable)
public interface CfnConnectorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnConnectorPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.pcaconnectorscep.*;
CfnConnectorMixinProps cfnConnectorMixinProps = CfnConnectorMixinProps.builder()
.certificateAuthorityArn("certificateAuthorityArn")
.mobileDeviceManagement(MobileDeviceManagementProperty.builder()
.intune(IntuneConfigurationProperty.builder()
.azureApplicationId("azureApplicationId")
.domain("domain")
.build())
.build())
.tags(Map.of(
"tagsKey", "tags"))
.vpcEndpointId("vpcEndpointId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorMixinPropsstatic final classAn implementation forCfnConnectorMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateAuthorityArn
The Amazon Resource Name (ARN) of the certificate authority associated with the connector.- See Also:
-
getMobileDeviceManagement
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.Returns union: either
IResolvableorCfnConnectorPropsMixin.MobileDeviceManagementProperty- See Also:
-
getTags
- See Also:
-
getVpcEndpointId
- See Also:
-
builder
- Returns:
- a
CfnConnectorMixinProps.BuilderofCfnConnectorMixinProps
-