interface CfnMountTargetProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Files.CfnMountTargetProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3files#CfnMountTargetProps |
Java | software.amazon.awscdk.services.s3files.CfnMountTargetProps |
Python | aws_cdk.aws_s3files.CfnMountTargetProps |
TypeScript | aws-cdk-lib » aws_s3files » CfnMountTargetProps |
Properties for defining a CfnMountTarget.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3files-mounttarget.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3files as s3files } from 'aws-cdk-lib';
const cfnMountTargetProps: s3files.CfnMountTargetProps = {
fileSystemId: 'fileSystemId',
subnetId: 'subnetId',
// the properties below are optional
ipAddressType: 'ipAddressType',
ipv4Address: 'ipv4Address',
ipv6Address: 'ipv6Address',
securityGroups: ['securityGroups'],
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | |
| subnet | string | |
| ip | string | |
| ipv4 | string | |
| ipv6 | string | |
| security | string[] |
fileSystemId
Type:
string
subnetId
Type:
string
ipAddressType?
Type:
string
(optional)
ipv4Address?
Type:
string
(optional)
ipv6Address?
Type:
string
(optional)
securityGroups?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript