Class: Aws::Appflow::Types::CustomConnectorProfileProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::CustomConnectorProfileProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Note:
When making an API call, you may pass CustomConnectorProfileProperties data as a hash:
{
profile_properties: {
"ProfilePropertyKey" => "ProfilePropertyValue",
},
o_auth_2_properties: {
token_url: "TokenUrl", # required
o_auth_2_grant_type: "CLIENT_CREDENTIALS", # required, accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE
token_url_custom_properties: {
"CustomPropertyKey" => "CustomPropertyValue",
},
},
}
The profile properties required by the custom connector.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#o_auth_2_properties ⇒ Types::OAuth2Properties
The OAuth 2.0 properties required for OAuth 2.0 authentication.
-
#profile_properties ⇒ Hash<String,String>
A map of properties that are required to create a profile for the custom connector.
Instance Attribute Details
#o_auth_2_properties ⇒ Types::OAuth2Properties
The OAuth 2.0 properties required for OAuth 2.0 authentication.
2505 2506 2507 2508 2509 2510 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2505 class CustomConnectorProfileProperties < Struct.new( :profile_properties, :o_auth_2_properties) SENSITIVE = [] include Aws::Structure end |
#profile_properties ⇒ Hash<String,String>
A map of properties that are required to create a profile for the custom connector.
2505 2506 2507 2508 2509 2510 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2505 class CustomConnectorProfileProperties < Struct.new( :profile_properties, :o_auth_2_properties) SENSITIVE = [] include Aws::Structure end |