Class: AWSCDK::CustomerProfiles::CfnIntegration::ServiceNowSourcePropertiesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
customer_profiles/cfn_integration.rb

Overview

The properties that are applied when ServiceNow is being used as a source.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object:) ⇒ ServiceNowSourcePropertiesProperty

Returns a new instance of ServiceNowSourcePropertiesProperty.

Parameters:

  • object (String)

    The object specified in the ServiceNow flow source.



1072
1073
1074
1075
# File 'customer_profiles/cfn_integration.rb', line 1072

def initialize(object:)
  @object = object
  Jsii::Type.check_type(@object, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "object")
end

Instance Attribute Details

#objectString (readonly)

The object specified in the ServiceNow flow source.



1081
1082
1083
# File 'customer_profiles/cfn_integration.rb', line 1081

def object
  @object
end

Class Method Details

.jsii_propertiesObject



1083
1084
1085
1086
1087
# File 'customer_profiles/cfn_integration.rb', line 1083

def self.jsii_properties
  {
    :object => "object",
  }
end

Instance Method Details

#to_jsiiObject



1089
1090
1091
1092
1093
1094
1095
# File 'customer_profiles/cfn_integration.rb', line 1089

def to_jsii
  result = {}
  result.merge!({
    "object" => @object,
  })
  result.compact
end