package awssam // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // fileSystemConfigProperty := &FileSystemConfigProperty{ // Arn: jsii.String("arn"), // LocalMountPath: jsii.String("localMountPath"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-filesystemconfig.html // type CfnFunction_FileSystemConfigProperty struct { // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-filesystemconfig.html#cfn-serverless-function-filesystemconfig-arn // Arn *string `field:"optional" json:"arn" yaml:"arn"` // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-filesystemconfig.html#cfn-serverless-function-filesystemconfig-localmountpath // LocalMountPath *string `field:"optional" json:"localMountPath" yaml:"localMountPath"` }