lookoutequipment

package
v0.84.0 Latest Latest
Warning

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

Go to latest
Published: Nov 6, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

View Source
const (
	InferenceSchedulerDataUploadFrequencyPt5m  = InferenceSchedulerDataUploadFrequency("PT5M")
	InferenceSchedulerDataUploadFrequencyPt10m = InferenceSchedulerDataUploadFrequency("PT10M")
	InferenceSchedulerDataUploadFrequencyPt15m = InferenceSchedulerDataUploadFrequency("PT15M")
	InferenceSchedulerDataUploadFrequencyPt30m = InferenceSchedulerDataUploadFrequency("PT30M")
	InferenceSchedulerDataUploadFrequencyPt1h  = InferenceSchedulerDataUploadFrequency("PT1H")
)

Variables

This section is empty.

Functions

This section is empty.

Types

type DataInputConfigurationProperties

type DataInputConfigurationProperties struct {
	InferenceInputNameConfiguration *InferenceSchedulerInputNameConfiguration `pulumi:"inferenceInputNameConfiguration"`
	// Indicates the difference between your time zone and Greenwich Mean Time (GMT).
	InputTimeZoneOffset  *string                                `pulumi:"inputTimeZoneOffset"`
	S3InputConfiguration InferenceSchedulerS3InputConfiguration `pulumi:"s3InputConfiguration"`
}

Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.

type DataInputConfigurationPropertiesArgs

type DataInputConfigurationPropertiesArgs struct {
	InferenceInputNameConfiguration InferenceSchedulerInputNameConfigurationPtrInput `pulumi:"inferenceInputNameConfiguration"`
	// Indicates the difference between your time zone and Greenwich Mean Time (GMT).
	InputTimeZoneOffset  pulumi.StringPtrInput                       `pulumi:"inputTimeZoneOffset"`
	S3InputConfiguration InferenceSchedulerS3InputConfigurationInput `pulumi:"s3InputConfiguration"`
}

Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.

func (DataInputConfigurationPropertiesArgs) ElementType

func (DataInputConfigurationPropertiesArgs) ToDataInputConfigurationPropertiesOutput

func (i DataInputConfigurationPropertiesArgs) ToDataInputConfigurationPropertiesOutput() DataInputConfigurationPropertiesOutput

func (DataInputConfigurationPropertiesArgs) ToDataInputConfigurationPropertiesOutputWithContext

func (i DataInputConfigurationPropertiesArgs) ToDataInputConfigurationPropertiesOutputWithContext(ctx context.Context) DataInputConfigurationPropertiesOutput

func (DataInputConfigurationPropertiesArgs) ToOutput added in v0.76.0

type DataInputConfigurationPropertiesInput

type DataInputConfigurationPropertiesInput interface {
	pulumi.Input

	ToDataInputConfigurationPropertiesOutput() DataInputConfigurationPropertiesOutput
	ToDataInputConfigurationPropertiesOutputWithContext(context.Context) DataInputConfigurationPropertiesOutput
}

DataInputConfigurationPropertiesInput is an input type that accepts DataInputConfigurationPropertiesArgs and DataInputConfigurationPropertiesOutput values. You can construct a concrete instance of `DataInputConfigurationPropertiesInput` via:

DataInputConfigurationPropertiesArgs{...}

type DataInputConfigurationPropertiesOutput

type DataInputConfigurationPropertiesOutput struct{ *pulumi.OutputState }

Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.

func (DataInputConfigurationPropertiesOutput) ElementType

func (DataInputConfigurationPropertiesOutput) InferenceInputNameConfiguration

func (DataInputConfigurationPropertiesOutput) InputTimeZoneOffset

Indicates the difference between your time zone and Greenwich Mean Time (GMT).

func (DataInputConfigurationPropertiesOutput) S3InputConfiguration

func (DataInputConfigurationPropertiesOutput) ToDataInputConfigurationPropertiesOutput

func (o DataInputConfigurationPropertiesOutput) ToDataInputConfigurationPropertiesOutput() DataInputConfigurationPropertiesOutput

func (DataInputConfigurationPropertiesOutput) ToDataInputConfigurationPropertiesOutputWithContext

func (o DataInputConfigurationPropertiesOutput) ToDataInputConfigurationPropertiesOutputWithContext(ctx context.Context) DataInputConfigurationPropertiesOutput

func (DataInputConfigurationPropertiesOutput) ToOutput added in v0.76.0

type DataInputConfigurationPropertiesPtrOutput

type DataInputConfigurationPropertiesPtrOutput struct{ *pulumi.OutputState }

func (DataInputConfigurationPropertiesPtrOutput) Elem

func (DataInputConfigurationPropertiesPtrOutput) ElementType

func (DataInputConfigurationPropertiesPtrOutput) InferenceInputNameConfiguration

func (DataInputConfigurationPropertiesPtrOutput) InputTimeZoneOffset

Indicates the difference between your time zone and Greenwich Mean Time (GMT).

func (DataInputConfigurationPropertiesPtrOutput) S3InputConfiguration

func (DataInputConfigurationPropertiesPtrOutput) ToDataInputConfigurationPropertiesPtrOutput

func (o DataInputConfigurationPropertiesPtrOutput) ToDataInputConfigurationPropertiesPtrOutput() DataInputConfigurationPropertiesPtrOutput

func (DataInputConfigurationPropertiesPtrOutput) ToDataInputConfigurationPropertiesPtrOutputWithContext

func (o DataInputConfigurationPropertiesPtrOutput) ToDataInputConfigurationPropertiesPtrOutputWithContext(ctx context.Context) DataInputConfigurationPropertiesPtrOutput

func (DataInputConfigurationPropertiesPtrOutput) ToOutput added in v0.76.0

type DataOutputConfigurationProperties

type DataOutputConfigurationProperties struct {
	// The ID number for the AWS KMS key used to encrypt the inference output.
	KmsKeyId              *string                                 `pulumi:"kmsKeyId"`
	S3OutputConfiguration InferenceSchedulerS3OutputConfiguration `pulumi:"s3OutputConfiguration"`
}

Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.

