Class: AWSCDK::AppFlow::CfnConnectorProfile::ServiceNowConnectorProfilePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_flow/cfn_connector_profile.rb

Overview

The connector-specific profile properties required when using ServiceNow.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(instance_url:) ⇒ ServiceNowConnectorProfilePropertiesProperty

Returns a new instance of ServiceNowConnectorProfilePropertiesProperty.

Parameters:

  • instance_url (String)

    The location of the ServiceNow resource.



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_urlString (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_propertiesObject



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_jsiiObject



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