interfacesawsomics

package
v2.226.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 20, 2025 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AnnotationStoreReference

type AnnotationStoreReference struct {
	// The Name of the AnnotationStore resource.
	AnnotationStoreName *string `field:"required" json:"annotationStoreName" yaml:"annotationStoreName"`
}

A reference to a AnnotationStore 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"

annotationStoreReference := &AnnotationStoreReference{
	AnnotationStoreName: jsii.String("annotationStoreName"),
}

type IAnnotationStoreRef

type IAnnotationStoreRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a AnnotationStore resource.
	// Experimental.
	AnnotationStoreRef() *AnnotationStoreReference
}

Indicates that this resource can be referenced as a AnnotationStore. Experimental.

type IReferenceStoreRef

type IReferenceStoreRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a ReferenceStore resource.
	// Experimental.
	ReferenceStoreRef() *ReferenceStoreReference
}

Indicates that this resource can be referenced as a ReferenceStore. Experimental.

type IRunGroupRef

type IRunGroupRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a RunGroup resource.
	// Experimental.
	RunGroupRef() *RunGroupReference
}

Indicates that this resource can be referenced as a RunGroup. Experimental.

type ISequenceStoreRef

type ISequenceStoreRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a SequenceStore resource.
	// Experimental.
	SequenceStoreRef() *SequenceStoreReference
}

Indicates that this resource can be referenced as a SequenceStore. Experimental.

type IVariantStoreRef

type IVariantStoreRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a VariantStore resource.
	// Experimental.
	VariantStoreRef() *VariantStoreReference
}

Indicates that this resource can be referenced as a VariantStore. Experimental.

type IWorkflowRef

type IWorkflowRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a Workflow resource.
	// Experimental.
	WorkflowRef() *WorkflowReference
}

Indicates that this resource can be referenced as a Workflow. Experimental.

type IWorkflowVersionRef

type IWorkflowVersionRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a WorkflowVersion resource.
	// Experimental.
	WorkflowVersionRef() *WorkflowVersionReference
}

Indicates that this resource can be referenced as a WorkflowVersion. Experimental.

type ReferenceStoreReference

type ReferenceStoreReference struct {
	// The ARN of the ReferenceStore resource.
	ReferenceStoreArn *string `field:"required" json:"referenceStoreArn" yaml:"referenceStoreArn"`
	// The ReferenceStoreId of the ReferenceStore resource.
	ReferenceStoreId *string `field:"required" json:"referenceStoreId" yaml:"referenceStoreId"`
}

A reference to a ReferenceStore 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"

referenceStoreReference := &ReferenceStoreReference{
	ReferenceStoreArn: jsii.String("referenceStoreArn"),
	ReferenceStoreId: jsii.String("referenceStoreId"),
}

type RunGroupReference

type RunGroupReference struct {
	// The ARN of the RunGroup resource.
	RunGroupArn *string `field:"required" json:"runGroupArn" yaml:"runGroupArn"`
	// The Id of the RunGroup resource.
	RunGroupId *string `field:"required" json:"runGroupId" yaml:"runGroupId"`
}

A reference to a RunGroup 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"

runGroupReference := &RunGroupReference{
	RunGroupArn: jsii.String("runGroupArn"),
	RunGroupId: jsii.String("runGroupId"),
}

type SequenceStoreReference

type SequenceStoreReference struct {
	// The ARN of the SequenceStore resource.
	SequenceStoreArn *string `field:"required" json:"sequenceStoreArn" yaml:"sequenceStoreArn"`
	// The SequenceStoreId of the SequenceStore resource.
	SequenceStoreId *string `field:"required" json:"sequenceStoreId" yaml:"sequenceStoreId"`
}

A reference to a SequenceStore 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"

sequenceStoreReference := &SequenceStoreReference{
	SequenceStoreArn: jsii.String("sequenceStoreArn"),
	SequenceStoreId: jsii.String("sequenceStoreId"),
}

type VariantStoreReference

type VariantStoreReference struct {
	// The Name of the VariantStore resource.
	VariantStoreName *string `field:"required" json:"variantStoreName" yaml:"variantStoreName"`
}

A reference to a VariantStore 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"

variantStoreReference := &VariantStoreReference{
	VariantStoreName: jsii.String("variantStoreName"),
}

type WorkflowReference

type WorkflowReference struct {
	// The ARN of the Workflow resource.
	WorkflowArn *string `field:"required" json:"workflowArn" yaml:"workflowArn"`
	// The Id of the Workflow resource.
	WorkflowId *string `field:"required" json:"workflowId" yaml:"workflowId"`
}

A reference to a Workflow 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"

workflowReference := &WorkflowReference{
	WorkflowArn: jsii.String("workflowArn"),
	WorkflowId: jsii.String("workflowId"),
}

type WorkflowVersionReference

type WorkflowVersionReference struct {
	// The Arn of the WorkflowVersion resource.
	WorkflowVersionArn *string `field:"required" json:"workflowVersionArn" yaml:"workflowVersionArn"`
}

A reference to a WorkflowVersion 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"

workflowVersionReference := &WorkflowVersionReference{
	WorkflowVersionArn: jsii.String("workflowVersionArn"),
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL