interface ApiKeyAuthParametersProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Events.CfnConnection.ApiKeyAuthParametersProperty |
Java | software.amazon.awscdk.services.events.CfnConnection.ApiKeyAuthParametersProperty |
Python | aws_cdk.aws_events.CfnConnection.ApiKeyAuthParametersProperty |
TypeScript | @aws-cdk/aws-events » CfnConnection » ApiKeyAuthParametersProperty |
Contains the API key authorization parameters for the connection.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as events from '@aws-cdk/aws-events';
const apiKeyAuthParametersProperty: events.CfnConnection.ApiKeyAuthParametersProperty = {
apiKeyName: 'apiKeyName',
apiKeyValue: 'apiKeyValue',
};
Properties
Name | Type | Description |
---|---|---|
api | string | The name of the API key to use for authorization. |
api | string | The value for the API key to use for authorization. |
apiKeyName
Type:
string
The name of the API key to use for authorization.
apiKeyValue
Type:
string
The value for the API key to use for authorization.