type DataOutputConfigurationPropertiesArgs

type DataOutputConfigurationPropertiesArgs struct {
	// The ID number for the AWS KMS key used to encrypt the inference output.
	KmsKeyId              pulumi.StringPtrInput                        `pulumi:"kmsKeyId"`
	S3OutputConfiguration InferenceSchedulerS3OutputConfigurationInput `pulumi:"s3OutputConfiguration"`
}

Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.

func (DataOutputConfigurationPropertiesArgs) ElementType

func (DataOutputConfigurationPropertiesArgs) ToDataOutputConfigurationPropertiesOutput

func (i DataOutputConfigurationPropertiesArgs) ToDataOutputConfigurationPropertiesOutput() DataOutputConfigurationPropertiesOutput

func (DataOutputConfigurationPropertiesArgs) ToDataOutputConfigurationPropertiesOutputWithContext

func (i DataOutputConfigurationPropertiesArgs) ToDataOutputConfigurationPropertiesOutputWithContext(ctx context.Context) DataOutputConfigurationPropertiesOutput

func (DataOutputConfigurationPropertiesArgs) ToOutput added in v0.76.0

type DataOutputConfigurationPropertiesInput

type DataOutputConfigurationPropertiesInput interface {
	pulumi.Input

	ToDataOutputConfigurationPropertiesOutput() DataOutputConfigurationPropertiesOutput
	ToDataOutputConfigurationPropertiesOutputWithContext(context.Context) DataOutputConfigurationPropertiesOutput
}

DataOutputConfigurationPropertiesInput is an input type that accepts DataOutputConfigurationPropertiesArgs and DataOutputConfigurationPropertiesOutput values. You can construct a concrete instance of `DataOutputConfigurationPropertiesInput` via:

DataOutputConfigurationPropertiesArgs{...}

type DataOutputConfigurationPropertiesOutput

type DataOutputConfigurationPropertiesOutput struct{ *pulumi.OutputState }

Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.

func (DataOutputConfigurationPropertiesOutput) ElementType

func (DataOutputConfigurationPropertiesOutput) KmsKeyId

The ID number for the AWS KMS key used to encrypt the inference output.

func (DataOutputConfigurationPropertiesOutput) S3OutputConfiguration

func (DataOutputConfigurationPropertiesOutput) ToDataOutputConfigurationPropertiesOutput

func (o DataOutputConfigurationPropertiesOutput) ToDataOutputConfigurationPropertiesOutput() DataOutputConfigurationPropertiesOutput

func (DataOutputConfigurationPropertiesOutput) ToDataOutputConfigurationPropertiesOutputWithContext

func (o DataOutputConfigurationPropertiesOutput) ToDataOutputConfigurationPropertiesOutputWithContext(ctx context.Context) DataOutputConfigurationPropertiesOutput

func (DataOutputConfigurationPropertiesOutput) ToOutput added in v0.76.0

type DataOutputConfigurationPropertiesPtrOutput

type DataOutputConfigurationPropertiesPtrOutput struct{ *pulumi.OutputState }

func (DataOutputConfigurationPropertiesPtrOutput) Elem

func (DataOutputConfigurationPropertiesPtrOutput) ElementType

func (DataOutputConfigurationPropertiesPtrOutput) KmsKeyId

The ID number for the AWS KMS key used to encrypt the inference output.

func (DataOutputConfigurationPropertiesPtrOutput) S3OutputConfiguration

func (DataOutputConfigurationPropertiesPtrOutput) ToDataOutputConfigurationPropertiesPtrOutput

func (o DataOutputConfigurationPropertiesPtrOutput) ToDataOutputConfigurationPropertiesPtrOutput() DataOutputConfigurationPropertiesPtrOutput

func (DataOutputConfigurationPropertiesPtrOutput) ToDataOutputConfigurationPropertiesPtrOutputWithContext

func (o DataOutputConfigurationPropertiesPtrOutput) ToDataOutputConfigurationPropertiesPtrOutputWithContext(ctx context.Context) DataOutputConfigurationPropertiesPtrOutput

func (DataOutputConfigurationPropertiesPtrOutput) ToOutput added in v0.76.0

type InferenceScheduler deprecated

type InferenceScheduler struct {
	pulumi.CustomResourceState

	// A period of time (in minutes) by which inference on the data is delayed after the data starts.
	DataDelayOffsetInMinutes pulumi.IntPtrOutput `pulumi:"dataDelayOffsetInMinutes"`
	// Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.
	DataInputConfiguration DataInputConfigurationPropertiesOutput `pulumi:"dataInputConfiguration"`
	// Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.
	DataOutputConfiguration DataOutputConfigurationPropertiesOutput `pulumi:"dataOutputConfiguration"`
	// How often data is uploaded to the source S3 bucket for the input data.
	DataUploadFrequency InferenceSchedulerDataUploadFrequencyOutput `pulumi:"dataUploadFrequency"`
	// The Amazon Resource Name (ARN) of the inference scheduler being created.
	InferenceSchedulerArn pulumi.StringOutput `pulumi:"inferenceSchedulerArn"`
	// The name of the inference scheduler being created.
	InferenceSchedulerName pulumi.StringPtrOutput `pulumi:"inferenceSchedulerName"`
	// The name of the previously trained ML model being used to create the inference scheduler.
	ModelName pulumi.StringOutput `pulumi:"modelName"`
	// The Amazon Resource Name (ARN) of a role with permission to access the data source being used for the inference.
	RoleArn pulumi.StringOutput `pulumi:"roleArn"`
	// Provides the identifier of the AWS KMS customer master key (CMK) used to encrypt inference scheduler data by Amazon Lookout for Equipment.
	ServerSideKmsKeyId pulumi.StringPtrOutput `pulumi:"serverSideKmsKeyId"`
	// Any tags associated with the inference scheduler.
	Tags InferenceSchedulerTagArrayOutput `pulumi:"tags"`
}

