CfnConnectorProfile
- class aws_cdk.aws_appflow.CfnConnectorProfile(scope, id, *, connection_mode, connector_profile_name, connector_type, connector_label=None, connector_profile_config=None, kms_arn=None)
- Bases: - CfnResource- A CloudFormation - AWS::AppFlow::ConnectorProfile.- The - AWS::AppFlow::ConnectorProfileresource is an Amazon AppFlow resource type that specifies the configuration profile for an instance of a connector. This includes the provided name, credentials ARN, connection-mode, and so on. The fields that are common to all types of connector profiles are explicitly specified under the- Propertiesfield. The rest of the connector-specific properties are specified under- Properties/ConnectorProfileConfig. .. epigraph:- If you want to use AWS CloudFormation to create a connector profile for connectors that implement OAuth (such as Salesforce, Slack, Zendesk, and Google Analytics), you must fetch the access and refresh tokens. You can do this by implementing your own UI for OAuth, or by retrieving the tokens from elsewhere. Alternatively, you can use the Amazon AppFlow console to create the connector profile, and then use that connector profile in the flow creation CloudFormation template. - CloudformationResource:
- AWS::AppFlow::ConnectorProfile 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow cfn_connector_profile = appflow.CfnConnectorProfile(self, "MyCfnConnectorProfile", connection_mode="connectionMode", connector_profile_name="connectorProfileName", connector_type="connectorType", # the properties below are optional connector_label="connectorLabel", connector_profile_config=appflow.CfnConnectorProfile.ConnectorProfileConfigProperty( connector_profile_credentials=appflow.CfnConnectorProfile.ConnectorProfileCredentialsProperty( amplitude=appflow.CfnConnectorProfile.AmplitudeConnectorProfileCredentialsProperty( api_key="apiKey", secret_key="secretKey" ), custom_connector=appflow.CfnConnectorProfile.CustomConnectorProfileCredentialsProperty( authentication_type="authenticationType", # the properties below are optional api_key=appflow.CfnConnectorProfile.ApiKeyCredentialsProperty( api_key="apiKey", # the properties below are optional api_secret_key="apiSecretKey" ), basic=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), custom=appflow.CfnConnectorProfile.CustomAuthCredentialsProperty( custom_authentication_type="customAuthenticationType", # the properties below are optional credentials_map={ "credentials_map_key": "credentialsMap" } ), oauth2=appflow.CfnConnectorProfile.OAuth2CredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", o_auth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ), datadog=appflow.CfnConnectorProfile.DatadogConnectorProfileCredentialsProperty( api_key="apiKey", application_key="applicationKey" ), dynatrace=appflow.CfnConnectorProfile.DynatraceConnectorProfileCredentialsProperty( api_token="apiToken" ), google_analytics=appflow.CfnConnectorProfile.GoogleAnalyticsConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ), infor_nexus=appflow.CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty( access_key_id="accessKeyId", datakey="datakey", secret_access_key="secretAccessKey", user_id="userId" ), marketo=appflow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ), pardot=appflow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ), redshift=appflow.CfnConnectorProfile.RedshiftConnectorProfileCredentialsProperty( password="password", username="username" ), salesforce=appflow.CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), jwt_token="jwtToken", o_auth2_grant_type="oAuth2GrantType", refresh_token="refreshToken" ), sapo_data=appflow.CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty( basic_auth_credentials=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), o_auth_credentials=appflow.CfnConnectorProfile.OAuthCredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ), service_now=appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty( password="password", username="username" ), singular=appflow.CfnConnectorProfile.SingularConnectorProfileCredentialsProperty( api_key="apiKey" ), slack=appflow.CfnConnectorProfile.SlackConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ), snowflake=appflow.CfnConnectorProfile.SnowflakeConnectorProfileCredentialsProperty( password="password", username="username" ), trendmicro=appflow.CfnConnectorProfile.TrendmicroConnectorProfileCredentialsProperty( api_secret_key="apiSecretKey" ), veeva=appflow.CfnConnectorProfile.VeevaConnectorProfileCredentialsProperty( password="password", username="username" ), zendesk=appflow.CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ) ), connector_profile_properties=appflow.CfnConnectorProfile.ConnectorProfilePropertiesProperty( custom_connector=appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty( o_auth2_properties=appflow.CfnConnectorProfile.OAuth2PropertiesProperty( o_auth2_grant_type="oAuth2GrantType", token_url="tokenUrl", token_url_custom_properties={ "token_url_custom_properties_key": "tokenUrlCustomProperties" } ), profile_properties={ "profile_properties_key": "profileProperties" } ), datadog=appflow.CfnConnectorProfile.DatadogConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), dynatrace=appflow.CfnConnectorProfile.DynatraceConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), infor_nexus=appflow.CfnConnectorProfile.InforNexusConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), marketo=appflow.CfnConnectorProfile.MarketoConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), pardot=appflow.CfnConnectorProfile.PardotConnectorProfilePropertiesProperty( business_unit_id="businessUnitId", # the properties below are optional instance_url="instanceUrl", is_sandbox_environment=False ), redshift=appflow.CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty( bucket_name="bucketName", role_arn="roleArn", # the properties below are optional bucket_prefix="bucketPrefix", cluster_identifier="clusterIdentifier", data_api_role_arn="dataApiRoleArn", database_name="databaseName", database_url="databaseUrl", is_redshift_serverless=False, workgroup_name="workgroupName" ), salesforce=appflow.CfnConnectorProfile.SalesforceConnectorProfilePropertiesProperty( instance_url="instanceUrl", is_sandbox_environment=False, use_private_link_for_metadata_and_authorization=False ), sapo_data=appflow.CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty( application_host_url="applicationHostUrl", application_service_path="applicationServicePath", client_number="clientNumber", logon_language="logonLanguage", o_auth_properties=appflow.CfnConnectorProfile.OAuthPropertiesProperty( auth_code_url="authCodeUrl", o_auth_scopes=["oAuthScopes"], token_url="tokenUrl" ), port_number=123, private_link_service_name="privateLinkServiceName" ), service_now=appflow.CfnConnectorProfile.ServiceNowConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), slack=appflow.CfnConnectorProfile.SlackConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), snowflake=appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty( bucket_name="bucketName", stage="stage", warehouse="warehouse", # the properties below are optional account_name="accountName", bucket_prefix="bucketPrefix", private_link_service_name="privateLinkServiceName", region="region" ), veeva=appflow.CfnConnectorProfile.VeevaConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), zendesk=appflow.CfnConnectorProfile.ZendeskConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) ) ), kms_arn="kmsArn" ) - Create a new - AWS::AppFlow::ConnectorProfile.- Parameters:
- scope ( - Construct) –- scope in which this resource is defined. 
 
- id ( - str) –- scoped id of the resource. 
 
- connection_mode ( - str) – Indicates the connection mode and if it is public or private.
- connector_profile_name ( - str) – The name of the connector profile. The name is unique for each- ConnectorProfilein the AWS account .
- connector_type ( - str) – The type of connector, such as Salesforce, Amplitude, and so on.
- connector_label ( - Optional[- str]) – The label for the connector profile being created.
- connector_profile_config ( - Union[- IResolvable,- ConnectorProfileConfigProperty,- Dict[- str,- Any],- None]) – Defines the connector-specific configuration and credentials.
- kms_arn ( - Optional[- str]) – The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don’t provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key.
 
 - Methods - add_deletion_override(path)
- Syntactic sugar for - addOverride(path, undefined).- Parameters:
- path ( - str) – The path of the value to delete.
- Return type:
- None
 
 - add_depends_on(target)
- Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned. - This can be used for resources across stacks (or nested stack) boundaries and the dependency will automatically be transferred to the relevant scope. - Parameters:
- target ( - CfnResource)
- Return type:
- None
 
 - add_metadata(key, value)
- Add a value to the CloudFormation Resource Metadata. - Parameters:
- key ( - str)
- value ( - Any)
 
- See:
- Return type:
- None
 - Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly. 
 - add_override(path, value)
- Adds an override to the synthesized CloudFormation resource. - To add a property override, either use - addPropertyOverrideor prefix- pathwith “Properties.” (i.e.- Properties.TopicName).- If the override is nested, separate each nested level using a dot (.) in the path parameter. If there is an array as part of the nesting, specify the index in the path. - To include a literal - .in the property name, prefix with a- \. In most programming languages you will need to write this as- "\\."because the- \itself will need to be escaped.- For example: - cfn_resource.add_override("Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes", ["myattribute"]) cfn_resource.add_override("Properties.GlobalSecondaryIndexes.1.ProjectionType", "INCLUDE") - would add the overrides Example: - "Properties": { "GlobalSecondaryIndexes": [ { "Projection": { "NonKeyAttributes": [ "myattribute" ] ... } ... }, { "ProjectionType": "INCLUDE" ... }, ] ... } - The - valueargument to- addOverridewill not be processed or translated in any way. Pass raw JSON values in here with the correct capitalization for CloudFormation. If you pass CDK classes or structs, they will be rendered with lowercased key names, and CloudFormation will reject the template.- Parameters:
- path ( - str) –- The path of the property, you can use dot notation to override values in complex types. Any intermdediate keys will be created as needed. 
 
- value ( - Any) –- The value. Could be primitive or complex. 
 
 
- Return type:
- None
 
 - add_property_deletion_override(property_path)
- Adds an override that deletes the value of a property from the resource definition. - Parameters:
- property_path ( - str) – The path to the property.
- Return type:
- None
 
 - add_property_override(property_path, value)
- Adds an override to a resource property. - Syntactic sugar for - addOverride("Properties.<...>", value).- Parameters:
- property_path ( - str) – The path of the property.
- value ( - Any) – The value.
 
- Return type:
- None
 
 - apply_removal_policy(policy=None, *, apply_to_update_replace_policy=None, default=None)
- Sets the deletion policy of the resource based on the removal policy specified. - The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced. - The resource can be deleted ( - RemovalPolicy.DESTROY), or left in your AWS account for data recovery and cleanup later (- RemovalPolicy.RETAIN).- Parameters:
- policy ( - Optional[- RemovalPolicy])
- apply_to_update_replace_policy ( - Optional[- bool]) – Apply the same deletion policy to the resource’s “UpdateReplacePolicy”. Default: true
- default ( - Optional[- RemovalPolicy]) – The default policy to apply in case the removal policy is not defined. Default: - Default value is resource specific. To determine the default value for a resoure, please consult that specific resource’s documentation.
 
- Return type:
- None
 
 - get_att(attribute_name)
- Returns a token for an runtime attribute of this resource. - Ideally, use generated attribute accessors (e.g. - resource.arn), but this can be used for future compatibility in case there is no generated attribute.- Parameters:
- attribute_name ( - str) – The name of the attribute.
- Return type:
 
 - get_metadata(key)
- Retrieve a value value from the CloudFormation Resource Metadata. - Parameters:
- key ( - str)
- See:
- Return type:
- Any
 - Note that this is a different set of metadata from CDK node metadata; this metadata ends up in the stack template under the resource, whereas CDK node metadata ends up in the Cloud Assembly. 
 - inspect(inspector)
- Examines the CloudFormation resource and discloses attributes. - Parameters:
- inspector ( - TreeInspector) –- tree inspector to collect and process attributes. 
 
- Return type:
- None
 
 - override_logical_id(new_logical_id)
- Overrides the auto-generated logical ID with a specific ID. - Parameters:
- new_logical_id ( - str) – The new logical ID to use for this stack element.
- Return type:
- None
 
 - to_string()
- Returns a string representation of this construct. - Return type:
- str
- Returns:
- a string representation of this resource 
 
 - Attributes - CFN_RESOURCE_TYPE_NAME = 'AWS::AppFlow::ConnectorProfile'
 - attr_connector_profile_arn
- The Amazon Resource Name (ARN) of the connector profile. - CloudformationAttribute:
- ConnectorProfileArn 
 
 - attr_credentials_arn
- The Amazon Resource Name (ARN) of the connector profile credentials. - CloudformationAttribute:
- CredentialsArn 
 
 - cfn_options
- Options for this resource, such as condition, update policy etc. 
 - cfn_resource_type
- AWS resource type. 
 - connection_mode
- Indicates the connection mode and if it is public or private. 
 - connector_label
- The label for the connector profile being created. 
 - connector_profile_config
- Defines the connector-specific configuration and credentials. 
 - connector_profile_name
- The name of the connector profile. - The name is unique for each - ConnectorProfilein the AWS account .
 - connector_type
- The type of connector, such as Salesforce, Amplitude, and so on. 
 - creation_stack
- return: - the stack trace of the point where this Resource was created from, sourced from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most node +internal+ entries filtered. 
 - kms_arn
- The ARN (Amazon Resource Name) of the Key Management Service (KMS) key you provide for encryption. - This is required if you do not want to use the Amazon AppFlow-managed KMS key. If you don’t provide anything here, Amazon AppFlow uses the Amazon AppFlow-managed KMS key. 
 - logical_id
- The logical ID for this CloudFormation stack element. - The logical ID of the element is calculated from the path of the resource node in the construct tree. - To override this value, use - overrideLogicalId(newLogicalId).- Returns:
 - the logical ID as a stringified token. This value will only get resolved during synthesis. 
 - node
- The construct tree node associated with this construct. 
 - ref
- Return a string that will be resolved to a CloudFormation - { Ref }for this element.- If, by any chance, the intrinsic reference of a resource is not a string, you could coerce it to an IResolvable through - Lazy.any({ produce: resource.ref }).
 - stack
- The stack in which this element is defined. - CfnElements must be defined within a stack scope (directly or indirectly). 
 - Static Methods - classmethod is_cfn_element(x)
- Returns - trueif a construct is a stack element (i.e. part of the synthesized cloudformation template).- Uses duck-typing instead of - instanceofto allow stack elements from different versions of this library to be included in the same stack.- Parameters:
- x ( - Any)
- Return type:
- bool
- Returns:
- The construct as a stack element or undefined if it is not a stack element. 
 
 - classmethod is_cfn_resource(construct)
- Check whether the given construct is a CfnResource. - Parameters:
- construct ( - IConstruct)
- Return type:
- bool
 
 - classmethod is_construct(x)
- Return whether the given object is a Construct. - Parameters:
- x ( - Any)
- Return type:
- bool
 
 
AmplitudeConnectorProfileCredentialsProperty
- class CfnConnectorProfile.AmplitudeConnectorProfileCredentialsProperty(*, api_key, secret_key)
- Bases: - object- The connector-specific credentials required when using Amplitude. - Parameters:
- api_key ( - str) – A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
- secret_key ( - str) – The Secret Access Key portion of the credentials.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow amplitude_connector_profile_credentials_property = appflow.CfnConnectorProfile.AmplitudeConnectorProfileCredentialsProperty( api_key="apiKey", secret_key="secretKey" ) - Attributes - api_key
- A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API. 
 - secret_key
- The Secret Access Key portion of the credentials. 
 
ApiKeyCredentialsProperty
- class CfnConnectorProfile.ApiKeyCredentialsProperty(*, api_key, api_secret_key=None)
- Bases: - object- The API key credentials required for API key authentication. - Parameters:
- api_key ( - str) – The API key required for API key authentication.
- api_secret_key ( - Optional[- str]) – The API secret key required for API key authentication.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow api_key_credentials_property = appflow.CfnConnectorProfile.ApiKeyCredentialsProperty( api_key="apiKey", # the properties below are optional api_secret_key="apiSecretKey" ) - Attributes - api_key
- The API key required for API key authentication. 
 - api_secret_key
- The API secret key required for API key authentication. 
 
BasicAuthCredentialsProperty
- class CfnConnectorProfile.BasicAuthCredentialsProperty(*, password, username)
- Bases: - object- The basic auth credentials required for basic authentication. - Parameters:
- password ( - str) – The password to use to connect to a resource.
- username ( - str) – The username to use to connect to a resource.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow basic_auth_credentials_property = appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ) - Attributes - password
- The password to use to connect to a resource. 
 - username
- The username to use to connect to a resource. 
 
ConnectorOAuthRequestProperty
- class CfnConnectorProfile.ConnectorOAuthRequestProperty(*, auth_code=None, redirect_uri=None)
- Bases: - object- Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. - Parameters:
- auth_code ( - Optional[- str]) – The code provided by the connector when it has been authenticated via the connected app.
- redirect_uri ( - Optional[- str]) – The URL to which the authentication server redirects the browser after authorization has been granted.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow connector_oAuth_request_property = appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) - Attributes - auth_code
- The code provided by the connector when it has been authenticated via the connected app. 
 - redirect_uri
- The URL to which the authentication server redirects the browser after authorization has been granted. 
 
ConnectorProfileConfigProperty
- class CfnConnectorProfile.ConnectorProfileConfigProperty(*, connector_profile_credentials=None, connector_profile_properties=None)
- Bases: - object- Defines the connector-specific configuration and credentials for the connector profile. - Parameters:
- connector_profile_credentials ( - Union[- IResolvable,- ConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required by each connector.
- connector_profile_properties ( - Union[- IResolvable,- ConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties of the profile configuration.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow connector_profile_config_property = appflow.CfnConnectorProfile.ConnectorProfileConfigProperty( connector_profile_credentials=appflow.CfnConnectorProfile.ConnectorProfileCredentialsProperty( amplitude=appflow.CfnConnectorProfile.AmplitudeConnectorProfileCredentialsProperty( api_key="apiKey", secret_key="secretKey" ), custom_connector=appflow.CfnConnectorProfile.CustomConnectorProfileCredentialsProperty( authentication_type="authenticationType", # the properties below are optional api_key=appflow.CfnConnectorProfile.ApiKeyCredentialsProperty( api_key="apiKey", # the properties below are optional api_secret_key="apiSecretKey" ), basic=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), custom=appflow.CfnConnectorProfile.CustomAuthCredentialsProperty( custom_authentication_type="customAuthenticationType", # the properties below are optional credentials_map={ "credentials_map_key": "credentialsMap" } ), oauth2=appflow.CfnConnectorProfile.OAuth2CredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", o_auth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ), datadog=appflow.CfnConnectorProfile.DatadogConnectorProfileCredentialsProperty( api_key="apiKey", application_key="applicationKey" ), dynatrace=appflow.CfnConnectorProfile.DynatraceConnectorProfileCredentialsProperty( api_token="apiToken" ), google_analytics=appflow.CfnConnectorProfile.GoogleAnalyticsConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ), infor_nexus=appflow.CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty( access_key_id="accessKeyId", datakey="datakey", secret_access_key="secretAccessKey", user_id="userId" ), marketo=appflow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ), pardot=appflow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ), redshift=appflow.CfnConnectorProfile.RedshiftConnectorProfileCredentialsProperty( password="password", username="username" ), salesforce=appflow.CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), jwt_token="jwtToken", o_auth2_grant_type="oAuth2GrantType", refresh_token="refreshToken" ), sapo_data=appflow.CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty( basic_auth_credentials=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), o_auth_credentials=appflow.CfnConnectorProfile.OAuthCredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ), service_now=appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty( password="password", username="username" ), singular=appflow.CfnConnectorProfile.SingularConnectorProfileCredentialsProperty( api_key="apiKey" ), slack=appflow.CfnConnectorProfile.SlackConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ), snowflake=appflow.CfnConnectorProfile.SnowflakeConnectorProfileCredentialsProperty( password="password", username="username" ), trendmicro=appflow.CfnConnectorProfile.TrendmicroConnectorProfileCredentialsProperty( api_secret_key="apiSecretKey" ), veeva=appflow.CfnConnectorProfile.VeevaConnectorProfileCredentialsProperty( password="password", username="username" ), zendesk=appflow.CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ) ), connector_profile_properties=appflow.CfnConnectorProfile.ConnectorProfilePropertiesProperty( custom_connector=appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty( o_auth2_properties=appflow.CfnConnectorProfile.OAuth2PropertiesProperty( o_auth2_grant_type="oAuth2GrantType", token_url="tokenUrl", token_url_custom_properties={ "token_url_custom_properties_key": "tokenUrlCustomProperties" } ), profile_properties={ "profile_properties_key": "profileProperties" } ), datadog=appflow.CfnConnectorProfile.DatadogConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), dynatrace=appflow.CfnConnectorProfile.DynatraceConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), infor_nexus=appflow.CfnConnectorProfile.InforNexusConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), marketo=appflow.CfnConnectorProfile.MarketoConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), pardot=appflow.CfnConnectorProfile.PardotConnectorProfilePropertiesProperty( business_unit_id="businessUnitId", # the properties below are optional instance_url="instanceUrl", is_sandbox_environment=False ), redshift=appflow.CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty( bucket_name="bucketName", role_arn="roleArn", # the properties below are optional bucket_prefix="bucketPrefix", cluster_identifier="clusterIdentifier", data_api_role_arn="dataApiRoleArn", database_name="databaseName", database_url="databaseUrl", is_redshift_serverless=False, workgroup_name="workgroupName" ), salesforce=appflow.CfnConnectorProfile.SalesforceConnectorProfilePropertiesProperty( instance_url="instanceUrl", is_sandbox_environment=False, use_private_link_for_metadata_and_authorization=False ), sapo_data=appflow.CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty( application_host_url="applicationHostUrl", application_service_path="applicationServicePath", client_number="clientNumber", logon_language="logonLanguage", o_auth_properties=appflow.CfnConnectorProfile.OAuthPropertiesProperty( auth_code_url="authCodeUrl", o_auth_scopes=["oAuthScopes"], token_url="tokenUrl" ), port_number=123, private_link_service_name="privateLinkServiceName" ), service_now=appflow.CfnConnectorProfile.ServiceNowConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), slack=appflow.CfnConnectorProfile.SlackConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), snowflake=appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty( bucket_name="bucketName", stage="stage", warehouse="warehouse", # the properties below are optional account_name="accountName", bucket_prefix="bucketPrefix", private_link_service_name="privateLinkServiceName", region="region" ), veeva=appflow.CfnConnectorProfile.VeevaConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), zendesk=appflow.CfnConnectorProfile.ZendeskConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) ) ) - Attributes - connector_profile_credentials
- The connector-specific credentials required by each connector. 
 - connector_profile_properties
- The connector-specific properties of the profile configuration. 
 
ConnectorProfileCredentialsProperty
- class CfnConnectorProfile.ConnectorProfileCredentialsProperty(*, amplitude=None, custom_connector=None, datadog=None, dynatrace=None, google_analytics=None, infor_nexus=None, marketo=None, pardot=None, redshift=None, salesforce=None, sapo_data=None, service_now=None, singular=None, slack=None, snowflake=None, trendmicro=None, veeva=None, zendesk=None)
- Bases: - object- The connector-specific credentials required by a connector. - Parameters:
- amplitude ( - Union[- IResolvable,- AmplitudeConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Amplitude.
- custom_connector ( - Union[- IResolvable,- CustomConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific profile credentials that are required when using the custom connector.
- datadog ( - Union[- IResolvable,- DatadogConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Datadog.
- dynatrace ( - Union[- IResolvable,- DynatraceConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Dynatrace.
- google_analytics ( - Union[- IResolvable,- GoogleAnalyticsConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Google Analytics.
- infor_nexus ( - Union[- IResolvable,- InforNexusConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Infor Nexus.
- marketo ( - Union[- IResolvable,- MarketoConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Marketo.
- pardot ( - Union[- IResolvable,- PardotConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) –- CfnConnectorProfile.ConnectorProfileCredentialsProperty.Pardot.
- redshift ( - Union[- IResolvable,- RedshiftConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Amazon Redshift.
- salesforce ( - Union[- IResolvable,- SalesforceConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Salesforce.
- sapo_data ( - Union[- IResolvable,- SAPODataConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific profile credentials required when using SAPOData.
- service_now ( - Union[- IResolvable,- ServiceNowConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using ServiceNow.
- singular ( - Union[- IResolvable,- SingularConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Singular.
- slack ( - Union[- IResolvable,- SlackConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Slack.
- snowflake ( - Union[- IResolvable,- SnowflakeConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Snowflake.
- trendmicro ( - Union[- IResolvable,- TrendmicroConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Trend Micro.
- veeva ( - Union[- IResolvable,- VeevaConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Veeva.
- zendesk ( - Union[- IResolvable,- ZendeskConnectorProfileCredentialsProperty,- Dict[- str,- Any],- None]) – The connector-specific credentials required when using Zendesk.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow connector_profile_credentials_property = appflow.CfnConnectorProfile.ConnectorProfileCredentialsProperty( amplitude=appflow.CfnConnectorProfile.AmplitudeConnectorProfileCredentialsProperty( api_key="apiKey", secret_key="secretKey" ), custom_connector=appflow.CfnConnectorProfile.CustomConnectorProfileCredentialsProperty( authentication_type="authenticationType", # the properties below are optional api_key=appflow.CfnConnectorProfile.ApiKeyCredentialsProperty( api_key="apiKey", # the properties below are optional api_secret_key="apiSecretKey" ), basic=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), custom=appflow.CfnConnectorProfile.CustomAuthCredentialsProperty( custom_authentication_type="customAuthenticationType", # the properties below are optional credentials_map={ "credentials_map_key": "credentialsMap" } ), oauth2=appflow.CfnConnectorProfile.OAuth2CredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", o_auth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ), datadog=appflow.CfnConnectorProfile.DatadogConnectorProfileCredentialsProperty( api_key="apiKey", application_key="applicationKey" ), dynatrace=appflow.CfnConnectorProfile.DynatraceConnectorProfileCredentialsProperty( api_token="apiToken" ), google_analytics=appflow.CfnConnectorProfile.GoogleAnalyticsConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ), infor_nexus=appflow.CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty( access_key_id="accessKeyId", datakey="datakey", secret_access_key="secretAccessKey", user_id="userId" ), marketo=appflow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ), pardot=appflow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ), redshift=appflow.CfnConnectorProfile.RedshiftConnectorProfileCredentialsProperty( password="password", username="username" ), salesforce=appflow.CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), jwt_token="jwtToken", o_auth2_grant_type="oAuth2GrantType", refresh_token="refreshToken" ), sapo_data=appflow.CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty( basic_auth_credentials=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), o_auth_credentials=appflow.CfnConnectorProfile.OAuthCredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ), service_now=appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty( password="password", username="username" ), singular=appflow.CfnConnectorProfile.SingularConnectorProfileCredentialsProperty( api_key="apiKey" ), slack=appflow.CfnConnectorProfile.SlackConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ), snowflake=appflow.CfnConnectorProfile.SnowflakeConnectorProfileCredentialsProperty( password="password", username="username" ), trendmicro=appflow.CfnConnectorProfile.TrendmicroConnectorProfileCredentialsProperty( api_secret_key="apiSecretKey" ), veeva=appflow.CfnConnectorProfile.VeevaConnectorProfileCredentialsProperty( password="password", username="username" ), zendesk=appflow.CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ) ) - Attributes - amplitude
- The connector-specific credentials required when using Amplitude. 
 - custom_connector
- The connector-specific profile credentials that are required when using the custom connector. 
 - datadog
- The connector-specific credentials required when using Datadog. 
 - dynatrace
- The connector-specific credentials required when using Dynatrace. 
 - google_analytics
- The connector-specific credentials required when using Google Analytics. 
 - infor_nexus
- The connector-specific credentials required when using Infor Nexus. 
 - marketo
- The connector-specific credentials required when using Marketo. 
 - pardot
- CfnConnectorProfile.ConnectorProfileCredentialsProperty.Pardot.
 - redshift
- The connector-specific credentials required when using Amazon Redshift. 
 - salesforce
- The connector-specific credentials required when using Salesforce. 
 - sapo_data
- The connector-specific profile credentials required when using SAPOData. 
 - service_now
- The connector-specific credentials required when using ServiceNow. 
 - singular
- The connector-specific credentials required when using Singular. 
 - slack
- The connector-specific credentials required when using Slack. 
 - snowflake
- The connector-specific credentials required when using Snowflake. 
 - trendmicro
- The connector-specific credentials required when using Trend Micro. 
 - veeva
- The connector-specific credentials required when using Veeva. 
 - zendesk
- The connector-specific credentials required when using Zendesk. 
 
ConnectorProfilePropertiesProperty
- class CfnConnectorProfile.ConnectorProfilePropertiesProperty(*, custom_connector=None, datadog=None, dynatrace=None, infor_nexus=None, marketo=None, pardot=None, redshift=None, salesforce=None, sapo_data=None, service_now=None, slack=None, snowflake=None, veeva=None, zendesk=None)
- Bases: - object- The connector-specific profile properties required by each connector. - Parameters:
- custom_connector ( - Union[- IResolvable,- CustomConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The properties required by the custom connector.
- datadog ( - Union[- IResolvable,- DatadogConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Datadog.
- dynatrace ( - Union[- IResolvable,- DynatraceConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Dynatrace.
- infor_nexus ( - Union[- IResolvable,- InforNexusConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Infor Nexus.
- marketo ( - Union[- IResolvable,- MarketoConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Marketo.
- pardot ( - Union[- IResolvable,- PardotConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) –- CfnConnectorProfile.ConnectorProfilePropertiesProperty.Pardot.
- redshift ( - Union[- IResolvable,- RedshiftConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Amazon Redshift.
- salesforce ( - Union[- IResolvable,- SalesforceConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Salesforce.
- sapo_data ( - Union[- IResolvable,- SAPODataConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific profile properties required when using SAPOData.
- service_now ( - Union[- IResolvable,- ServiceNowConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by serviceNow.
- slack ( - Union[- IResolvable,- SlackConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Slack.
- snowflake ( - Union[- IResolvable,- SnowflakeConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Snowflake.
- veeva ( - Union[- IResolvable,- VeevaConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Veeva.
- zendesk ( - Union[- IResolvable,- ZendeskConnectorProfilePropertiesProperty,- Dict[- str,- Any],- None]) – The connector-specific properties required by Zendesk.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow connector_profile_properties_property = appflow.CfnConnectorProfile.ConnectorProfilePropertiesProperty( custom_connector=appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty( o_auth2_properties=appflow.CfnConnectorProfile.OAuth2PropertiesProperty( o_auth2_grant_type="oAuth2GrantType", token_url="tokenUrl", token_url_custom_properties={ "token_url_custom_properties_key": "tokenUrlCustomProperties" } ), profile_properties={ "profile_properties_key": "profileProperties" } ), datadog=appflow.CfnConnectorProfile.DatadogConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), dynatrace=appflow.CfnConnectorProfile.DynatraceConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), infor_nexus=appflow.CfnConnectorProfile.InforNexusConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), marketo=appflow.CfnConnectorProfile.MarketoConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), pardot=appflow.CfnConnectorProfile.PardotConnectorProfilePropertiesProperty( business_unit_id="businessUnitId", # the properties below are optional instance_url="instanceUrl", is_sandbox_environment=False ), redshift=appflow.CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty( bucket_name="bucketName", role_arn="roleArn", # the properties below are optional bucket_prefix="bucketPrefix", cluster_identifier="clusterIdentifier", data_api_role_arn="dataApiRoleArn", database_name="databaseName", database_url="databaseUrl", is_redshift_serverless=False, workgroup_name="workgroupName" ), salesforce=appflow.CfnConnectorProfile.SalesforceConnectorProfilePropertiesProperty( instance_url="instanceUrl", is_sandbox_environment=False, use_private_link_for_metadata_and_authorization=False ), sapo_data=appflow.CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty( application_host_url="applicationHostUrl", application_service_path="applicationServicePath", client_number="clientNumber", logon_language="logonLanguage", o_auth_properties=appflow.CfnConnectorProfile.OAuthPropertiesProperty( auth_code_url="authCodeUrl", o_auth_scopes=["oAuthScopes"], token_url="tokenUrl" ), port_number=123, private_link_service_name="privateLinkServiceName" ), service_now=appflow.CfnConnectorProfile.ServiceNowConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), slack=appflow.CfnConnectorProfile.SlackConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), snowflake=appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty( bucket_name="bucketName", stage="stage", warehouse="warehouse", # the properties below are optional account_name="accountName", bucket_prefix="bucketPrefix", private_link_service_name="privateLinkServiceName", region="region" ), veeva=appflow.CfnConnectorProfile.VeevaConnectorProfilePropertiesProperty( instance_url="instanceUrl" ), zendesk=appflow.CfnConnectorProfile.ZendeskConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) ) - Attributes - custom_connector
- The properties required by the custom connector. 
 - datadog
- The connector-specific properties required by Datadog. 
 - dynatrace
- The connector-specific properties required by Dynatrace. 
 - infor_nexus
- The connector-specific properties required by Infor Nexus. 
 - marketo
- The connector-specific properties required by Marketo. 
 - pardot
- CfnConnectorProfile.ConnectorProfilePropertiesProperty.Pardot.
 - redshift
- The connector-specific properties required by Amazon Redshift. 
 - salesforce
- The connector-specific properties required by Salesforce. 
 - sapo_data
- The connector-specific profile properties required when using SAPOData. 
 - service_now
- The connector-specific properties required by serviceNow. 
 - slack
- The connector-specific properties required by Slack. 
 - snowflake
- The connector-specific properties required by Snowflake. 
 - veeva
- The connector-specific properties required by Veeva. 
 - zendesk
- The connector-specific properties required by Zendesk. 
 
CustomAuthCredentialsProperty
- class CfnConnectorProfile.CustomAuthCredentialsProperty(*, custom_authentication_type, credentials_map=None)
- Bases: - object- The custom credentials required for custom authentication. - Parameters:
- custom_authentication_type ( - str) – The custom authentication type that the connector uses.
- credentials_map ( - Union[- IResolvable,- Mapping[- str,- str],- None]) – A map that holds custom authentication credentials.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow custom_auth_credentials_property = appflow.CfnConnectorProfile.CustomAuthCredentialsProperty( custom_authentication_type="customAuthenticationType", # the properties below are optional credentials_map={ "credentials_map_key": "credentialsMap" } ) - Attributes - credentials_map
- A map that holds custom authentication credentials. 
 - custom_authentication_type
- The custom authentication type that the connector uses. 
 
CustomConnectorProfileCredentialsProperty
- class CfnConnectorProfile.CustomConnectorProfileCredentialsProperty(*, authentication_type, api_key=None, basic=None, custom=None, oauth2=None)
- Bases: - object- The connector-specific profile credentials that are required when using the custom connector. - Parameters:
- authentication_type ( - str) – The authentication type that the custom connector uses for authenticating while creating a connector profile.
- api_key ( - Union[- IResolvable,- ApiKeyCredentialsProperty,- Dict[- str,- Any],- None]) – The API keys required for the authentication of the user.
- basic ( - Union[- IResolvable,- BasicAuthCredentialsProperty,- Dict[- str,- Any],- None]) – The basic credentials that are required for the authentication of the user.
- custom ( - Union[- IResolvable,- CustomAuthCredentialsProperty,- Dict[- str,- Any],- None]) – If the connector uses the custom authentication mechanism, this holds the required credentials.
- oauth2 ( - Union[- IResolvable,- OAuth2CredentialsProperty,- Dict[- str,- Any],- None]) – The OAuth 2.0 credentials required for the authentication of the user.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow custom_connector_profile_credentials_property = appflow.CfnConnectorProfile.CustomConnectorProfileCredentialsProperty( authentication_type="authenticationType", # the properties below are optional api_key=appflow.CfnConnectorProfile.ApiKeyCredentialsProperty( api_key="apiKey", # the properties below are optional api_secret_key="apiSecretKey" ), basic=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), custom=appflow.CfnConnectorProfile.CustomAuthCredentialsProperty( custom_authentication_type="customAuthenticationType", # the properties below are optional credentials_map={ "credentials_map_key": "credentialsMap" } ), oauth2=appflow.CfnConnectorProfile.OAuth2CredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", o_auth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ) - Attributes - api_key
- The API keys required for the authentication of the user. 
 - authentication_type
- The authentication type that the custom connector uses for authenticating while creating a connector profile. 
 - basic
- The basic credentials that are required for the authentication of the user. 
 - custom
- If the connector uses the custom authentication mechanism, this holds the required credentials. 
 - oauth2
- The OAuth 2.0 credentials required for the authentication of the user. 
 
CustomConnectorProfilePropertiesProperty
- class CfnConnectorProfile.CustomConnectorProfilePropertiesProperty(*, o_auth2_properties=None, profile_properties=None)
- Bases: - object- The profile properties required by the custom connector. - Parameters:
- o_auth2_properties ( - Union[- IResolvable,- OAuth2PropertiesProperty,- Dict[- str,- Any],- None]) – The OAuth 2.0 properties required for OAuth 2.0 authentication.
- profile_properties ( - Union[- IResolvable,- Mapping[- str,- str],- None]) – A map of properties that are required to create a profile for the custom connector.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow custom_connector_profile_properties_property = appflow.CfnConnectorProfile.CustomConnectorProfilePropertiesProperty( o_auth2_properties=appflow.CfnConnectorProfile.OAuth2PropertiesProperty( o_auth2_grant_type="oAuth2GrantType", token_url="tokenUrl", token_url_custom_properties={ "token_url_custom_properties_key": "tokenUrlCustomProperties" } ), profile_properties={ "profile_properties_key": "profileProperties" } ) - Attributes - o_auth2_properties
- The OAuth 2.0 properties required for OAuth 2.0 authentication. 
 - profile_properties
- A map of properties that are required to create a profile for the custom connector. 
 
DatadogConnectorProfileCredentialsProperty
- class CfnConnectorProfile.DatadogConnectorProfileCredentialsProperty(*, api_key, application_key)
- Bases: - object- The connector-specific credentials required by Datadog. - Parameters:
- api_key ( - str) – A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
- application_key ( - str) – Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. Application keys are associated with the user account that created them. The application key is used to log all requests made to the API.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow datadog_connector_profile_credentials_property = appflow.CfnConnectorProfile.DatadogConnectorProfileCredentialsProperty( api_key="apiKey", application_key="applicationKey" ) - Attributes - api_key
- A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API. 
 - application_key
- Application keys, in conjunction with your API key, give you full access to Datadog’s programmatic API. - Application keys are associated with the user account that created them. The application key is used to log all requests made to the API. 
 
DatadogConnectorProfilePropertiesProperty
- class CfnConnectorProfile.DatadogConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required by Datadog. - Parameters:
- instance_url ( - str) – The location of the Datadog resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow datadog_connector_profile_properties_property = appflow.CfnConnectorProfile.DatadogConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the Datadog resource. 
 
DynatraceConnectorProfileCredentialsProperty
- class CfnConnectorProfile.DynatraceConnectorProfileCredentialsProperty(*, api_token)
- Bases: - object- The connector-specific profile credentials required by Dynatrace. - Parameters:
- api_token ( - str) – The API tokens used by Dynatrace API to authenticate various API calls.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow dynatrace_connector_profile_credentials_property = appflow.CfnConnectorProfile.DynatraceConnectorProfileCredentialsProperty( api_token="apiToken" ) - Attributes - api_token
- The API tokens used by Dynatrace API to authenticate various API calls. 
 
DynatraceConnectorProfilePropertiesProperty
- class CfnConnectorProfile.DynatraceConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required by Dynatrace. - Parameters:
- instance_url ( - str) – The location of the Dynatrace resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow dynatrace_connector_profile_properties_property = appflow.CfnConnectorProfile.DynatraceConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the Dynatrace resource. 
 
GoogleAnalyticsConnectorProfileCredentialsProperty
- class CfnConnectorProfile.GoogleAnalyticsConnectorProfileCredentialsProperty(*, client_id, client_secret, access_token=None, connector_o_auth_request=None, refresh_token=None)
- Bases: - object- The connector-specific profile credentials required by Google Analytics. - Parameters:
- client_id ( - str) – The identifier for the desired client.
- client_secret ( - str) – The client secret used by the OAuth client to authenticate to the authorization server.
- access_token ( - Optional[- str]) – The credentials used to access protected Google Analytics resources.
- connector_o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) – Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
- refresh_token ( - Optional[- str]) – The credentials used to acquire new access tokens. This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow google_analytics_connector_profile_credentials_property = appflow.CfnConnectorProfile.GoogleAnalyticsConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) - Attributes - access_token
- The credentials used to access protected Google Analytics resources. 
 - client_id
- The identifier for the desired client. 
 - client_secret
- The client secret used by the OAuth client to authenticate to the authorization server. 
 - connector_o_auth_request
- Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. 
 - refresh_token
- The credentials used to acquire new access tokens. - This is required only for OAuth2 access tokens, and is not required for OAuth1 access tokens. 
 
InforNexusConnectorProfileCredentialsProperty
- class CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty(*, access_key_id, datakey, secret_access_key, user_id)
- Bases: - object- The connector-specific profile credentials required by Infor Nexus. - Parameters:
- access_key_id ( - str) – The Access Key portion of the credentials.
- datakey ( - str) – The encryption keys used to encrypt data.
- secret_access_key ( - str) – The secret key used to sign requests.
- user_id ( - str) – The identifier for the user.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow infor_nexus_connector_profile_credentials_property = appflow.CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty( access_key_id="accessKeyId", datakey="datakey", secret_access_key="secretAccessKey", user_id="userId" ) - Attributes - access_key_id
- The Access Key portion of the credentials. 
 - datakey
- The encryption keys used to encrypt data. 
 - secret_access_key
- The secret key used to sign requests. 
 
InforNexusConnectorProfilePropertiesProperty
- class CfnConnectorProfile.InforNexusConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required by Infor Nexus. - Parameters:
- instance_url ( - str) – The location of the Infor Nexus resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow infor_nexus_connector_profile_properties_property = appflow.CfnConnectorProfile.InforNexusConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the Infor Nexus resource. 
 
MarketoConnectorProfileCredentialsProperty
- class CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty(*, client_id, client_secret, access_token=None, connector_o_auth_request=None)
- Bases: - object- The connector-specific profile credentials required by Marketo. - Parameters:
- client_id ( - str) – The identifier for the desired client.
- client_secret ( - str) – The client secret used by the OAuth client to authenticate to the authorization server.
- access_token ( - Optional[- str]) – The credentials used to access protected Marketo resources.
- connector_o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) – Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow marketo_connector_profile_credentials_property = appflow.CfnConnectorProfile.MarketoConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ) - Attributes - access_token
- The credentials used to access protected Marketo resources. 
 - client_id
- The identifier for the desired client. 
 - client_secret
- The client secret used by the OAuth client to authenticate to the authorization server. 
 - connector_o_auth_request
- Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. 
 
MarketoConnectorProfilePropertiesProperty
- class CfnConnectorProfile.MarketoConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required when using Marketo. - Parameters:
- instance_url ( - str) – The location of the Marketo resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow marketo_connector_profile_properties_property = appflow.CfnConnectorProfile.MarketoConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the Marketo resource. 
 
OAuth2CredentialsProperty
- class CfnConnectorProfile.OAuth2CredentialsProperty(*, access_token=None, client_id=None, client_secret=None, o_auth_request=None, refresh_token=None)
- Bases: - object- The OAuth 2.0 credentials required for OAuth 2.0 authentication. - Parameters:
- access_token ( - Optional[- str]) – The access token used to access the connector on your behalf.
- client_id ( - Optional[- str]) – The identifier for the desired client.
- client_secret ( - Optional[- str]) – The client secret used by the OAuth client to authenticate to the authorization server.
- o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) –- CfnConnectorProfile.OAuth2CredentialsProperty.OAuthRequest.
- refresh_token ( - Optional[- str]) – The refresh token used to refresh an expired access token.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow o_auth2_credentials_property = appflow.CfnConnectorProfile.OAuth2CredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", o_auth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) - Attributes - access_token
- The access token used to access the connector on your behalf. 
 - client_id
- The identifier for the desired client. 
 - client_secret
- The client secret used by the OAuth client to authenticate to the authorization server. 
 - o_auth_request
- CfnConnectorProfile.OAuth2CredentialsProperty.OAuthRequest.
 - refresh_token
- The refresh token used to refresh an expired access token. 
 
OAuth2PropertiesProperty
- class CfnConnectorProfile.OAuth2PropertiesProperty(*, o_auth2_grant_type=None, token_url=None, token_url_custom_properties=None)
- Bases: - object- The OAuth 2.0 properties required for OAuth 2.0 authentication. - Parameters:
- o_auth2_grant_type ( - Optional[- str]) – The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.
- token_url ( - Optional[- str]) – The token URL required for OAuth 2.0 authentication.
- token_url_custom_properties ( - Union[- IResolvable,- Mapping[- str,- str],- None]) – Associates your token URL with a map of properties that you define. Use this parameter to provide any additional details that the connector requires to authenticate your request.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow o_auth2_properties_property = appflow.CfnConnectorProfile.OAuth2PropertiesProperty( o_auth2_grant_type="oAuth2GrantType", token_url="tokenUrl", token_url_custom_properties={ "token_url_custom_properties_key": "tokenUrlCustomProperties" } ) - Attributes - o_auth2_grant_type
- The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication. 
 - token_url
- The token URL required for OAuth 2.0 authentication. 
 - token_url_custom_properties
- Associates your token URL with a map of properties that you define. - Use this parameter to provide any additional details that the connector requires to authenticate your request. 
 
OAuthCredentialsProperty
- class CfnConnectorProfile.OAuthCredentialsProperty(*, access_token=None, client_id=None, client_secret=None, connector_o_auth_request=None, refresh_token=None)
- Bases: - object- The OAuth credentials required for OAuth type authentication. - Parameters:
- access_token ( - Optional[- str]) – The access token used to access protected SAPOData resources.
- client_id ( - Optional[- str]) – The identifier for the desired client.
- client_secret ( - Optional[- str]) – The client secret used by the OAuth client to authenticate to the authorization server.
- connector_o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) –- CfnConnectorProfile.OAuthCredentialsProperty.ConnectorOAuthRequest.
- refresh_token ( - Optional[- str]) – The refresh token used to refresh expired access token.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow o_auth_credentials_property = appflow.CfnConnectorProfile.OAuthCredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) - Attributes - access_token
- The access token used to access protected SAPOData resources. 
 - client_id
- The identifier for the desired client. 
 - client_secret
- The client secret used by the OAuth client to authenticate to the authorization server. 
 - connector_o_auth_request
- CfnConnectorProfile.OAuthCredentialsProperty.ConnectorOAuthRequest.
 - refresh_token
- The refresh token used to refresh expired access token. 
 
OAuthPropertiesProperty
- class CfnConnectorProfile.OAuthPropertiesProperty(*, auth_code_url=None, o_auth_scopes=None, token_url=None)
- Bases: - object- The OAuth properties required for OAuth type authentication. - Parameters:
- auth_code_url ( - Optional[- str]) – The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
- o_auth_scopes ( - Optional[- Sequence[- str]]) – The OAuth scopes required for OAuth type authentication.
- token_url ( - Optional[- str]) – The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow o_auth_properties_property = appflow.CfnConnectorProfile.OAuthPropertiesProperty( auth_code_url="authCodeUrl", o_auth_scopes=["oAuthScopes"], token_url="tokenUrl" ) - Attributes - auth_code_url
- The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication. 
 - o_auth_scopes
- The OAuth scopes required for OAuth type authentication. 
 - token_url
- The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token. 
 
PardotConnectorProfileCredentialsProperty
- class CfnConnectorProfile.PardotConnectorProfileCredentialsProperty(*, access_token=None, client_credentials_arn=None, connector_o_auth_request=None, refresh_token=None)
- Bases: - object- Parameters:
- access_token ( - Optional[- str]) –- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.AccessToken.
- client_credentials_arn ( - Optional[- str]) –- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ClientCredentialsArn.
- connector_o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) –- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ConnectorOAuthRequest.
- refresh_token ( - Optional[- str]) –- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.RefreshToken.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow pardot_connector_profile_credentials_property = appflow.CfnConnectorProfile.PardotConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) - Attributes - access_token
- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.AccessToken.
 - client_credentials_arn
- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ClientCredentialsArn.
 - connector_o_auth_request
- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.ConnectorOAuthRequest.
 - refresh_token
- CfnConnectorProfile.PardotConnectorProfileCredentialsProperty.RefreshToken.
 
PardotConnectorProfilePropertiesProperty
- class CfnConnectorProfile.PardotConnectorProfilePropertiesProperty(*, business_unit_id, instance_url=None, is_sandbox_environment=None)
- Bases: - object- Parameters:
- business_unit_id ( - str) –- CfnConnectorProfile.PardotConnectorProfilePropertiesProperty.BusinessUnitId.
- instance_url ( - Optional[- str]) –- CfnConnectorProfile.PardotConnectorProfilePropertiesProperty.InstanceUrl.
- is_sandbox_environment ( - Union[- bool,- IResolvable,- None]) –- CfnConnectorProfile.PardotConnectorProfilePropertiesProperty.IsSandboxEnvironment.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow pardot_connector_profile_properties_property = appflow.CfnConnectorProfile.PardotConnectorProfilePropertiesProperty( business_unit_id="businessUnitId", # the properties below are optional instance_url="instanceUrl", is_sandbox_environment=False ) - Attributes - business_unit_id
- CfnConnectorProfile.PardotConnectorProfilePropertiesProperty.BusinessUnitId.
 - instance_url
- CfnConnectorProfile.PardotConnectorProfilePropertiesProperty.InstanceUrl.
 - is_sandbox_environment
- CfnConnectorProfile.PardotConnectorProfilePropertiesProperty.IsSandboxEnvironment.
 
RedshiftConnectorProfileCredentialsProperty
- class CfnConnectorProfile.RedshiftConnectorProfileCredentialsProperty(*, password=None, username=None)
- Bases: - object- The connector-specific profile credentials required when using Amazon Redshift. - Parameters:
- password ( - Optional[- str]) – The password that corresponds to the user name.
- username ( - Optional[- str]) – The name of the user.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow redshift_connector_profile_credentials_property = appflow.CfnConnectorProfile.RedshiftConnectorProfileCredentialsProperty( password="password", username="username" ) - Attributes - password
- The password that corresponds to the user name. 
 
RedshiftConnectorProfilePropertiesProperty
- class CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty(*, bucket_name, role_arn, bucket_prefix=None, cluster_identifier=None, data_api_role_arn=None, database_name=None, database_url=None, is_redshift_serverless=None, workgroup_name=None)
- Bases: - object- The connector-specific profile properties when using Amazon Redshift. - Parameters:
- bucket_name ( - str) – A name for the associated Amazon S3 bucket.
- role_arn ( - str) – The Amazon Resource Name (ARN) of IAM role that grants Amazon Redshift read-only access to Amazon S3. For more information, and for the polices that you attach to this role, see Allow Amazon Redshift to access your Amazon AppFlow data in Amazon S3 .
- bucket_prefix ( - Optional[- str]) – The object key for the destination bucket in which Amazon AppFlow places the files.
- cluster_identifier ( - Optional[- str]) –- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.ClusterIdentifier.
- data_api_role_arn ( - Optional[- str]) –- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.DataApiRoleArn.
- database_name ( - Optional[- str]) –- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.DatabaseName.
- database_url ( - Optional[- str]) – The JDBC URL of the Amazon Redshift cluster.
- is_redshift_serverless ( - Union[- bool,- IResolvable,- None]) –- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.IsRedshiftServerless.
- workgroup_name ( - Optional[- str]) –- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.WorkgroupName.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow redshift_connector_profile_properties_property = appflow.CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty( bucket_name="bucketName", role_arn="roleArn", # the properties below are optional bucket_prefix="bucketPrefix", cluster_identifier="clusterIdentifier", data_api_role_arn="dataApiRoleArn", database_name="databaseName", database_url="databaseUrl", is_redshift_serverless=False, workgroup_name="workgroupName" ) - Attributes - bucket_name
- A name for the associated Amazon S3 bucket. 
 - bucket_prefix
- The object key for the destination bucket in which Amazon AppFlow places the files. 
 - cluster_identifier
- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.ClusterIdentifier.
 - data_api_role_arn
- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.DataApiRoleArn.
 - database_name
- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.DatabaseName.
 - database_url
- The JDBC URL of the Amazon Redshift cluster. 
 - is_redshift_serverless
- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.IsRedshiftServerless.
 - role_arn
- The Amazon Resource Name (ARN) of IAM role that grants Amazon Redshift read-only access to Amazon S3. - For more information, and for the polices that you attach to this role, see Allow Amazon Redshift to access your Amazon AppFlow data in Amazon S3 . 
 - workgroup_name
- CfnConnectorProfile.RedshiftConnectorProfilePropertiesProperty.WorkgroupName.
 
SAPODataConnectorProfileCredentialsProperty
- class CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty(*, basic_auth_credentials=None, o_auth_credentials=None)
- Bases: - object- The connector-specific profile credentials required when using SAPOData. - Parameters:
- basic_auth_credentials ( - Union[- IResolvable,- BasicAuthCredentialsProperty,- Dict[- str,- Any],- None]) – The SAPOData basic authentication credentials.
- o_auth_credentials ( - Union[- IResolvable,- OAuthCredentialsProperty,- Dict[- str,- Any],- None]) – The SAPOData OAuth type authentication credentials.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow s_aPOData_connector_profile_credentials_property = appflow.CfnConnectorProfile.SAPODataConnectorProfileCredentialsProperty( basic_auth_credentials=appflow.CfnConnectorProfile.BasicAuthCredentialsProperty( password="password", username="username" ), o_auth_credentials=appflow.CfnConnectorProfile.OAuthCredentialsProperty( access_token="accessToken", client_id="clientId", client_secret="clientSecret", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), refresh_token="refreshToken" ) ) - Attributes - basic_auth_credentials
- The SAPOData basic authentication credentials. 
 - o_auth_credentials
- The SAPOData OAuth type authentication credentials. 
 
SAPODataConnectorProfilePropertiesProperty
- class CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty(*, application_host_url=None, application_service_path=None, client_number=None, logon_language=None, o_auth_properties=None, port_number=None, private_link_service_name=None)
- Bases: - object- The connector-specific profile properties required when using SAPOData. - Parameters:
- application_host_url ( - Optional[- str]) – The location of the SAPOData resource.
- application_service_path ( - Optional[- str]) – The application path to catalog service.
- client_number ( - Optional[- str]) – The client number for the client creating the connection.
- logon_language ( - Optional[- str]) – The logon language of SAPOData instance.
- o_auth_properties ( - Union[- IResolvable,- OAuthPropertiesProperty,- Dict[- str,- Any],- None]) – The SAPOData OAuth properties required for OAuth type authentication.
- port_number ( - Union[- int,- float,- None]) – The port number of the SAPOData instance.
- private_link_service_name ( - Optional[- str]) – The SAPOData Private Link service name to be used for private data transfers.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow s_aPOData_connector_profile_properties_property = appflow.CfnConnectorProfile.SAPODataConnectorProfilePropertiesProperty( application_host_url="applicationHostUrl", application_service_path="applicationServicePath", client_number="clientNumber", logon_language="logonLanguage", o_auth_properties=appflow.CfnConnectorProfile.OAuthPropertiesProperty( auth_code_url="authCodeUrl", o_auth_scopes=["oAuthScopes"], token_url="tokenUrl" ), port_number=123, private_link_service_name="privateLinkServiceName" ) - Attributes - application_host_url
- The location of the SAPOData resource. 
 - application_service_path
- The application path to catalog service. 
 - client_number
- The client number for the client creating the connection. 
 - logon_language
- The logon language of SAPOData instance. 
 - o_auth_properties
- The SAPOData OAuth properties required for OAuth type authentication. 
 - port_number
- The port number of the SAPOData instance. 
 - private_link_service_name
- The SAPOData Private Link service name to be used for private data transfers. 
 
SalesforceConnectorProfileCredentialsProperty
- class CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty(*, access_token=None, client_credentials_arn=None, connector_o_auth_request=None, jwt_token=None, o_auth2_grant_type=None, refresh_token=None)
- Bases: - object- The connector-specific profile credentials required when using Salesforce. - Parameters:
- access_token ( - Optional[- str]) – The credentials used to access protected Salesforce resources.
- client_credentials_arn ( - Optional[- str]) – The secret manager ARN, which contains the client ID and client secret of the connected app.
- connector_o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) – Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
- jwt_token ( - Optional[- str]) –- CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.JwtToken.
- o_auth2_grant_type ( - Optional[- str]) –- CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.OAuth2GrantType.
- refresh_token ( - Optional[- str]) – The credentials used to acquire new access tokens.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow salesforce_connector_profile_credentials_property = appflow.CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty( access_token="accessToken", client_credentials_arn="clientCredentialsArn", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ), jwt_token="jwtToken", o_auth2_grant_type="oAuth2GrantType", refresh_token="refreshToken" ) - Attributes - access_token
- The credentials used to access protected Salesforce resources. 
 - client_credentials_arn
- The secret manager ARN, which contains the client ID and client secret of the connected app. 
 - connector_o_auth_request
- Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. 
 - jwt_token
- CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.JwtToken.
 - o_auth2_grant_type
- CfnConnectorProfile.SalesforceConnectorProfileCredentialsProperty.OAuth2GrantType.
 - refresh_token
- The credentials used to acquire new access tokens. 
 
SalesforceConnectorProfilePropertiesProperty
- class CfnConnectorProfile.SalesforceConnectorProfilePropertiesProperty(*, instance_url=None, is_sandbox_environment=None, use_private_link_for_metadata_and_authorization=None)
- Bases: - object- The connector-specific profile properties required when using Salesforce. - Parameters:
- instance_url ( - Optional[- str]) – The location of the Salesforce resource.
- is_sandbox_environment ( - Union[- bool,- IResolvable,- None]) – Indicates whether the connector profile applies to a sandbox or production environment.
- use_private_link_for_metadata_and_authorization ( - Union[- bool,- IResolvable,- None]) –- CfnConnectorProfile.SalesforceConnectorProfilePropertiesProperty.usePrivateLinkForMetadataAndAuthorization.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow salesforce_connector_profile_properties_property = appflow.CfnConnectorProfile.SalesforceConnectorProfilePropertiesProperty( instance_url="instanceUrl", is_sandbox_environment=False, use_private_link_for_metadata_and_authorization=False ) - Attributes - instance_url
- The location of the Salesforce resource. 
 - is_sandbox_environment
- Indicates whether the connector profile applies to a sandbox or production environment. 
 - use_private_link_for_metadata_and_authorization
- CfnConnectorProfile.SalesforceConnectorProfilePropertiesProperty.usePrivateLinkForMetadataAndAuthorization.
 
ServiceNowConnectorProfileCredentialsProperty
- class CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty(*, password, username)
- Bases: - object- The connector-specific profile credentials required when using ServiceNow. - Parameters:
- password ( - str) – The password that corresponds to the user name.
- username ( - str) – The name of the user.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow service_now_connector_profile_credentials_property = appflow.CfnConnectorProfile.ServiceNowConnectorProfileCredentialsProperty( password="password", username="username" ) - Attributes - password
- The password that corresponds to the user name. 
 
ServiceNowConnectorProfilePropertiesProperty
- class CfnConnectorProfile.ServiceNowConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required when using ServiceNow. - Parameters:
- instance_url ( - str) – The location of the ServiceNow resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow service_now_connector_profile_properties_property = appflow.CfnConnectorProfile.ServiceNowConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the ServiceNow resource. 
 
SingularConnectorProfileCredentialsProperty
- class CfnConnectorProfile.SingularConnectorProfileCredentialsProperty(*, api_key)
- Bases: - object- The connector-specific profile credentials required when using Singular. - Parameters:
- api_key ( - str) – A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow singular_connector_profile_credentials_property = appflow.CfnConnectorProfile.SingularConnectorProfileCredentialsProperty( api_key="apiKey" ) - Attributes - api_key
- A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API. 
 
SlackConnectorProfileCredentialsProperty
- class CfnConnectorProfile.SlackConnectorProfileCredentialsProperty(*, client_id, client_secret, access_token=None, connector_o_auth_request=None)
- Bases: - object- The connector-specific profile credentials required when using Slack. - Parameters:
- client_id ( - str) – The identifier for the client.
- client_secret ( - str) – The client secret used by the OAuth client to authenticate to the authorization server.
- access_token ( - Optional[- str]) – The credentials used to access protected Slack resources.
- connector_o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) – Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow slack_connector_profile_credentials_property = appflow.CfnConnectorProfile.SlackConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ) - Attributes - access_token
- The credentials used to access protected Slack resources. 
 - client_id
- The identifier for the client. 
 - client_secret
- The client secret used by the OAuth client to authenticate to the authorization server. 
 - connector_o_auth_request
- Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. 
 
SlackConnectorProfilePropertiesProperty
- class CfnConnectorProfile.SlackConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required when using Slack. - Parameters:
- instance_url ( - str) – The location of the Slack resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow slack_connector_profile_properties_property = appflow.CfnConnectorProfile.SlackConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the Slack resource. 
 
SnowflakeConnectorProfileCredentialsProperty
- class CfnConnectorProfile.SnowflakeConnectorProfileCredentialsProperty(*, password, username)
- Bases: - object- The connector-specific profile credentials required when using Snowflake. - Parameters:
- password ( - str) – The password that corresponds to the user name.
- username ( - str) – The name of the user.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow snowflake_connector_profile_credentials_property = appflow.CfnConnectorProfile.SnowflakeConnectorProfileCredentialsProperty( password="password", username="username" ) - Attributes - password
- The password that corresponds to the user name. 
 
SnowflakeConnectorProfilePropertiesProperty
- class CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty(*, bucket_name, stage, warehouse, account_name=None, bucket_prefix=None, private_link_service_name=None, region=None)
- Bases: - object- The connector-specific profile properties required when using Snowflake. - Parameters:
- bucket_name ( - str) – The name of the Amazon S3 bucket associated with Snowflake.
- stage ( - str) – The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account. This is written in the following format: < Database>< Schema>.
- warehouse ( - str) – The name of the Snowflake warehouse.
- account_name ( - Optional[- str]) – The name of the account.
- bucket_prefix ( - Optional[- str]) – The bucket path that refers to the Amazon S3 bucket associated with Snowflake.
- private_link_service_name ( - Optional[- str]) – The Snowflake Private Link service name to be used for private data transfers.
- region ( - Optional[- str]) – The AWS Region of the Snowflake account.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow snowflake_connector_profile_properties_property = appflow.CfnConnectorProfile.SnowflakeConnectorProfilePropertiesProperty( bucket_name="bucketName", stage="stage", warehouse="warehouse", # the properties below are optional account_name="accountName", bucket_prefix="bucketPrefix", private_link_service_name="privateLinkServiceName", region="region" ) - Attributes - account_name
- The name of the account. 
 - bucket_name
- The name of the Amazon S3 bucket associated with Snowflake. 
 - bucket_prefix
- The bucket path that refers to the Amazon S3 bucket associated with Snowflake. 
 - private_link_service_name
- The Snowflake Private Link service name to be used for private data transfers. 
 - region
- The AWS Region of the Snowflake account. 
 - stage
- The name of the Amazon S3 stage that was created while setting up an Amazon S3 stage in the Snowflake account. - This is written in the following format: < Database>< Schema>. 
 
TrendmicroConnectorProfileCredentialsProperty
- class CfnConnectorProfile.TrendmicroConnectorProfileCredentialsProperty(*, api_secret_key)
- Bases: - object- The connector-specific profile credentials required when using Trend Micro. - Parameters:
- api_secret_key ( - str) – The Secret Access Key portion of the credentials.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow trendmicro_connector_profile_credentials_property = appflow.CfnConnectorProfile.TrendmicroConnectorProfileCredentialsProperty( api_secret_key="apiSecretKey" ) - Attributes - api_secret_key
- The Secret Access Key portion of the credentials. 
 
VeevaConnectorProfileCredentialsProperty
- class CfnConnectorProfile.VeevaConnectorProfileCredentialsProperty(*, password, username)
- Bases: - object- The connector-specific profile credentials required when using Veeva. - Parameters:
- password ( - str) – The password that corresponds to the user name.
- username ( - str) – The name of the user.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow veeva_connector_profile_credentials_property = appflow.CfnConnectorProfile.VeevaConnectorProfileCredentialsProperty( password="password", username="username" ) - Attributes - password
- The password that corresponds to the user name. 
 
VeevaConnectorProfilePropertiesProperty
- class CfnConnectorProfile.VeevaConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required when using Veeva. - Parameters:
- instance_url ( - str) – The location of the Veeva resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow veeva_connector_profile_properties_property = appflow.CfnConnectorProfile.VeevaConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the Veeva resource. 
 
ZendeskConnectorProfileCredentialsProperty
- class CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty(*, client_id, client_secret, access_token=None, connector_o_auth_request=None)
- Bases: - object- The connector-specific profile credentials required when using Zendesk. - Parameters:
- client_id ( - str) – The identifier for the desired client.
- client_secret ( - str) – The client secret used by the OAuth client to authenticate to the authorization server.
- access_token ( - Optional[- str]) – The credentials used to access protected Zendesk resources.
- connector_o_auth_request ( - Union[- IResolvable,- ConnectorOAuthRequestProperty,- Dict[- str,- Any],- None]) – Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.
 
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow zendesk_connector_profile_credentials_property = appflow.CfnConnectorProfile.ZendeskConnectorProfileCredentialsProperty( client_id="clientId", client_secret="clientSecret", # the properties below are optional access_token="accessToken", connector_oAuth_request=appflow.CfnConnectorProfile.ConnectorOAuthRequestProperty( auth_code="authCode", redirect_uri="redirectUri" ) ) - Attributes - access_token
- The credentials used to access protected Zendesk resources. 
 - client_id
- The identifier for the desired client. 
 - client_secret
- The client secret used by the OAuth client to authenticate to the authorization server. 
 - connector_o_auth_request
- Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack. 
 
ZendeskConnectorProfilePropertiesProperty
- class CfnConnectorProfile.ZendeskConnectorProfilePropertiesProperty(*, instance_url)
- Bases: - object- The connector-specific profile properties required when using Zendesk. - Parameters:
- instance_url ( - str) – The location of the Zendesk resource.
- Link:
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_appflow as appflow zendesk_connector_profile_properties_property = appflow.CfnConnectorProfile.ZendeskConnectorProfilePropertiesProperty( instance_url="instanceUrl" ) - Attributes - instance_url
- The location of the Zendesk resource.