Class: AWSCDK::CustomerProfiles::CfnIntegration::ServiceNowSourcePropertiesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CustomerProfiles::CfnIntegration::ServiceNowSourcePropertiesProperty
- 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
-
#object ⇒ String
readonly
The object specified in the ServiceNow flow source.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(object:) ⇒ ServiceNowSourcePropertiesProperty
constructor
A new instance of ServiceNowSourcePropertiesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(object:) ⇒ ServiceNowSourcePropertiesProperty
Returns a new instance of ServiceNowSourcePropertiesProperty.
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
#object ⇒ String (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_properties ⇒ Object
1083 1084 1085 1086 1087 |
# File 'customer_profiles/cfn_integration.rb', line 1083 def self.jsii_properties { :object => "object", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |