Documentation
¶
Index ¶
- type AppBlockBuilderReference
- type AppBlockReference
- type ApplicationEntitlementAssociationReference
- type ApplicationFleetAssociationReference
- type ApplicationReference
- type DirectoryConfigReference
- type EntitlementReference
- type FleetReference
- type IAppBlockBuilderRef
- type IAppBlockRef
- type IApplicationEntitlementAssociationRef
- type IApplicationFleetAssociationRef
- type IApplicationRef
- type IDirectoryConfigRef
- type IEntitlementRef
- type IFleetRef
- type IImageBuilderRef
- type IStackFleetAssociationRef
- type IStackRef
- type IStackUserAssociationRef
- type IUserRef
- type ImageBuilderReference
- type StackFleetAssociationReference
- type StackReference
- type StackUserAssociationReference
- type UserReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppBlockBuilderReference ¶
type AppBlockBuilderReference struct {
// The ARN of the AppBlockBuilder resource.
AppBlockBuilderArn *string `field:"required" json:"appBlockBuilderArn" yaml:"appBlockBuilderArn"`
// The Name of the AppBlockBuilder resource.
AppBlockBuilderName *string `field:"required" json:"appBlockBuilderName" yaml:"appBlockBuilderName"`
}
A reference to a AppBlockBuilder 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"
appBlockBuilderReference := &AppBlockBuilderReference{
AppBlockBuilderArn: jsii.String("appBlockBuilderArn"),
AppBlockBuilderName: jsii.String("appBlockBuilderName"),
}
type AppBlockReference ¶
type AppBlockReference struct {
// The Arn of the AppBlock resource.
AppBlockArn *string `field:"required" json:"appBlockArn" yaml:"appBlockArn"`
}
A reference to a AppBlock 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"
appBlockReference := &AppBlockReference{
AppBlockArn: jsii.String("appBlockArn"),
}
type ApplicationEntitlementAssociationReference ¶
type ApplicationEntitlementAssociationReference struct {
// The ApplicationIdentifier of the ApplicationEntitlementAssociation resource.
ApplicationIdentifier *string `field:"required" json:"applicationIdentifier" yaml:"applicationIdentifier"`
// The EntitlementName of the ApplicationEntitlementAssociation resource.
EntitlementName *string `field:"required" json:"entitlementName" yaml:"entitlementName"`
// The StackName of the ApplicationEntitlementAssociation resource.
StackName *string `field:"required" json:"stackName" yaml:"stackName"`
}
A reference to a ApplicationEntitlementAssociation 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"
applicationEntitlementAssociationReference := &ApplicationEntitlementAssociationReference{
ApplicationIdentifier: jsii.String("applicationIdentifier"),
EntitlementName: jsii.String("entitlementName"),
StackName: jsii.String("stackName"),
}
type ApplicationFleetAssociationReference ¶
type ApplicationFleetAssociationReference struct {
// The ApplicationArn of the ApplicationFleetAssociation resource.
ApplicationArn *string `field:"required" json:"applicationArn" yaml:"applicationArn"`
// The FleetName of the ApplicationFleetAssociation resource.
FleetName *string `field:"required" json:"fleetName" yaml:"fleetName"`
}
A reference to a ApplicationFleetAssociation 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"
applicationFleetAssociationReference := &ApplicationFleetAssociationReference{
ApplicationArn: jsii.String("applicationArn"),
FleetName: jsii.String("fleetName"),
}
type ApplicationReference ¶
type ApplicationReference struct {
// The Arn of the Application resource.
ApplicationArn *string `field:"required" json:"applicationArn" yaml:"applicationArn"`
}
A reference to a Application 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"
applicationReference := &ApplicationReference{
ApplicationArn: jsii.String("applicationArn"),
}
type DirectoryConfigReference ¶
type DirectoryConfigReference struct {
// The DirectoryName of the DirectoryConfig resource.
DirectoryName *string `field:"required" json:"directoryName" yaml:"directoryName"`
}
A reference to a DirectoryConfig 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"
directoryConfigReference := &DirectoryConfigReference{
DirectoryName: jsii.String("directoryName"),
}
type EntitlementReference ¶
type EntitlementReference struct {
// The Name of the Entitlement resource.
EntitlementName *string `field:"required" json:"entitlementName" yaml:"entitlementName"`
// The StackName of the Entitlement resource.
StackName *string `field:"required" json:"stackName" yaml:"stackName"`
}
A reference to a Entitlement 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"
entitlementReference := &EntitlementReference{
EntitlementName: jsii.String("entitlementName"),
StackName: jsii.String("stackName"),
}
type FleetReference ¶
type FleetReference struct {
// The Id of the Fleet resource.
FleetId *string `field:"required" json:"fleetId" yaml:"fleetId"`
}
A reference to a Fleet 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"
fleetReference := &FleetReference{
FleetId: jsii.String("fleetId"),
}
type IAppBlockBuilderRef ¶
type IAppBlockBuilderRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AppBlockBuilder resource.
// Experimental.
AppBlockBuilderRef() *AppBlockBuilderReference
}
Indicates that this resource can be referenced as a AppBlockBuilder. Experimental.
type IAppBlockRef ¶
type IAppBlockRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AppBlock resource.
// Experimental.
AppBlockRef() *AppBlockReference
}
Indicates that this resource can be referenced as a AppBlock. Experimental.
type IApplicationEntitlementAssociationRef ¶
type IApplicationEntitlementAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ApplicationEntitlementAssociation resource.
// Experimental.
ApplicationEntitlementAssociationRef() *ApplicationEntitlementAssociationReference
}
Indicates that this resource can be referenced as a ApplicationEntitlementAssociation. Experimental.
type IApplicationFleetAssociationRef ¶
type IApplicationFleetAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ApplicationFleetAssociation resource.
// Experimental.
ApplicationFleetAssociationRef() *ApplicationFleetAssociationReference
}
Indicates that this resource can be referenced as a ApplicationFleetAssociation. Experimental.
type IApplicationRef ¶
type IApplicationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Application resource.
// Experimental.
ApplicationRef() *ApplicationReference
}
Indicates that this resource can be referenced as a Application. Experimental.
type IDirectoryConfigRef ¶
type IDirectoryConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DirectoryConfig resource.
// Experimental.
DirectoryConfigRef() *DirectoryConfigReference
}
Indicates that this resource can be referenced as a DirectoryConfig. Experimental.
type IEntitlementRef ¶
type IEntitlementRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Entitlement resource.
// Experimental.
EntitlementRef() *EntitlementReference
}
Indicates that this resource can be referenced as a Entitlement. Experimental.
type IFleetRef ¶
type IFleetRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Fleet resource.
// Experimental.
FleetRef() *FleetReference
}
Indicates that this resource can be referenced as a Fleet. Experimental.
type IImageBuilderRef ¶
type IImageBuilderRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ImageBuilder resource.
// Experimental.
ImageBuilderRef() *ImageBuilderReference
}
Indicates that this resource can be referenced as a ImageBuilder. Experimental.
type IStackFleetAssociationRef ¶
type IStackFleetAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a StackFleetAssociation resource.
// Experimental.
StackFleetAssociationRef() *StackFleetAssociationReference
}
Indicates that this resource can be referenced as a StackFleetAssociation. Experimental.
type IStackRef ¶
type IStackRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Stack resource.
// Experimental.
StackRef() *StackReference
}
Indicates that this resource can be referenced as a Stack. Experimental.
type IStackUserAssociationRef ¶
type IStackUserAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a StackUserAssociation resource.
// Experimental.
StackUserAssociationRef() *StackUserAssociationReference
}
Indicates that this resource can be referenced as a StackUserAssociation. Experimental.
type IUserRef ¶
type IUserRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a User resource.
// Experimental.
UserRef() *UserReference
}
Indicates that this resource can be referenced as a User. Experimental.
type ImageBuilderReference ¶
type ImageBuilderReference struct {
// The Name of the ImageBuilder resource.
ImageBuilderName *string `field:"required" json:"imageBuilderName" yaml:"imageBuilderName"`
}
A reference to a ImageBuilder 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"
imageBuilderReference := &ImageBuilderReference{
ImageBuilderName: jsii.String("imageBuilderName"),
}
type StackFleetAssociationReference ¶
type StackFleetAssociationReference struct {
// The Id of the StackFleetAssociation resource.
StackFleetAssociationId *string `field:"required" json:"stackFleetAssociationId" yaml:"stackFleetAssociationId"`
}
A reference to a StackFleetAssociation 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"
stackFleetAssociationReference := &StackFleetAssociationReference{
StackFleetAssociationId: jsii.String("stackFleetAssociationId"),
}
type StackReference ¶
type StackReference struct {
// The Id of the Stack resource.
StackId *string `field:"required" json:"stackId" yaml:"stackId"`
}
A reference to a Stack 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"
stackReference := &StackReference{
StackId: jsii.String("stackId"),
}
type StackUserAssociationReference ¶
type StackUserAssociationReference struct {
// The Id of the StackUserAssociation resource.
StackUserAssociationId *string `field:"required" json:"stackUserAssociationId" yaml:"stackUserAssociationId"`
}
A reference to a StackUserAssociation 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"
stackUserAssociationReference := &StackUserAssociationReference{
StackUserAssociationId: jsii.String("stackUserAssociationId"),
}
type UserReference ¶
type UserReference struct {
// The Id of the User resource.
UserId *string `field:"required" json:"userId" yaml:"userId"`
}
A reference to a User 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"
userReference := &UserReference{
UserId: jsii.String("userId"),
}
Source Files
¶
- AppBlockBuilderReference.go
- AppBlockReference.go
- ApplicationEntitlementAssociationReference.go
- ApplicationFleetAssociationReference.go
- ApplicationReference.go
- DirectoryConfigReference.go
- EntitlementReference.go
- FleetReference.go
- IAppBlockBuilderRef.go
- IAppBlockRef.go
- IApplicationEntitlementAssociationRef.go
- IApplicationFleetAssociationRef.go
- IApplicationRef.go
- IDirectoryConfigRef.go
- IEntitlementRef.go
- IFleetRef.go
- IImageBuilderRef.go
- IStackFleetAssociationRef.go
- IStackRef.go
- IStackUserAssociationRef.go
- IUserRef.go
- ImageBuilderReference.go
- StackFleetAssociationReference.go
- StackReference.go
- StackUserAssociationReference.go
- UserReference.go
- main.go