gameliftfleet

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 CertificateConfiguration

type CertificateConfiguration struct {
	// CertificateType: string, optional
	CertificateType terra.StringValue `hcl:"certificate_type,attr"`
}

type CertificateConfigurationAttributes

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

func (CertificateConfigurationAttributes) CertificateType

func (CertificateConfigurationAttributes) InternalRef

func (CertificateConfigurationAttributes) InternalTokens

func (CertificateConfigurationAttributes) InternalWithRef

type CertificateConfigurationState

type CertificateConfigurationState struct {
	CertificateType string `json:"certificate_type"`
}

type Ec2InboundPermission

type Ec2InboundPermission struct {
	// FromPort: number, required
	FromPort terra.NumberValue `hcl:"from_port,attr" validate:"required"`
	// IpRange: string, required
	IpRange terra.StringValue `hcl:"ip_range,attr" validate:"required"`
	// Protocol: string, required
	Protocol terra.StringValue `hcl:"protocol,attr" validate:"required"`
	// ToPort: number, required
	ToPort terra.NumberValue `hcl:"to_port,attr" validate:"required"`
}

type Ec2InboundPermissionAttributes

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

func (Ec2InboundPermissionAttributes) FromPort

func (Ec2InboundPermissionAttributes) InternalRef

func (eip Ec2InboundPermissionAttributes) InternalRef() (terra.Reference, error)

func (Ec2InboundPermissionAttributes) InternalTokens

func (eip Ec2InboundPermissionAttributes) InternalTokens() (hclwrite.Tokens, error)

func (Ec2InboundPermissionAttributes) InternalWithRef

func (Ec2InboundPermissionAttributes) IpRange

func (Ec2InboundPermissionAttributes) Protocol

func (Ec2InboundPermissionAttributes) ToPort

type Ec2InboundPermissionState

type Ec2InboundPermissionState struct {
	FromPort float64 `json:"from_port"`
	IpRange  string  `json:"ip_range"`
	Protocol string  `json:"protocol"`
	ToPort   float64 `json:"to_port"`
}

type ResourceCreationLimitPolicy

type ResourceCreationLimitPolicy struct {
	// NewGameSessionsPerCreator: number, optional
	NewGameSessionsPerCreator terra.NumberValue `hcl:"new_game_sessions_per_creator,attr"`
	// PolicyPeriodInMinutes: number, optional
	PolicyPeriodInMinutes terra.NumberValue `hcl:"policy_period_in_minutes,attr"`
}

type ResourceCreationLimitPolicyAttributes

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

func (ResourceCreationLimitPolicyAttributes) InternalRef

func (ResourceCreationLimitPolicyAttributes) InternalTokens

func (ResourceCreationLimitPolicyAttributes) InternalWithRef

func (ResourceCreationLimitPolicyAttributes) NewGameSessionsPerCreator

func (rclp ResourceCreationLimitPolicyAttributes) NewGameSessionsPerCreator() terra.NumberValue

func (ResourceCreationLimitPolicyAttributes) PolicyPeriodInMinutes

func (rclp ResourceCreationLimitPolicyAttributes) PolicyPeriodInMinutes() terra.NumberValue

type ResourceCreationLimitPolicyState

type ResourceCreationLimitPolicyState struct {
	NewGameSessionsPerCreator float64 `json:"new_game_sessions_per_creator"`
	PolicyPeriodInMinutes     float64 `json:"policy_period_in_minutes"`
}

type RuntimeConfiguration

type RuntimeConfiguration struct {
	// GameSessionActivationTimeoutSeconds: number, optional
	GameSessionActivationTimeoutSeconds terra.NumberValue `hcl:"game_session_activation_timeout_seconds,attr"`
	// MaxConcurrentGameSessionActivations: number, optional
	MaxConcurrentGameSessionActivations terra.NumberValue `hcl:"max_concurrent_game_session_activations,attr"`
	// ServerProcess: min=0,max=50
	ServerProcess []ServerProcess `hcl:"server_process,block" validate:"min=0,max=50"`
}

type RuntimeConfigurationAttributes

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

func (RuntimeConfigurationAttributes) GameSessionActivationTimeoutSeconds

func (rc RuntimeConfigurationAttributes) GameSessionActivationTimeoutSeconds() terra.NumberValue

func (RuntimeConfigurationAttributes) InternalRef

func (RuntimeConfigurationAttributes) InternalTokens

func (rc RuntimeConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (RuntimeConfigurationAttributes) InternalWithRef

func (RuntimeConfigurationAttributes) MaxConcurrentGameSessionActivations

func (rc RuntimeConfigurationAttributes) MaxConcurrentGameSessionActivations() terra.NumberValue

func (RuntimeConfigurationAttributes) ServerProcess

type RuntimeConfigurationState

type RuntimeConfigurationState struct {
	GameSessionActivationTimeoutSeconds float64              `json:"game_session_activation_timeout_seconds"`
	MaxConcurrentGameSessionActivations float64              `json:"max_concurrent_game_session_activations"`
	ServerProcess                       []ServerProcessState `json:"server_process"`
}

type ServerProcess

type ServerProcess struct {
	// ConcurrentExecutions: number, required
	ConcurrentExecutions terra.NumberValue `hcl:"concurrent_executions,attr" validate:"required"`
	// LaunchPath: string, required
	LaunchPath terra.StringValue `hcl:"launch_path,attr" validate:"required"`
	// Parameters: string, optional
	Parameters terra.StringValue `hcl:"parameters,attr"`
}

type ServerProcessAttributes

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

func (ServerProcessAttributes) ConcurrentExecutions

func (sp ServerProcessAttributes) ConcurrentExecutions() terra.NumberValue

func (ServerProcessAttributes) InternalRef

func (sp ServerProcessAttributes) InternalRef() (terra.Reference, error)

func (ServerProcessAttributes) InternalTokens

func (sp ServerProcessAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ServerProcessAttributes) InternalWithRef

func (ServerProcessAttributes) LaunchPath

func (sp ServerProcessAttributes) LaunchPath() terra.StringValue

func (ServerProcessAttributes) Parameters

func (sp ServerProcessAttributes) Parameters() terra.StringValue

type ServerProcessState

type ServerProcessState struct {
	ConcurrentExecutions float64 `json:"concurrent_executions"`
	LaunchPath           string  `json:"launch_path"`
	Parameters           string  `json:"parameters"`
}

type Timeouts

type Timeouts struct {
	// Create: string, optional
	Create terra.StringValue `hcl:"create,attr"`
	// Delete: string, optional
	Delete terra.StringValue `hcl:"delete,attr"`
}

type TimeoutsAttributes

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

func (TimeoutsAttributes) Create

func (TimeoutsAttributes) Delete

func (TimeoutsAttributes) InternalRef

func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)

func (TimeoutsAttributes) InternalTokens

func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (TimeoutsAttributes) InternalWithRef

func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes

type TimeoutsState

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
}

Jump to

Keyboard shortcuts

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