Class: AWSCDK::AppFlow::CfnConnectorProfile::ServiceNowConnectorProfilePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnConnectorProfile::ServiceNowConnectorProfilePropertiesProperty
- Defined in:
- app_flow/cfn_connector_profile.rb
Overview
The connector-specific profile properties required when using ServiceNow.
Instance Attribute Summary collapse
-
#instance_url ⇒ String
readonly
The location of the ServiceNow resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(instance_url:) ⇒ ServiceNowConnectorProfilePropertiesProperty
constructor
A new instance of ServiceNowConnectorProfilePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(instance_url:) ⇒ ServiceNowConnectorProfilePropertiesProperty
Returns a new instance of ServiceNowConnectorProfilePropertiesProperty.
2626 2627 2628 2629 |
# File 'app_flow/cfn_connector_profile.rb', line 2626 def initialize(instance_url:) @instance_url = instance_url Jsii::Type.check_type(@instance_url, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "instanceUrl") end |
Instance Attribute Details
#instance_url ⇒ String (readonly)
The location of the ServiceNow resource.
2635 2636 2637 |
# File 'app_flow/cfn_connector_profile.rb', line 2635 def instance_url @instance_url end |
Class Method Details
.jsii_properties ⇒ Object
2637 2638 2639 2640 2641 |
# File 'app_flow/cfn_connector_profile.rb', line 2637 def self.jsii_properties { :instance_url => "instanceUrl", } end |
Instance Method Details
#to_jsii ⇒ Object
2643 2644 2645 2646 2647 2648 2649 |
# File 'app_flow/cfn_connector_profile.rb', line 2643 def to_jsii result = {} result.merge!({ "instanceUrl" => @instance_url, }) result.compact end |