interface ApiKeyCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppFlow.CfnConnectorProfilePropsMixin.ApiKeyCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappflow#CfnConnectorProfilePropsMixin_ApiKeyCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appflow.CfnConnectorProfilePropsMixin.ApiKeyCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_appflow.CfnConnectorProfilePropsMixin.ApiKeyCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appflow » 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 { aws_appflow as appflow } from '@aws-cdk/cfn-property-mixins';
const apiKeyCredentialsProperty: appflow.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