interfacesawsiotfleetwise

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 CampaignReference

type CampaignReference struct {
	// The ARN of the Campaign resource.
	CampaignArn *string `field:"required" json:"campaignArn" yaml:"campaignArn"`
	// The Name of the Campaign resource.
	CampaignName *string `field:"required" json:"campaignName" yaml:"campaignName"`
}

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

campaignReference := &CampaignReference{
	CampaignArn: jsii.String("campaignArn"),
	CampaignName: jsii.String("campaignName"),
}

type DecoderManifestReference

type DecoderManifestReference struct {
	// The ARN of the DecoderManifest resource.
	DecoderManifestArn *string `field:"required" json:"decoderManifestArn" yaml:"decoderManifestArn"`
	// The Name of the DecoderManifest resource.
	DecoderManifestName *string `field:"required" json:"decoderManifestName" yaml:"decoderManifestName"`
}

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

decoderManifestReference := &DecoderManifestReference{
	DecoderManifestArn: jsii.String("decoderManifestArn"),
	DecoderManifestName: jsii.String("decoderManifestName"),
}

type FleetReference

type FleetReference struct {
	// The ARN of the Fleet resource.
	FleetArn *string `field:"required" json:"fleetArn" yaml:"fleetArn"`
	// 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{
	FleetArn: jsii.String("fleetArn"),
	FleetId: jsii.String("fleetId"),
}

type ICampaignRef

type ICampaignRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a Campaign resource.
	// Experimental.
	CampaignRef() *CampaignReference
}

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

type IDecoderManifestRef

type IDecoderManifestRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a DecoderManifest resource.
	// Experimental.
	DecoderManifestRef() *DecoderManifestReference
}

Indicates that this resource can be referenced as a DecoderManifest. 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 IModelManifestRef

type IModelManifestRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a ModelManifest resource.
	// Experimental.
	ModelManifestRef() *ModelManifestReference
}

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

type ISignalCatalogRef

type ISignalCatalogRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a SignalCatalog resource.
	// Experimental.
	SignalCatalogRef() *SignalCatalogReference
}

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

type IStateTemplateRef

type IStateTemplateRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a StateTemplate resource.
	// Experimental.
	StateTemplateRef() *StateTemplateReference
}

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

type IVehicleRef

type IVehicleRef interface {
	constructs.IConstruct
	interfaces.IEnvironmentAware
	// A reference to a Vehicle resource.
	// Experimental.
	VehicleRef() *VehicleReference
}

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

type ModelManifestReference

type ModelManifestReference struct {
	// The ARN of the ModelManifest resource.
	ModelManifestArn *string `field:"required" json:"modelManifestArn" yaml:"modelManifestArn"`
	// The Name of the ModelManifest resource.
	ModelManifestName *string `field:"required" json:"modelManifestName" yaml:"modelManifestName"`
}

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

modelManifestReference := &ModelManifestReference{
	ModelManifestArn: jsii.String("modelManifestArn"),
	ModelManifestName: jsii.String("modelManifestName"),
}

type SignalCatalogReference

type SignalCatalogReference struct {
	// The ARN of the SignalCatalog resource.
	SignalCatalogArn *string `field:"required" json:"signalCatalogArn" yaml:"signalCatalogArn"`
	// The Name of the SignalCatalog resource.
	SignalCatalogName *string `field:"required" json:"signalCatalogName" yaml:"signalCatalogName"`
}

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

signalCatalogReference := &SignalCatalogReference{
	SignalCatalogArn: jsii.String("signalCatalogArn"),
	SignalCatalogName: jsii.String("signalCatalogName"),
}

type StateTemplateReference

type StateTemplateReference struct {
	// The ARN of the StateTemplate resource.
	StateTemplateArn *string `field:"required" json:"stateTemplateArn" yaml:"stateTemplateArn"`
	// The Name of the StateTemplate resource.
	StateTemplateName *string `field:"required" json:"stateTemplateName" yaml:"stateTemplateName"`
}

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

stateTemplateReference := &StateTemplateReference{
	StateTemplateArn: jsii.String("stateTemplateArn"),
	StateTemplateName: jsii.String("stateTemplateName"),
}

type VehicleReference

type VehicleReference struct {
	// The ARN of the Vehicle resource.
	VehicleArn *string `field:"required" json:"vehicleArn" yaml:"vehicleArn"`
	// The Name of the Vehicle resource.
	VehicleName *string `field:"required" json:"vehicleName" yaml:"vehicleName"`
}

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

vehicleReference := &VehicleReference{
	VehicleArn: jsii.String("vehicleArn"),
	VehicleName: jsii.String("vehicleName"),
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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