sagemakerflowdefinition

package
v0.0.0-...-964ba77 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2024 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AmountInUsd

type AmountInUsd struct {
	// Cents: number, optional
	Cents terra.NumberValue `hcl:"cents,attr"`
	// Dollars: number, optional
	Dollars terra.NumberValue `hcl:"dollars,attr"`
	// TenthFractionsOfACent: number, optional
	TenthFractionsOfACent terra.NumberValue `hcl:"tenth_fractions_of_a_cent,attr"`
}

type AmountInUsdAttributes

type AmountInUsdAttributes struct {
	// contains filtered or unexported fields
}

func (AmountInUsdAttributes) Cents

func (AmountInUsdAttributes) Dollars

func (aiu AmountInUsdAttributes) Dollars() terra.NumberValue

func (AmountInUsdAttributes) InternalRef

func (aiu AmountInUsdAttributes) InternalRef() (terra.Reference, error)

func (AmountInUsdAttributes) InternalTokens

func (aiu AmountInUsdAttributes) InternalTokens() (hclwrite.Tokens, error)

func (AmountInUsdAttributes) InternalWithRef

func (AmountInUsdAttributes) TenthFractionsOfACent

func (aiu AmountInUsdAttributes) TenthFractionsOfACent() terra.NumberValue

type AmountInUsdState

type AmountInUsdState struct {
	Cents                 float64 `json:"cents"`
	Dollars               float64 `json:"dollars"`
	TenthFractionsOfACent float64 `json:"tenth_fractions_of_a_cent"`
}

type HumanLoopActivationConditionsConfig

type HumanLoopActivationConditionsConfig struct {
	// HumanLoopActivationConditions: string, required
	HumanLoopActivationConditions terra.StringValue `hcl:"human_loop_activation_conditions,attr" validate:"required"`
}

type HumanLoopActivationConditionsConfigAttributes

type HumanLoopActivationConditionsConfigAttributes struct {
	// contains filtered or unexported fields
}

func (HumanLoopActivationConditionsConfigAttributes) HumanLoopActivationConditions

func (hlacc HumanLoopActivationConditionsConfigAttributes) HumanLoopActivationConditions() terra.StringValue

func (HumanLoopActivationConditionsConfigAttributes) InternalRef

func (HumanLoopActivationConditionsConfigAttributes) InternalTokens

func (HumanLoopActivationConditionsConfigAttributes) InternalWithRef

type HumanLoopActivationConditionsConfigState

type HumanLoopActivationConditionsConfigState struct {
	HumanLoopActivationConditions string `json:"human_loop_activation_conditions"`
}

type HumanLoopActivationConfig

type HumanLoopActivationConfig struct {
	// HumanLoopActivationConditionsConfig: optional
	HumanLoopActivationConditionsConfig *HumanLoopActivationConditionsConfig `hcl:"human_loop_activation_conditions_config,block"`
}

type HumanLoopActivationConfigAttributes

type HumanLoopActivationConfigAttributes struct {
	// contains filtered or unexported fields
}

func (HumanLoopActivationConfigAttributes) HumanLoopActivationConditionsConfig

func (HumanLoopActivationConfigAttributes) InternalRef

func (HumanLoopActivationConfigAttributes) InternalTokens

func (hlac HumanLoopActivationConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HumanLoopActivationConfigAttributes) InternalWithRef

type HumanLoopActivationConfigState

type HumanLoopActivationConfigState struct {
	HumanLoopActivationConditionsConfig []HumanLoopActivationConditionsConfigState `json:"human_loop_activation_conditions_config"`
}

type HumanLoopConfig

type HumanLoopConfig struct {
	// HumanTaskUiArn: string, required
	HumanTaskUiArn terra.StringValue `hcl:"human_task_ui_arn,attr" validate:"required"`
	// TaskAvailabilityLifetimeInSeconds: number, optional
	TaskAvailabilityLifetimeInSeconds terra.NumberValue `hcl:"task_availability_lifetime_in_seconds,attr"`
	// TaskCount: number, required
	TaskCount terra.NumberValue `hcl:"task_count,attr" validate:"required"`
	// TaskDescription: string, required
	TaskDescription terra.StringValue `hcl:"task_description,attr" validate:"required"`
	// TaskKeywords: set of string, optional
	TaskKeywords terra.SetValue[terra.StringValue] `hcl:"task_keywords,attr"`
	// TaskTimeLimitInSeconds: number, optional
	TaskTimeLimitInSeconds terra.NumberValue `hcl:"task_time_limit_in_seconds,attr"`
	// TaskTitle: string, required
	TaskTitle terra.StringValue `hcl:"task_title,attr" validate:"required"`
	// WorkteamArn: string, required
	WorkteamArn terra.StringValue `hcl:"workteam_arn,attr" validate:"required"`
	// PublicWorkforceTaskPrice: optional
	PublicWorkforceTaskPrice *PublicWorkforceTaskPrice `hcl:"public_workforce_task_price,block"`
}

type HumanLoopConfigAttributes

type HumanLoopConfigAttributes struct {
	// contains filtered or unexported fields
}

func (HumanLoopConfigAttributes) HumanTaskUiArn

func (hlc HumanLoopConfigAttributes) HumanTaskUiArn() terra.StringValue

func (HumanLoopConfigAttributes) InternalRef

func (hlc HumanLoopConfigAttributes) InternalRef() (terra.Reference, error)

func (HumanLoopConfigAttributes) InternalTokens

func (hlc HumanLoopConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HumanLoopConfigAttributes) InternalWithRef

func (HumanLoopConfigAttributes) PublicWorkforceTaskPrice

func (HumanLoopConfigAttributes) TaskAvailabilityLifetimeInSeconds

func (hlc HumanLoopConfigAttributes) TaskAvailabilityLifetimeInSeconds() terra.NumberValue

func (HumanLoopConfigAttributes) TaskCount

func (HumanLoopConfigAttributes) TaskDescription

func (hlc HumanLoopConfigAttributes) TaskDescription() terra.StringValue

func (HumanLoopConfigAttributes) TaskKeywords

func (HumanLoopConfigAttributes) TaskTimeLimitInSeconds

func (hlc HumanLoopConfigAttributes) TaskTimeLimitInSeconds() terra.NumberValue

func (HumanLoopConfigAttributes) TaskTitle

func (HumanLoopConfigAttributes) WorkteamArn

func (hlc HumanLoopConfigAttributes) WorkteamArn() terra.StringValue

type HumanLoopConfigState

type HumanLoopConfigState struct {
	HumanTaskUiArn                    string                          `json:"human_task_ui_arn"`
	TaskAvailabilityLifetimeInSeconds float64                         `json:"task_availability_lifetime_in_seconds"`
	TaskCount                         float64                         `json:"task_count"`
	TaskDescription                   string                          `json:"task_description"`
	TaskKeywords                      []string                        `json:"task_keywords"`
	TaskTimeLimitInSeconds            float64                         `json:"task_time_limit_in_seconds"`
	TaskTitle                         string                          `json:"task_title"`
	WorkteamArn                       string                          `json:"workteam_arn"`
	PublicWorkforceTaskPrice          []PublicWorkforceTaskPriceState `json:"public_workforce_task_price"`
}

type HumanLoopRequestSource

type HumanLoopRequestSource struct {
	// AwsManagedHumanLoopRequestSource: string, required
	AwsManagedHumanLoopRequestSource terra.StringValue `hcl:"aws_managed_human_loop_request_source,attr" validate:"required"`
}

type HumanLoopRequestSourceAttributes

type HumanLoopRequestSourceAttributes struct {
	// contains filtered or unexported fields
}

func (HumanLoopRequestSourceAttributes) AwsManagedHumanLoopRequestSource

func (hlrs HumanLoopRequestSourceAttributes) AwsManagedHumanLoopRequestSource() terra.StringValue

func (HumanLoopRequestSourceAttributes) InternalRef

func (hlrs HumanLoopRequestSourceAttributes) InternalRef() (terra.Reference, error)

func (HumanLoopRequestSourceAttributes) InternalTokens

func (hlrs HumanLoopRequestSourceAttributes) InternalTokens() (hclwrite.Tokens, error)

func (HumanLoopRequestSourceAttributes) InternalWithRef

type HumanLoopRequestSourceState

type HumanLoopRequestSourceState struct {
	AwsManagedHumanLoopRequestSource string `json:"aws_managed_human_loop_request_source"`
}

type OutputConfig

type OutputConfig struct {
	// KmsKeyId: string, optional
	KmsKeyId terra.StringValue `hcl:"kms_key_id,attr"`
	// S3OutputPath: string, required
	S3OutputPath terra.StringValue `hcl:"s3_output_path,attr" validate:"required"`
}

type OutputConfigAttributes

type OutputConfigAttributes struct {
	// contains filtered or unexported fields
}

func (OutputConfigAttributes) InternalRef

func (oc OutputConfigAttributes) InternalRef() (terra.Reference, error)

func (OutputConfigAttributes) InternalTokens

func (oc OutputConfigAttributes) InternalTokens() (hclwrite.Tokens, error)

func (OutputConfigAttributes) InternalWithRef

func (OutputConfigAttributes) KmsKeyId

func (OutputConfigAttributes) S3OutputPath

func (oc OutputConfigAttributes) S3OutputPath() terra.StringValue

type OutputConfigState

type OutputConfigState struct {
	KmsKeyId     string `json:"kms_key_id"`
	S3OutputPath string `json:"s3_output_path"`
}

type PublicWorkforceTaskPrice

type PublicWorkforceTaskPrice struct {
	// AmountInUsd: optional
	AmountInUsd *AmountInUsd `hcl:"amount_in_usd,block"`
}

type PublicWorkforceTaskPriceAttributes

type PublicWorkforceTaskPriceAttributes struct {
	// contains filtered or unexported fields
}

func (PublicWorkforceTaskPriceAttributes) AmountInUsd

func (PublicWorkforceTaskPriceAttributes) InternalRef

func (PublicWorkforceTaskPriceAttributes) InternalTokens

func (pwtp PublicWorkforceTaskPriceAttributes) InternalTokens() (hclwrite.Tokens, error)

func (PublicWorkforceTaskPriceAttributes) InternalWithRef

type PublicWorkforceTaskPriceState

type PublicWorkforceTaskPriceState struct {
	AmountInUsd []AmountInUsdState `json:"amount_in_usd"`
}

Jump to

Keyboard shortcuts

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