interface InforNexusConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppFlow.Mixins.CfnConnectorProfilePropsMixin.InforNexusConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappflow/mixins#CfnConnectorProfilePropsMixin_InforNexusConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.appflow.mixins.CfnConnectorProfilePropsMixin.InforNexusConnectorProfileCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_appflow.mixins.CfnConnectorProfilePropsMixin.InforNexusConnectorProfileCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appflow » mixins » CfnConnectorProfilePropsMixin » InforNexusConnectorProfileCredentialsProperty |
The connector-specific profile credentials required by Infor Nexus.
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 inforNexusConnectorProfileCredentialsProperty: appflow_mixins.CfnConnectorProfilePropsMixin.InforNexusConnectorProfileCredentialsProperty = {
accessKeyId: 'accessKeyId',
datakey: 'datakey',
secretAccessKey: 'secretAccessKey',
userId: 'userId',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The Access Key portion of the credentials. |
| datakey? | string | The encryption keys used to encrypt data. |
| secret | string | The secret key used to sign requests. |
| user | string | The identifier for the user. |
accessKeyId?
Type:
string
(optional)
The Access Key portion of the credentials.
datakey?
Type:
string
(optional)
The encryption keys used to encrypt data.
secretAccessKey?
Type:
string
(optional)
The secret key used to sign requests.
userId?
Type:
string
(optional)
The identifier for the user.

.NET
Go
Java
Python
TypeScript