Resource schema for LookoutEquipment InferenceScheduler.

Deprecated: InferenceScheduler is not yet supported by AWS Native, so its creation will currently fail. Please use the classic AWS provider, if possible.

func GetInferenceScheduler

func GetInferenceScheduler(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *InferenceSchedulerState, opts ...pulumi.ResourceOption) (*InferenceScheduler, error)

GetInferenceScheduler gets an existing InferenceScheduler resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewInferenceScheduler

func NewInferenceScheduler(ctx *pulumi.Context,
	name string, args *InferenceSchedulerArgs, opts ...pulumi.ResourceOption) (*InferenceScheduler, error)

NewInferenceScheduler registers a new resource with the given unique name, arguments, and options.

func (*InferenceScheduler) ElementType

func (*InferenceScheduler) ElementType() reflect.Type

func (*InferenceScheduler) ToInferenceSchedulerOutput

func (i *InferenceScheduler) ToInferenceSchedulerOutput() InferenceSchedulerOutput

func (*InferenceScheduler) ToInferenceSchedulerOutputWithContext

func (i *InferenceScheduler) ToInferenceSchedulerOutputWithContext(ctx context.Context) InferenceSchedulerOutput

func (*InferenceScheduler) ToOutput added in v0.76.0

type InferenceSchedulerArgs

type InferenceSchedulerArgs struct {
	// A period of time (in minutes) by which inference on the data is delayed after the data starts.
	DataDelayOffsetInMinutes pulumi.IntPtrInput
	// Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.
	DataInputConfiguration DataInputConfigurationPropertiesInput
	// Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.
	DataOutputConfiguration DataOutputConfigurationPropertiesInput
	// How often data is uploaded to the source S3 bucket for the input data.
	DataUploadFrequency InferenceSchedulerDataUploadFrequencyInput
	// The name of the inference scheduler being created.
	InferenceSchedulerName pulumi.StringPtrInput
	// The name of the previously trained ML model being used to create the inference scheduler.
	ModelName pulumi.StringInput
	// The Amazon Resource Name (ARN) of a role with permission to access the data source being used for the inference.
	RoleArn pulumi.StringInput
	// Provides the identifier of the AWS KMS customer master key (CMK) used to encrypt inference scheduler data by Amazon Lookout for Equipment.
	ServerSideKmsKeyId pulumi.StringPtrInput
	// Any tags associated with the inference scheduler.
	Tags InferenceSchedulerTagArrayInput
}

The set of arguments for constructing a InferenceScheduler resource.

func (InferenceSchedulerArgs) ElementType

func (InferenceSchedulerArgs) ElementType() reflect.Type

type InferenceSchedulerDataUploadFrequency

type InferenceSchedulerDataUploadFrequency string

How often data is uploaded to the source S3 bucket for the input data.

func (InferenceSchedulerDataUploadFrequency) ElementType

