interface CfnMountTargetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Files.CfnMountTargetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3files#CfnMountTargetMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3files.CfnMountTargetMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_s3files.CfnMountTargetMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3files » CfnMountTargetMixinProps |
Properties for CfnMountTargetPropsMixin.
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/cfn-property-mixins';
const cfnMountTargetMixinProps: s3files.CfnMountTargetMixinProps = {
fileSystemId: 'fileSystemId',
ipAddressType: 'ipAddressType',
ipv4Address: 'ipv4Address',
ipv6Address: 'ipv6Address',
securityGroups: ['securityGroups'],
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | string | |
| ip | string | |
| ipv4 | string | |
| ipv6 | string | |
| security | string[] | |
| subnet | string |
fileSystemId?
Type:
string
(optional)
ipAddressType?
Type:
string
(optional)
ipv4Address?
Type:
string
(optional)
ipv6Address?
Type:
string
(optional)
securityGroups?
Type:
string[]
(optional)
subnetId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript