Documentation
¶
Index ¶
- type ComponentReference
- type ContainerRecipeReference
- type DistributionConfigurationReference
- type IComponentRef
- type IContainerRecipeRef
- type IDistributionConfigurationRef
- type IImagePipelineRef
- type IImageRecipeRef
- type IImageRef
- type IInfrastructureConfigurationRef
- type ILifecyclePolicyRef
- type IWorkflowRef
- type ImagePipelineReference
- type ImageRecipeReference
- type ImageReference
- type InfrastructureConfigurationReference
- type LifecyclePolicyReference
- type WorkflowReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ComponentReference ¶
type ComponentReference struct {
// The Arn of the Component resource.
ComponentArn *string `field:"required" json:"componentArn" yaml:"componentArn"`
}
A reference to a Component 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"
componentReference := &ComponentReference{
ComponentArn: jsii.String("componentArn"),
}
type ContainerRecipeReference ¶
type ContainerRecipeReference struct {
// The Arn of the ContainerRecipe resource.
ContainerRecipeArn *string `field:"required" json:"containerRecipeArn" yaml:"containerRecipeArn"`
}
A reference to a ContainerRecipe 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"
containerRecipeReference := &ContainerRecipeReference{
ContainerRecipeArn: jsii.String("containerRecipeArn"),
}
type DistributionConfigurationReference ¶
type DistributionConfigurationReference struct {
// The Arn of the DistributionConfiguration resource.
DistributionConfigurationArn *string `field:"required" json:"distributionConfigurationArn" yaml:"distributionConfigurationArn"`
}
A reference to a DistributionConfiguration 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"
distributionConfigurationReference := &DistributionConfigurationReference{
DistributionConfigurationArn: jsii.String("distributionConfigurationArn"),
}
type IComponentRef ¶
type IComponentRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Component resource.
// Experimental.
ComponentRef() *ComponentReference
}
Indicates that this resource can be referenced as a Component. Experimental.
type IContainerRecipeRef ¶
type IContainerRecipeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ContainerRecipe resource.
// Experimental.
ContainerRecipeRef() *ContainerRecipeReference
}
Indicates that this resource can be referenced as a ContainerRecipe. Experimental.
type IDistributionConfigurationRef ¶
type IDistributionConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DistributionConfiguration resource.
// Experimental.
DistributionConfigurationRef() *DistributionConfigurationReference
}
Indicates that this resource can be referenced as a DistributionConfiguration. Experimental.
type IImagePipelineRef ¶
type IImagePipelineRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ImagePipeline resource.
// Experimental.
ImagePipelineRef() *ImagePipelineReference
}
Indicates that this resource can be referenced as a ImagePipeline. Experimental.
type IImageRecipeRef ¶
type IImageRecipeRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ImageRecipe resource.
// Experimental.
ImageRecipeRef() *ImageRecipeReference
}
Indicates that this resource can be referenced as a ImageRecipe. Experimental.
type IImageRef ¶
type IImageRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Image resource.
// Experimental.
ImageRef() *ImageReference
}
Indicates that this resource can be referenced as a Image. Experimental.
type IInfrastructureConfigurationRef ¶
type IInfrastructureConfigurationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a InfrastructureConfiguration resource.
// Experimental.
InfrastructureConfigurationRef() *InfrastructureConfigurationReference
}
Indicates that this resource can be referenced as a InfrastructureConfiguration. Experimental.
type ILifecyclePolicyRef ¶
type ILifecyclePolicyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a LifecyclePolicy resource.
// Experimental.
LifecyclePolicyRef() *LifecyclePolicyReference
}
Indicates that this resource can be referenced as a LifecyclePolicy. 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 ImagePipelineReference ¶
type ImagePipelineReference struct {
// The Arn of the ImagePipeline resource.
ImagePipelineArn *string `field:"required" json:"imagePipelineArn" yaml:"imagePipelineArn"`
}
A reference to a ImagePipeline 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"
imagePipelineReference := &ImagePipelineReference{
ImagePipelineArn: jsii.String("imagePipelineArn"),
}
type ImageRecipeReference ¶
type ImageRecipeReference struct {
// The Arn of the ImageRecipe resource.
ImageRecipeArn *string `field:"required" json:"imageRecipeArn" yaml:"imageRecipeArn"`
}
A reference to a ImageRecipe 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"
imageRecipeReference := &ImageRecipeReference{
ImageRecipeArn: jsii.String("imageRecipeArn"),
}
type ImageReference ¶
type ImageReference struct {
// The Arn of the Image resource.
ImageArn *string `field:"required" json:"imageArn" yaml:"imageArn"`
}
A reference to a Image 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"
imageReference := &ImageReference{
ImageArn: jsii.String("imageArn"),
}
type InfrastructureConfigurationReference ¶
type InfrastructureConfigurationReference struct {
// The Arn of the InfrastructureConfiguration resource.
InfrastructureConfigurationArn *string `field:"required" json:"infrastructureConfigurationArn" yaml:"infrastructureConfigurationArn"`
}
A reference to a InfrastructureConfiguration 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"
infrastructureConfigurationReference := &InfrastructureConfigurationReference{
InfrastructureConfigurationArn: jsii.String("infrastructureConfigurationArn"),
}
type LifecyclePolicyReference ¶
type LifecyclePolicyReference struct {
// The Arn of the LifecyclePolicy resource.
LifecyclePolicyArn *string `field:"required" json:"lifecyclePolicyArn" yaml:"lifecyclePolicyArn"`
}
A reference to a LifecyclePolicy 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"
lifecyclePolicyReference := &LifecyclePolicyReference{
LifecyclePolicyArn: jsii.String("lifecyclePolicyArn"),
}
type WorkflowReference ¶
type WorkflowReference struct {
// The Arn of the Workflow resource.
WorkflowArn *string `field:"required" json:"workflowArn" yaml:"workflowArn"`
}
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"),
}
Source Files
¶
- ComponentReference.go
- ContainerRecipeReference.go
- DistributionConfigurationReference.go
- IComponentRef.go
- IContainerRecipeRef.go
- IDistributionConfigurationRef.go
- IImagePipelineRef.go
- IImageRecipeRef.go
- IImageRef.go
- IInfrastructureConfigurationRef.go
- ILifecyclePolicyRef.go
- IWorkflowRef.go
- ImagePipelineReference.go
- ImageRecipeReference.go
- ImageReference.go
- InfrastructureConfigurationReference.go
- LifecyclePolicyReference.go
- WorkflowReference.go
- main.go