Interface CfnAssociation.ServiceNowConfigurationProperty

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

@Stability(Stable) public static interface CfnAssociation.ServiceNowConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for ServiceNow integration.

Defines the ServiceNow instance URL, instance ID, and webhook update settings required for the Agent Space to create, update, and manage incidents and change requests.

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.devopsagent.*;
 ServiceNowConfigurationProperty serviceNowConfigurationProperty = ServiceNowConfigurationProperty.builder()
         .enableWebhookUpdates(false)
         .instanceId("instanceId")
         .build();
 

See Also: