interface AmplitudeConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnConnectorProfilePropsMixin.AmplitudeConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnConnectorProfilePropsMixin_AmplitudeConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnConnectorProfilePropsMixin.AmplitudeConnectorProfileCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnConnectorProfilePropsMixin.AmplitudeConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » CfnConnectorProfilePropsMixin » AmplitudeConnectorProfileCredentialsProperty |
The connector-specific credentials required when using Amplitude.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const amplitudeConnectorProfileCredentialsProperty: appflow.CfnConnectorProfilePropsMixin.AmplitudeConnectorProfileCredentialsProperty = {
apiKey: 'apiKey',
secretKey: 'secretKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API. |
| secret | string | The Secret Access Key portion of the credentials. |
apiKey?
Type:
string
(optional)
A unique alphanumeric identifier used to authenticate a user, developer, or calling program to your API.
secretKey?
Type:
string
(optional)
The Secret Access Key portion of the credentials.

.NET
Go
Java
Python
TypeScript