interface InforNexusConnectorProfileCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppFlow.CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappflow#CfnConnectorProfile_InforNexusConnectorProfileCredentialsProperty |
Java | software.amazon.awscdk.services.appflow.CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty |
Python | aws_cdk.aws_appflow.CfnConnectorProfile.InforNexusConnectorProfileCredentialsProperty |
TypeScript | aws-cdk-lib » aws_appflow » CfnConnectorProfile » 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 { aws_appflow as appflow } from 'aws-cdk-lib';
const inforNexusConnectorProfileCredentialsProperty: appflow.CfnConnectorProfile.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
The Access Key portion of the credentials.
datakey
Type:
string
The encryption keys used to encrypt data.
secretAccessKey
Type:
string
The secret key used to sign requests.
userId
Type:
string
The identifier for the user.

.NET
Go
Java
Python
TypeScript