func (InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyOutput

func (e InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyOutput() InferenceSchedulerDataUploadFrequencyOutput

func (InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyOutputWithContext

func (e InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyOutputWithContext(ctx context.Context) InferenceSchedulerDataUploadFrequencyOutput

func (InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyPtrOutput

func (e InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyPtrOutput() InferenceSchedulerDataUploadFrequencyPtrOutput

func (InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyPtrOutputWithContext

func (e InferenceSchedulerDataUploadFrequency) ToInferenceSchedulerDataUploadFrequencyPtrOutputWithContext(ctx context.Context) InferenceSchedulerDataUploadFrequencyPtrOutput

func (InferenceSchedulerDataUploadFrequency) ToStringOutput

func (InferenceSchedulerDataUploadFrequency) ToStringOutputWithContext

func (e InferenceSchedulerDataUploadFrequency) ToStringOutputWithContext(ctx context.Context) pulumi.StringOutput

func (InferenceSchedulerDataUploadFrequency) ToStringPtrOutput

func (InferenceSchedulerDataUploadFrequency) ToStringPtrOutputWithContext

func (e InferenceSchedulerDataUploadFrequency) ToStringPtrOutputWithContext(ctx context.Context) pulumi.StringPtrOutput

type InferenceSchedulerDataUploadFrequencyInput

type InferenceSchedulerDataUploadFrequencyInput interface {
	pulumi.Input

	ToInferenceSchedulerDataUploadFrequencyOutput() InferenceSchedulerDataUploadFrequencyOutput
	ToInferenceSchedulerDataUploadFrequencyOutputWithContext(context.Context) InferenceSchedulerDataUploadFrequencyOutput
}

InferenceSchedulerDataUploadFrequencyInput is an input type that accepts InferenceSchedulerDataUploadFrequencyArgs and InferenceSchedulerDataUploadFrequencyOutput values. You can construct a concrete instance of `InferenceSchedulerDataUploadFrequencyInput` via:

InferenceSchedulerDataUploadFrequencyArgs{...}

type InferenceSchedulerDataUploadFrequencyOutput

type InferenceSchedulerDataUploadFrequencyOutput struct{ *pulumi.OutputState }

func (InferenceSchedulerDataUploadFrequencyOutput) ElementType

func (InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyOutput

func (o InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyOutput() InferenceSchedulerDataUploadFrequencyOutput

func (InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyOutputWithContext

func (o InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyOutputWithContext(ctx context.Context) InferenceSchedulerDataUploadFrequencyOutput

func (InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutput

func (o InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutput() InferenceSchedulerDataUploadFrequencyPtrOutput

func (InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutputWithContext

func (o InferenceSchedulerDataUploadFrequencyOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutputWithContext(ctx context.Context) InferenceSchedulerDataUploadFrequencyPtrOutput

func (InferenceSchedulerDataUploadFrequencyOutput) ToOutput added in v0.76.0

func (InferenceSchedulerDataUploadFrequencyOutput) ToStringOutput

func (InferenceSchedulerDataUploadFrequencyOutput) ToStringOutputWithContext

func (InferenceSchedulerDataUploadFrequencyOutput) ToStringPtrOutput

func (InferenceSchedulerDataUploadFrequencyOutput) ToStringPtrOutputWithContext

type InferenceSchedulerDataUploadFrequencyPtrInput

type InferenceSchedulerDataUploadFrequencyPtrInput interface {
	pulumi.Input

	ToInferenceSchedulerDataUploadFrequencyPtrOutput() InferenceSchedulerDataUploadFrequencyPtrOutput
	ToInferenceSchedulerDataUploadFrequencyPtrOutputWithContext(context.Context) InferenceSchedulerDataUploadFrequencyPtrOutput
}

type InferenceSchedulerDataUploadFrequencyPtrOutput

type InferenceSchedulerDataUploadFrequencyPtrOutput struct{ *pulumi.OutputState }

func (InferenceSchedulerDataUploadFrequencyPtrOutput) Elem

func (InferenceSchedulerDataUploadFrequencyPtrOutput) ElementType

func (InferenceSchedulerDataUploadFrequencyPtrOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutput

func (o InferenceSchedulerDataUploadFrequencyPtrOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutput() InferenceSchedulerDataUploadFrequencyPtrOutput

func (InferenceSchedulerDataUploadFrequencyPtrOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutputWithContext

func (o InferenceSchedulerDataUploadFrequencyPtrOutput) ToInferenceSchedulerDataUploadFrequencyPtrOutputWithContext(ctx context.Context) InferenceSchedulerDataUploadFrequencyPtrOutput

func (InferenceSchedulerDataUploadFrequencyPtrOutput) ToOutput added in v0.76.0

func (InferenceSchedulerDataUploadFrequencyPtrOutput) ToStringPtrOutput

func (InferenceSchedulerDataUploadFrequencyPtrOutput) ToStringPtrOutputWithContext

type InferenceSchedulerInput

type InferenceSchedulerInput interface {
	pulumi.Input

	ToInferenceSchedulerOutput() InferenceSchedulerOutput
	ToInferenceSchedulerOutputWithContext(ctx context.Context) InferenceSchedulerOutput
}

type InferenceSchedulerInputNameConfiguration

type InferenceSchedulerInputNameConfiguration struct {
	// Indicates the delimiter character used between items in the data.
	ComponentTimestampDelimiter *string `pulumi:"componentTimestampDelimiter"`
	// The format of the timestamp, whether Epoch time, or standard, with or without hyphens (-).
	TimestampFormat *string `pulumi:"timestampFormat"`
}

Specifies configuration information for the input data for the inference, including timestamp format and delimiter.

type InferenceSchedulerInputNameConfigurationArgs

type InferenceSchedulerInputNameConfigurationArgs struct {
	// Indicates the delimiter character used between items in the data.
	ComponentTimestampDelimiter pulumi.StringPtrInput `pulumi:"componentTimestampDelimiter"`
	// The format of the timestamp, whether Epoch time, or standard, with or without hyphens (-).
	TimestampFormat pulumi.StringPtrInput `pulumi:"timestampFormat"`
}

Specifies configuration information for the input data for the inference, including timestamp format and delimiter.

func (InferenceSchedulerInputNameConfigurationArgs) ElementType

func (InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationOutput

func (i InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationOutput() InferenceSchedulerInputNameConfigurationOutput

func (InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationOutputWithContext

func (i InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationOutputWithContext(ctx context.Context) InferenceSchedulerInputNameConfigurationOutput

func (InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationPtrOutput

func (i InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationPtrOutput() InferenceSchedulerInputNameConfigurationPtrOutput

func (InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationPtrOutputWithContext

func (i InferenceSchedulerInputNameConfigurationArgs) ToInferenceSchedulerInputNameConfigurationPtrOutputWithContext(ctx context.Context) InferenceSchedulerInputNameConfigurationPtrOutput

func (InferenceSchedulerInputNameConfigurationArgs) ToOutput added in v0.76.0

type InferenceSchedulerInputNameConfigurationInput

type InferenceSchedulerInputNameConfigurationInput interface {
	pulumi.Input

	ToInferenceSchedulerInputNameConfigurationOutput() InferenceSchedulerInputNameConfigurationOutput
	ToInferenceSchedulerInputNameConfigurationOutputWithContext(context.Context) InferenceSchedulerInputNameConfigurationOutput
}

InferenceSchedulerInputNameConfigurationInput is an input type that accepts InferenceSchedulerInputNameConfigurationArgs and InferenceSchedulerInputNameConfigurationOutput values. You can construct a concrete instance of `InferenceSchedulerInputNameConfigurationInput` via:

InferenceSchedulerInputNameConfigurationArgs{...}

type InferenceSchedulerInputNameConfigurationOutput

type InferenceSchedulerInputNameConfigurationOutput struct{ *pulumi.OutputState }

Specifies configuration information for the input data for the inference, including timestamp format and delimiter.

func (InferenceSchedulerInputNameConfigurationOutput) ComponentTimestampDelimiter

Indicates the delimiter character used between items in the data.

func (InferenceSchedulerInputNameConfigurationOutput) ElementType

func (InferenceSchedulerInputNameConfigurationOutput) TimestampFormat

The format of the timestamp, whether Epoch time, or standard, with or without hyphens (-).

func (InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationOutput

func (o InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationOutput() InferenceSchedulerInputNameConfigurationOutput

func (InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationOutputWithContext

func (o InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationOutputWithContext(ctx context.Context) InferenceSchedulerInputNameConfigurationOutput

func (InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationPtrOutput

func (o InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationPtrOutput() InferenceSchedulerInputNameConfigurationPtrOutput

func (InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationPtrOutputWithContext

func (o InferenceSchedulerInputNameConfigurationOutput) ToInferenceSchedulerInputNameConfigurationPtrOutputWithContext(ctx context.Context) InferenceSchedulerInputNameConfigurationPtrOutput

func (InferenceSchedulerInputNameConfigurationOutput) ToOutput added in v0.76.0

type InferenceSchedulerInputNameConfigurationPtrInput

type InferenceSchedulerInputNameConfigurationPtrInput interface {
	pulumi.Input

	ToInferenceSchedulerInputNameConfigurationPtrOutput() InferenceSchedulerInputNameConfigurationPtrOutput
	ToInferenceSchedulerInputNameConfigurationPtrOutputWithContext(context.Context) InferenceSchedulerInputNameConfigurationPtrOutput
}

InferenceSchedulerInputNameConfigurationPtrInput is an input type that accepts InferenceSchedulerInputNameConfigurationArgs, InferenceSchedulerInputNameConfigurationPtr and InferenceSchedulerInputNameConfigurationPtrOutput values. You can construct a concrete instance of `InferenceSchedulerInputNameConfigurationPtrInput` via:

        InferenceSchedulerInputNameConfigurationArgs{...}

or:

        nil

type InferenceSchedulerInputNameConfigurationPtrOutput

type InferenceSchedulerInputNameConfigurationPtrOutput struct{ *pulumi.OutputState }

func (InferenceSchedulerInputNameConfigurationPtrOutput) ComponentTimestampDelimiter

Indicates the delimiter character used between items in the data.

func (InferenceSchedulerInputNameConfigurationPtrOutput) Elem

func (InferenceSchedulerInputNameConfigurationPtrOutput) ElementType

func (InferenceSchedulerInputNameConfigurationPtrOutput) TimestampFormat

The format of the timestamp, whether Epoch time, or standard, with or without hyphens (-).

func (InferenceSchedulerInputNameConfigurationPtrOutput) ToInferenceSchedulerInputNameConfigurationPtrOutput

func (o InferenceSchedulerInputNameConfigurationPtrOutput) ToInferenceSchedulerInputNameConfigurationPtrOutput() InferenceSchedulerInputNameConfigurationPtrOutput

func (InferenceSchedulerInputNameConfigurationPtrOutput) ToInferenceSchedulerInputNameConfigurationPtrOutputWithContext

func (o InferenceSchedulerInputNameConfigurationPtrOutput) ToInferenceSchedulerInputNameConfigurationPtrOutputWithContext(ctx context.Context) InferenceSchedulerInputNameConfigurationPtrOutput

func (InferenceSchedulerInputNameConfigurationPtrOutput) ToOutput added in v0.76.0

type InferenceSchedulerOutput

type InferenceSchedulerOutput struct{ *pulumi.OutputState }

func (InferenceSchedulerOutput) DataDelayOffsetInMinutes added in v0.17.0

func (o InferenceSchedulerOutput) DataDelayOffsetInMinutes() pulumi.IntPtrOutput

A period of time (in minutes) by which inference on the data is delayed after the data starts.

func (InferenceSchedulerOutput) DataInputConfiguration added in v0.17.0

Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.

func (InferenceSchedulerOutput) DataOutputConfiguration added in v0.17.0

Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.

func (InferenceSchedulerOutput) DataUploadFrequency added in v0.17.0

How often data is uploaded to the source S3 bucket for the input data.

func (InferenceSchedulerOutput) ElementType

func (InferenceSchedulerOutput) ElementType() reflect.Type

func (InferenceSchedulerOutput) InferenceSchedulerArn added in v0.17.0

func (o InferenceSchedulerOutput) InferenceSchedulerArn() pulumi.StringOutput

The Amazon Resource Name (ARN) of the inference scheduler being created.

func (InferenceSchedulerOutput) InferenceSchedulerName added in v0.17.0

func (o InferenceSchedulerOutput) InferenceSchedulerName() pulumi.StringPtrOutput

The name of the inference scheduler being created.

func (InferenceSchedulerOutput) ModelName added in v0.17.0

The name of the previously trained ML model being used to create the inference scheduler.

func (InferenceSchedulerOutput) RoleArn added in v0.17.0

The Amazon Resource Name (ARN) of a role with permission to access the data source being used for the inference.

func (InferenceSchedulerOutput) ServerSideKmsKeyId added in v0.17.0

func (o InferenceSchedulerOutput) ServerSideKmsKeyId() pulumi.StringPtrOutput

Provides the identifier of the AWS KMS customer master key (CMK) used to encrypt inference scheduler data by Amazon Lookout for Equipment.

func (InferenceSchedulerOutput) Tags added in v0.17.0

Any tags associated with the inference scheduler.

func (InferenceSchedulerOutput) ToInferenceSchedulerOutput

func (o InferenceSchedulerOutput) ToInferenceSchedulerOutput() InferenceSchedulerOutput

func (InferenceSchedulerOutput) ToInferenceSchedulerOutputWithContext

func (o InferenceSchedulerOutput) ToInferenceSchedulerOutputWithContext(ctx context.Context) InferenceSchedulerOutput

func (InferenceSchedulerOutput) ToOutput added in v0.76.0

type InferenceSchedulerS3InputConfiguration

type InferenceSchedulerS3InputConfiguration struct {
	Bucket string  `pulumi:"bucket"`
	Prefix *string `pulumi:"prefix"`
}

Specifies configuration information for the input data for the inference, including input data S3 location.

type InferenceSchedulerS3InputConfigurationArgs

type InferenceSchedulerS3InputConfigurationArgs struct {
	Bucket pulumi.StringInput    `pulumi:"bucket"`
	Prefix pulumi.StringPtrInput `pulumi:"prefix"`
}

Specifies configuration information for the input data for the inference, including input data S3 location.

func (InferenceSchedulerS3InputConfigurationArgs) ElementType

func (InferenceSchedulerS3InputConfigurationArgs) ToInferenceSchedulerS3InputConfigurationOutput

func (i InferenceSchedulerS3InputConfigurationArgs) ToInferenceSchedulerS3InputConfigurationOutput() InferenceSchedulerS3InputConfigurationOutput

func (InferenceSchedulerS3InputConfigurationArgs) ToInferenceSchedulerS3InputConfigurationOutputWithContext

func (i InferenceSchedulerS3InputConfigurationArgs) ToInferenceSchedulerS3InputConfigurationOutputWithContext(ctx context.Context) InferenceSchedulerS3InputConfigurationOutput

func (InferenceSchedulerS3InputConfigurationArgs) ToOutput added in v0.76.0

type InferenceSchedulerS3InputConfigurationInput

type InferenceSchedulerS3InputConfigurationInput interface {
	pulumi.Input

	ToInferenceSchedulerS3InputConfigurationOutput() InferenceSchedulerS3InputConfigurationOutput
	ToInferenceSchedulerS3InputConfigurationOutputWithContext(context.Context) InferenceSchedulerS3InputConfigurationOutput
}

InferenceSchedulerS3InputConfigurationInput is an input type that accepts InferenceSchedulerS3InputConfigurationArgs and InferenceSchedulerS3InputConfigurationOutput values. You can construct a concrete instance of `InferenceSchedulerS3InputConfigurationInput` via:

InferenceSchedulerS3InputConfigurationArgs{...}

type InferenceSchedulerS3InputConfigurationOutput

type InferenceSchedulerS3InputConfigurationOutput struct{ *pulumi.OutputState }

Specifies configuration information for the input data for the inference, including input data S3 location.

func (InferenceSchedulerS3InputConfigurationOutput) Bucket

func (InferenceSchedulerS3InputConfigurationOutput) ElementType

func (InferenceSchedulerS3InputConfigurationOutput) Prefix

func (InferenceSchedulerS3InputConfigurationOutput) ToInferenceSchedulerS3InputConfigurationOutput

func (o InferenceSchedulerS3InputConfigurationOutput) ToInferenceSchedulerS3InputConfigurationOutput() InferenceSchedulerS3InputConfigurationOutput

func (InferenceSchedulerS3InputConfigurationOutput) ToInferenceSchedulerS3InputConfigurationOutputWithContext

func (o InferenceSchedulerS3InputConfigurationOutput) ToInferenceSchedulerS3InputConfigurationOutputWithContext(ctx context.Context) InferenceSchedulerS3InputConfigurationOutput

func (InferenceSchedulerS3InputConfigurationOutput) ToOutput added in v0.76.0

type InferenceSchedulerS3InputConfigurationPtrOutput

type InferenceSchedulerS3InputConfigurationPtrOutput struct{ *pulumi.OutputState }

func (InferenceSchedulerS3InputConfigurationPtrOutput) Bucket

func (InferenceSchedulerS3InputConfigurationPtrOutput) Elem

func (InferenceSchedulerS3InputConfigurationPtrOutput) ElementType

func (InferenceSchedulerS3InputConfigurationPtrOutput) Prefix

func (InferenceSchedulerS3InputConfigurationPtrOutput) ToInferenceSchedulerS3InputConfigurationPtrOutput

func (o InferenceSchedulerS3InputConfigurationPtrOutput) ToInferenceSchedulerS3InputConfigurationPtrOutput() InferenceSchedulerS3InputConfigurationPtrOutput

func (InferenceSchedulerS3InputConfigurationPtrOutput) ToInferenceSchedulerS3InputConfigurationPtrOutputWithContext

func (o InferenceSchedulerS3InputConfigurationPtrOutput) ToInferenceSchedulerS3InputConfigurationPtrOutputWithContext(ctx context.Context) InferenceSchedulerS3InputConfigurationPtrOutput

func (InferenceSchedulerS3InputConfigurationPtrOutput) ToOutput added in v0.76.0

type InferenceSchedulerS3OutputConfiguration

type InferenceSchedulerS3OutputConfiguration struct {
	Bucket string  `pulumi:"bucket"`
	Prefix *string `pulumi:"prefix"`
}

Specifies configuration information for the output results from the inference, including output S3 location.

type InferenceSchedulerS3OutputConfigurationArgs

type InferenceSchedulerS3OutputConfigurationArgs struct {
	Bucket pulumi.StringInput    `pulumi:"bucket"`
	Prefix pulumi.StringPtrInput `pulumi:"prefix"`
}

Specifies configuration information for the output results from the inference, including output S3 location.

func (InferenceSchedulerS3OutputConfigurationArgs) ElementType

func (InferenceSchedulerS3OutputConfigurationArgs) ToInferenceSchedulerS3OutputConfigurationOutput

func (i InferenceSchedulerS3OutputConfigurationArgs) ToInferenceSchedulerS3OutputConfigurationOutput() InferenceSchedulerS3OutputConfigurationOutput

func (InferenceSchedulerS3OutputConfigurationArgs) ToInferenceSchedulerS3OutputConfigurationOutputWithContext

func (i InferenceSchedulerS3OutputConfigurationArgs) ToInferenceSchedulerS3OutputConfigurationOutputWithContext(ctx context.Context) InferenceSchedulerS3OutputConfigurationOutput

func (InferenceSchedulerS3OutputConfigurationArgs) ToOutput added in v0.76.0

type InferenceSchedulerS3OutputConfigurationInput

type InferenceSchedulerS3OutputConfigurationInput interface {
	pulumi.Input

	ToInferenceSchedulerS3OutputConfigurationOutput() InferenceSchedulerS3OutputConfigurationOutput
	ToInferenceSchedulerS3OutputConfigurationOutputWithContext(context.Context) InferenceSchedulerS3OutputConfigurationOutput
}

InferenceSchedulerS3OutputConfigurationInput is an input type that accepts InferenceSchedulerS3OutputConfigurationArgs and InferenceSchedulerS3OutputConfigurationOutput values. You can construct a concrete instance of `InferenceSchedulerS3OutputConfigurationInput` via:

InferenceSchedulerS3OutputConfigurationArgs{...}

type InferenceSchedulerS3OutputConfigurationOutput

type InferenceSchedulerS3OutputConfigurationOutput struct{ *pulumi.OutputState }

Specifies configuration information for the output results from the inference, including output S3 location.

func (InferenceSchedulerS3OutputConfigurationOutput) Bucket

func (InferenceSchedulerS3OutputConfigurationOutput) ElementType

func (InferenceSchedulerS3OutputConfigurationOutput) Prefix

func (InferenceSchedulerS3OutputConfigurationOutput) ToInferenceSchedulerS3OutputConfigurationOutput

func (o InferenceSchedulerS3OutputConfigurationOutput) ToInferenceSchedulerS3OutputConfigurationOutput() InferenceSchedulerS3OutputConfigurationOutput

func (InferenceSchedulerS3OutputConfigurationOutput) ToInferenceSchedulerS3OutputConfigurationOutputWithContext

func (o InferenceSchedulerS3OutputConfigurationOutput) ToInferenceSchedulerS3OutputConfigurationOutputWithContext(ctx context.Context) InferenceSchedulerS3OutputConfigurationOutput

func (InferenceSchedulerS3OutputConfigurationOutput) ToOutput added in v0.76.0

type InferenceSchedulerS3OutputConfigurationPtrOutput

type InferenceSchedulerS3OutputConfigurationPtrOutput struct{ *pulumi.OutputState }

func (InferenceSchedulerS3OutputConfigurationPtrOutput) Bucket

func (InferenceSchedulerS3OutputConfigurationPtrOutput) Elem

func (InferenceSchedulerS3OutputConfigurationPtrOutput) ElementType

func (InferenceSchedulerS3OutputConfigurationPtrOutput) Prefix

func (InferenceSchedulerS3OutputConfigurationPtrOutput) ToInferenceSchedulerS3OutputConfigurationPtrOutput

func (o InferenceSchedulerS3OutputConfigurationPtrOutput) ToInferenceSchedulerS3OutputConfigurationPtrOutput() InferenceSchedulerS3OutputConfigurationPtrOutput

func (InferenceSchedulerS3OutputConfigurationPtrOutput) ToInferenceSchedulerS3OutputConfigurationPtrOutputWithContext

func (o InferenceSchedulerS3OutputConfigurationPtrOutput) ToInferenceSchedulerS3OutputConfigurationPtrOutputWithContext(ctx context.Context) InferenceSchedulerS3OutputConfigurationPtrOutput

func (InferenceSchedulerS3OutputConfigurationPtrOutput) ToOutput added in v0.76.0

type InferenceSchedulerState

type InferenceSchedulerState struct {
}

func (InferenceSchedulerState) ElementType

func (InferenceSchedulerState) ElementType() reflect.Type

type InferenceSchedulerTag

type InferenceSchedulerTag struct {
	// The key for the specified tag.
	Key string `pulumi:"key"`
	// The value for the specified tag.
	Value string `pulumi:"value"`
}

A tag is a key-value pair that can be added to a resource as metadata.

type InferenceSchedulerTagArgs

type InferenceSchedulerTagArgs struct {
	// The key for the specified tag.
	Key pulumi.StringInput `pulumi:"key"`
	// The value for the specified tag.
	Value pulumi.StringInput `pulumi:"value"`
}

A tag is a key-value pair that can be added to a resource as metadata.

func (InferenceSchedulerTagArgs) ElementType

func (InferenceSchedulerTagArgs) ElementType() reflect.Type

func (InferenceSchedulerTagArgs) ToInferenceSchedulerTagOutput

func (i InferenceSchedulerTagArgs) ToInferenceSchedulerTagOutput() InferenceSchedulerTagOutput

func (InferenceSchedulerTagArgs) ToInferenceSchedulerTagOutputWithContext

func (i InferenceSchedulerTagArgs) ToInferenceSchedulerTagOutputWithContext(ctx context.Context) InferenceSchedulerTagOutput

func (InferenceSchedulerTagArgs) ToOutput added in v0.76.0

type InferenceSchedulerTagArray

type InferenceSchedulerTagArray []InferenceSchedulerTagInput

func (InferenceSchedulerTagArray) ElementType

func (InferenceSchedulerTagArray) ElementType() reflect.Type

func (InferenceSchedulerTagArray) ToInferenceSchedulerTagArrayOutput

func (i InferenceSchedulerTagArray) ToInferenceSchedulerTagArrayOutput() InferenceSchedulerTagArrayOutput

func (InferenceSchedulerTagArray) ToInferenceSchedulerTagArrayOutputWithContext

func (i InferenceSchedulerTagArray) ToInferenceSchedulerTagArrayOutputWithContext(ctx context.Context) InferenceSchedulerTagArrayOutput

func (InferenceSchedulerTagArray) ToOutput added in v0.76.0

type InferenceSchedulerTagArrayInput

type InferenceSchedulerTagArrayInput interface {
	pulumi.Input

	ToInferenceSchedulerTagArrayOutput() InferenceSchedulerTagArrayOutput
	ToInferenceSchedulerTagArrayOutputWithContext(context.Context) InferenceSchedulerTagArrayOutput
}

InferenceSchedulerTagArrayInput is an input type that accepts InferenceSchedulerTagArray and InferenceSchedulerTagArrayOutput values. You can construct a concrete instance of `InferenceSchedulerTagArrayInput` via:

InferenceSchedulerTagArray{ InferenceSchedulerTagArgs{...} }

type InferenceSchedulerTagArrayOutput

type InferenceSchedulerTagArrayOutput struct{ *pulumi.OutputState }

func (InferenceSchedulerTagArrayOutput) ElementType

func (InferenceSchedulerTagArrayOutput) Index

func (InferenceSchedulerTagArrayOutput) ToInferenceSchedulerTagArrayOutput

func (o InferenceSchedulerTagArrayOutput) ToInferenceSchedulerTagArrayOutput() InferenceSchedulerTagArrayOutput

func (InferenceSchedulerTagArrayOutput) ToInferenceSchedulerTagArrayOutputWithContext

func (o InferenceSchedulerTagArrayOutput) ToInferenceSchedulerTagArrayOutputWithContext(ctx context.Context) InferenceSchedulerTagArrayOutput

func (InferenceSchedulerTagArrayOutput) ToOutput added in v0.76.0

type InferenceSchedulerTagInput

type InferenceSchedulerTagInput interface {
	pulumi.Input

	ToInferenceSchedulerTagOutput() InferenceSchedulerTagOutput
	ToInferenceSchedulerTagOutputWithContext(context.Context) InferenceSchedulerTagOutput
}

InferenceSchedulerTagInput is an input type that accepts InferenceSchedulerTagArgs and InferenceSchedulerTagOutput values. You can construct a concrete instance of `InferenceSchedulerTagInput` via:

InferenceSchedulerTagArgs{...}

type InferenceSchedulerTagOutput

type InferenceSchedulerTagOutput struct{ *pulumi.OutputState }

A tag is a key-value pair that can be added to a resource as metadata.

func (InferenceSchedulerTagOutput) ElementType

func (InferenceSchedulerTagOutput) Key

The key for the specified tag.

func (InferenceSchedulerTagOutput) ToInferenceSchedulerTagOutput

func (o InferenceSchedulerTagOutput) ToInferenceSchedulerTagOutput() InferenceSchedulerTagOutput

func (InferenceSchedulerTagOutput) ToInferenceSchedulerTagOutputWithContext

func (o InferenceSchedulerTagOutput) ToInferenceSchedulerTagOutputWithContext(ctx context.Context) InferenceSchedulerTagOutput

func (InferenceSchedulerTagOutput) ToOutput added in v0.76.0

func (InferenceSchedulerTagOutput) Value

The value for the specified tag.

type LookupInferenceSchedulerArgs added in v0.12.0

type LookupInferenceSchedulerArgs struct {
	// The name of the inference scheduler being created.
	InferenceSchedulerName string `pulumi:"inferenceSchedulerName"`
}

type LookupInferenceSchedulerOutputArgs added in v0.12.0

type LookupInferenceSchedulerOutputArgs struct {
	// The name of the inference scheduler being created.
	InferenceSchedulerName pulumi.StringInput `pulumi:"inferenceSchedulerName"`
}

func (LookupInferenceSchedulerOutputArgs) ElementType added in v0.12.0

type LookupInferenceSchedulerResult added in v0.12.0

type LookupInferenceSchedulerResult struct {
	// A period of time (in minutes) by which inference on the data is delayed after the data starts.
	DataDelayOffsetInMinutes *int `pulumi:"dataDelayOffsetInMinutes"`
	// Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.
	DataInputConfiguration *DataInputConfigurationProperties `pulumi:"dataInputConfiguration"`
	// Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.
	DataOutputConfiguration *DataOutputConfigurationProperties `pulumi:"dataOutputConfiguration"`
	// How often data is uploaded to the source S3 bucket for the input data.
	DataUploadFrequency *InferenceSchedulerDataUploadFrequency `pulumi:"dataUploadFrequency"`
	// The Amazon Resource Name (ARN) of the inference scheduler being created.
	InferenceSchedulerArn *string `pulumi:"inferenceSchedulerArn"`
	// The Amazon Resource Name (ARN) of a role with permission to access the data source being used for the inference.
	RoleArn *string `pulumi:"roleArn"`
	// Any tags associated with the inference scheduler.
	Tags []InferenceSchedulerTag `pulumi:"tags"`
}

func LookupInferenceScheduler added in v0.12.0

func LookupInferenceScheduler(ctx *pulumi.Context, args *LookupInferenceSchedulerArgs, opts ...pulumi.InvokeOption) (*LookupInferenceSchedulerResult, error)

Resource schema for LookoutEquipment InferenceScheduler.

type LookupInferenceSchedulerResultOutput added in v0.12.0

type LookupInferenceSchedulerResultOutput struct{ *pulumi.OutputState }

func (LookupInferenceSchedulerResultOutput) DataDelayOffsetInMinutes added in v0.12.0

func (o LookupInferenceSchedulerResultOutput) DataDelayOffsetInMinutes() pulumi.IntPtrOutput

A period of time (in minutes) by which inference on the data is delayed after the data starts.

func (LookupInferenceSchedulerResultOutput) DataInputConfiguration added in v0.12.0

Specifies configuration information for the input data for the inference scheduler, including delimiter, format, and dataset location.

func (LookupInferenceSchedulerResultOutput) DataOutputConfiguration added in v0.12.0

Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.

func (LookupInferenceSchedulerResultOutput) DataUploadFrequency added in v0.12.0

How often data is uploaded to the source S3 bucket for the input data.

func (LookupInferenceSchedulerResultOutput) ElementType added in v0.12.0

func (LookupInferenceSchedulerResultOutput) InferenceSchedulerArn added in v0.12.0

The Amazon Resource Name (ARN) of the inference scheduler being created.

func (LookupInferenceSchedulerResultOutput) RoleArn added in v0.12.0

The Amazon Resource Name (ARN) of a role with permission to access the data source being used for the inference.

func (LookupInferenceSchedulerResultOutput) Tags added in v0.12.0

Any tags associated with the inference scheduler.

func (LookupInferenceSchedulerResultOutput) ToLookupInferenceSchedulerResultOutput added in v0.12.0

func (o LookupInferenceSchedulerResultOutput) ToLookupInferenceSchedulerResultOutput() LookupInferenceSchedulerResultOutput

func (LookupInferenceSchedulerResultOutput) ToLookupInferenceSchedulerResultOutputWithContext added in v0.12.0

func (o LookupInferenceSchedulerResultOutput) ToLookupInferenceSchedulerResultOutputWithContext(ctx context.Context) LookupInferenceSchedulerResultOutput

func (LookupInferenceSchedulerResultOutput) ToOutput added in v0.76.0

Jump to

Keyboard shortcuts

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