Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessPointReference ¶
type AccessPointReference struct {
// The ARN of the AccessPoint resource.
AccessPointArn *string `field:"required" json:"accessPointArn" yaml:"accessPointArn"`
// The AccessPointId of the AccessPoint resource.
AccessPointId *string `field:"required" json:"accessPointId" yaml:"accessPointId"`
}
A reference to a AccessPoint resource.
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"
accessPointReference := &AccessPointReference{
AccessPointArn: jsii.String("accessPointArn"),
AccessPointId: jsii.String("accessPointId"),
}
type FileSystemReference ¶
type FileSystemReference struct {
// The ARN of the FileSystem resource.
FileSystemArn *string `field:"required" json:"fileSystemArn" yaml:"fileSystemArn"`
// The FileSystemId of the FileSystem resource.
FileSystemId *string `field:"required" json:"fileSystemId" yaml:"fileSystemId"`
}
A reference to a FileSystem resource.
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"
fileSystemReference := &FileSystemReference{
FileSystemArn: jsii.String("fileSystemArn"),
FileSystemId: jsii.String("fileSystemId"),
}
type IAccessPointRef ¶
type IAccessPointRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AccessPoint resource.
// Experimental.
AccessPointRef() *AccessPointReference
}
Indicates that this resource can be referenced as a AccessPoint. Experimental.
type IFileSystemRef ¶
type IFileSystemRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a FileSystem resource.
// Experimental.
FileSystemRef() *FileSystemReference
}
Indicates that this resource can be referenced as a FileSystem. Experimental.
type IMountTargetRef ¶
type IMountTargetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a MountTarget resource.
// Experimental.
MountTargetRef() *MountTargetReference
}
Indicates that this resource can be referenced as a MountTarget. Experimental.
type MountTargetReference ¶
type MountTargetReference struct {
// The Id of the MountTarget resource.
MountTargetId *string `field:"required" json:"mountTargetId" yaml:"mountTargetId"`
}
A reference to a MountTarget resource.
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"
mountTargetReference := &MountTargetReference{
MountTargetId: jsii.String("mountTargetId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.