interface OnPremConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataSync.CfnLocationNFS.OnPremConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatasync#CfnLocationNFS_OnPremConfigProperty |
Java | software.amazon.awscdk.services.datasync.CfnLocationNFS.OnPremConfigProperty |
Python | aws_cdk.aws_datasync.CfnLocationNFS.OnPremConfigProperty |
TypeScript | aws-cdk-lib » aws_datasync » CfnLocationNFS » OnPremConfigProperty |
The AWS DataSync agents that can connect to your Network File System (NFS) file server.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datasync as datasync } from 'aws-cdk-lib';
const onPremConfigProperty: datasync.CfnLocationNFS.OnPremConfigProperty = {
agentArns: ['agentArns'],
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string[] | The Amazon Resource Names (ARNs) of the DataSync agents that can connect to your NFS file server. |
agentArns
Type:
string[]
The Amazon Resource Names (ARNs) of the DataSync agents that can connect to your NFS file server.
You can specify more than one agent. For more information, see Using multiple DataSync agents .

.NET
Go
Java
Python
TypeScript