interface ApiKeyCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.ApiKeyCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_ApiKeyCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.ApiKeyCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.ApiKeyCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » ApiKeyCredentialsProperty |
The API key credentials required for API key authentication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appflow_mixins } from '@aws-cdk/mixins-preview/aws-appflow';
const apiKeyCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.ApiKeyCredentialsProperty = {
apiKey: 'apiKey',
apiSecretKey: 'apiSecretKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API key required for API key authentication. |
| api | string | The API secret key required for API key authentication. |
apiKey?
Type:
string
(optional)
The API key required for API key authentication.
apiSecretKey?
Type:
string
(optional)
The API secret key required for API key authentication.

.NET
Go
Java
Python
TypeScript