Documentation
¶
Index ¶
- type AgentReference
- type IAgentRef
- type ILocationAzureBlobRef
- type ILocationEFSRef
- type ILocationFSxLustreRef
- type ILocationFSxONTAPRef
- type ILocationFSxOpenZFSRef
- type ILocationFSxWindowsRef
- type ILocationHDFSRef
- type ILocationNFSRef
- type ILocationObjectStorageRef
- type ILocationS3Ref
- type ILocationSMBRef
- type ITaskRef
- type LocationAzureBlobReference
- type LocationEFSReference
- type LocationFSxLustreReference
- type LocationFSxONTAPReference
- type LocationFSxOpenZFSReference
- type LocationFSxWindowsReference
- type LocationHDFSReference
- type LocationNFSReference
- type LocationObjectStorageReference
- type LocationS3Reference
- type LocationSMBReference
- type TaskReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AgentReference ¶
type AgentReference struct {
// The AgentArn of the Agent resource.
AgentArn *string `field:"required" json:"agentArn" yaml:"agentArn"`
}
A reference to a Agent 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"
agentReference := &AgentReference{
AgentArn: jsii.String("agentArn"),
}
type IAgentRef ¶
type IAgentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Agent resource.
// Experimental.
AgentRef() *AgentReference
}
Indicates that this resource can be referenced as a Agent. Experimental.
type ILocationAzureBlobRef ¶
type ILocationAzureBlobRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationAzureBlob resource.
// Experimental.
LocationAzureBlobRef() *LocationAzureBlobReference
}
Indicates that this resource can be referenced as a LocationAzureBlob. Experimental.
type ILocationEFSRef ¶
type ILocationEFSRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationEFS resource.
// Experimental.
LocationEfsRef() *LocationEFSReference
}
Indicates that this resource can be referenced as a LocationEFS. Experimental.
type ILocationFSxLustreRef ¶
type ILocationFSxLustreRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationFSxLustre resource.
// Experimental.
LocationFSxLustreRef() *LocationFSxLustreReference
}
Indicates that this resource can be referenced as a LocationFSxLustre. Experimental.
type ILocationFSxONTAPRef ¶
type ILocationFSxONTAPRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationFSxONTAP resource.
// Experimental.
LocationFSxOntapRef() *LocationFSxONTAPReference
}
Indicates that this resource can be referenced as a LocationFSxONTAP. Experimental.
type ILocationFSxOpenZFSRef ¶
type ILocationFSxOpenZFSRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationFSxOpenZFS resource.
// Experimental.
LocationFSxOpenZfsRef() *LocationFSxOpenZFSReference
}
Indicates that this resource can be referenced as a LocationFSxOpenZFS. Experimental.
type ILocationFSxWindowsRef ¶
type ILocationFSxWindowsRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationFSxWindows resource.
// Experimental.
LocationFSxWindowsRef() *LocationFSxWindowsReference
}
Indicates that this resource can be referenced as a LocationFSxWindows. Experimental.
type ILocationHDFSRef ¶
type ILocationHDFSRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationHDFS resource.
// Experimental.
LocationHdfsRef() *LocationHDFSReference
}
Indicates that this resource can be referenced as a LocationHDFS. Experimental.
type ILocationNFSRef ¶
type ILocationNFSRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationNFS resource.
// Experimental.
LocationNfsRef() *LocationNFSReference
}
Indicates that this resource can be referenced as a LocationNFS. Experimental.
type ILocationObjectStorageRef ¶
type ILocationObjectStorageRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationObjectStorage resource.
// Experimental.
LocationObjectStorageRef() *LocationObjectStorageReference
}
Indicates that this resource can be referenced as a LocationObjectStorage. Experimental.
type ILocationS3Ref ¶
type ILocationS3Ref interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationS3 resource.
// Experimental.
LocationS3Ref() *LocationS3Reference
}
Indicates that this resource can be referenced as a LocationS3. Experimental.
type ILocationSMBRef ¶
type ILocationSMBRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LocationSMB resource.
// Experimental.
LocationSmbRef() *LocationSMBReference
}
Indicates that this resource can be referenced as a LocationSMB. Experimental.
type ITaskRef ¶
type ITaskRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Task resource.
// Experimental.
TaskRef() *TaskReference
}
Indicates that this resource can be referenced as a Task. Experimental.
type LocationAzureBlobReference ¶
type LocationAzureBlobReference struct {
// The LocationArn of the LocationAzureBlob resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationAzureBlob 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"
locationAzureBlobReference := &LocationAzureBlobReference{
LocationArn: jsii.String("locationArn"),
}
type LocationEFSReference ¶
type LocationEFSReference struct {
// The LocationArn of the LocationEFS resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationEFS 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"
locationEFSReference := &LocationEFSReference{
LocationArn: jsii.String("locationArn"),
}
type LocationFSxLustreReference ¶
type LocationFSxLustreReference struct {
// The LocationArn of the LocationFSxLustre resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationFSxLustre 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"
locationFSxLustreReference := &LocationFSxLustreReference{
LocationArn: jsii.String("locationArn"),
}
type LocationFSxONTAPReference ¶
type LocationFSxONTAPReference struct {
// The LocationArn of the LocationFSxONTAP resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationFSxONTAP 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"
locationFSxONTAPReference := &LocationFSxONTAPReference{
LocationArn: jsii.String("locationArn"),
}
type LocationFSxOpenZFSReference ¶
type LocationFSxOpenZFSReference struct {
// The LocationArn of the LocationFSxOpenZFS resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationFSxOpenZFS 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"
locationFSxOpenZFSReference := &LocationFSxOpenZFSReference{
LocationArn: jsii.String("locationArn"),
}
type LocationFSxWindowsReference ¶
type LocationFSxWindowsReference struct {
// The LocationArn of the LocationFSxWindows resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationFSxWindows 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"
locationFSxWindowsReference := &LocationFSxWindowsReference{
LocationArn: jsii.String("locationArn"),
}
type LocationHDFSReference ¶
type LocationHDFSReference struct {
// The LocationArn of the LocationHDFS resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationHDFS 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"
locationHDFSReference := &LocationHDFSReference{
LocationArn: jsii.String("locationArn"),
}
type LocationNFSReference ¶
type LocationNFSReference struct {
// The LocationArn of the LocationNFS resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationNFS 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"
locationNFSReference := &LocationNFSReference{
LocationArn: jsii.String("locationArn"),
}
type LocationObjectStorageReference ¶
type LocationObjectStorageReference struct {
// The LocationArn of the LocationObjectStorage resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationObjectStorage 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"
locationObjectStorageReference := &LocationObjectStorageReference{
LocationArn: jsii.String("locationArn"),
}
type LocationS3Reference ¶
type LocationS3Reference struct {
// The LocationArn of the LocationS3 resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationS3 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"
locationS3Reference := &LocationS3Reference{
LocationArn: jsii.String("locationArn"),
}
type LocationSMBReference ¶
type LocationSMBReference struct {
// The LocationArn of the LocationSMB resource.
LocationArn *string `field:"required" json:"locationArn" yaml:"locationArn"`
}
A reference to a LocationSMB 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"
locationSMBReference := &LocationSMBReference{
LocationArn: jsii.String("locationArn"),
}
type TaskReference ¶
type TaskReference struct {
// The TaskArn of the Task resource.
TaskArn *string `field:"required" json:"taskArn" yaml:"taskArn"`
}
A reference to a Task 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"
taskReference := &TaskReference{
TaskArn: jsii.String("taskArn"),
}
Source Files
¶
- AgentReference.go
- IAgentRef.go
- ILocationAzureBlobRef.go
- ILocationEFSRef.go
- ILocationFSxLustreRef.go
- ILocationFSxONTAPRef.go
- ILocationFSxOpenZFSRef.go
- ILocationFSxWindowsRef.go
- ILocationHDFSRef.go
- ILocationNFSRef.go
- ILocationObjectStorageRef.go
- ILocationS3Ref.go
- ILocationSMBRef.go
- ITaskRef.go
- LocationAzureBlobReference.go
- LocationEFSReference.go
- LocationFSxLustreReference.go
- LocationFSxONTAPReference.go
- LocationFSxOpenZFSReference.go
- LocationFSxWindowsReference.go
- LocationHDFSReference.go
- LocationNFSReference.go
- LocationObjectStorageReference.go
- LocationS3Reference.go
- LocationSMBReference.go
- TaskReference.go
- main.go