Class: Aws::Appflow::Types::CustomConnectorSourceProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::CustomConnectorSourceProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass CustomConnectorSourceProperties data as a hash:
{
entity_name: "EntityName", # required
custom_properties: {
"CustomPropertyKey" => "CustomPropertyValue",
},
}
The properties that are applied when the custom connector is being used as a source.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_properties ⇒ Hash<String,String>
Custom properties that are required to use the custom connector as a source.
-
#entity_name ⇒ String
The entity specified in the custom connector as a source in the flow.
Instance Attribute Details
#custom_properties ⇒ Hash<String,String>
Custom properties that are required to use the custom connector as a source.
2537 2538 2539 2540 2541 2542 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2537 class CustomConnectorSourceProperties < Struct.new( :entity_name, :custom_properties) SENSITIVE = [] include Aws::Structure end |
#entity_name ⇒ String
The entity specified in the custom connector as a source in the flow.
2537 2538 2539 2540 2541 2542 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2537 class CustomConnectorSourceProperties < Struct.new( :entity_name, :custom_properties) SENSITIVE = [] include Aws::Structure end |