Documentation ¶
Index ¶
- type Args
- type ComputeEnvironmentOrder
- type ComputeEnvironmentOrderAttributes
- func (ceo ComputeEnvironmentOrderAttributes) ComputeEnvironment() terra.StringValue
- func (ceo ComputeEnvironmentOrderAttributes) InternalRef() (terra.Reference, error)
- func (ceo ComputeEnvironmentOrderAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ceo ComputeEnvironmentOrderAttributes) InternalWithRef(ref terra.Reference) ComputeEnvironmentOrderAttributes
- func (ceo ComputeEnvironmentOrderAttributes) Order() terra.NumberValue
- type ComputeEnvironmentOrderState
- type DataArgs
- type DataComputeEnvironmentOrderAttributes
- func (ceo DataComputeEnvironmentOrderAttributes) ComputeEnvironment() terra.StringValue
- func (ceo DataComputeEnvironmentOrderAttributes) InternalRef() (terra.Reference, error)
- func (ceo DataComputeEnvironmentOrderAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ceo DataComputeEnvironmentOrderAttributes) InternalWithRef(ref terra.Reference) DataComputeEnvironmentOrderAttributes
- func (ceo DataComputeEnvironmentOrderAttributes) Order() terra.NumberValue
- type DataComputeEnvironmentOrderState
- type DataSource
- type Resource
- func (abjq *Resource) Attributes() awsBatchJobQueueAttributes
- func (abjq *Resource) Configuration() interface{}
- func (abjq *Resource) DependOn() terra.Reference
- func (abjq *Resource) Dependencies() terra.Dependencies
- func (abjq *Resource) ImportState(state io.Reader) error
- func (abjq *Resource) LifecycleManagement() *terra.Lifecycle
- func (abjq *Resource) LocalName() string
- func (abjq *Resource) State() (*awsBatchJobQueueState, bool)
- func (abjq *Resource) StateMust() *awsBatchJobQueueState
- func (abjq *Resource) Type() string
- type Timeouts
- type TimeoutsAttributes
- func (t TimeoutsAttributes) Create() terra.StringValue
- func (t TimeoutsAttributes) Delete() terra.StringValue
- func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)
- func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes
- func (t TimeoutsAttributes) Update() terra.StringValue
- type TimeoutsState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // ComputeEnvironments: list of string, optional ComputeEnvironments terra.ListValue[terra.StringValue] `hcl:"compute_environments,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Priority: number, required Priority terra.NumberValue `hcl:"priority,attr" validate:"required"` // SchedulingPolicyArn: string, optional SchedulingPolicyArn terra.StringValue `hcl:"scheduling_policy_arn,attr"` // State: string, required State terra.StringValue `hcl:"state,attr" validate:"required"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // ComputeEnvironmentOrder: min=0 ComputeEnvironmentOrder []ComputeEnvironmentOrder `hcl:"compute_environment_order,block" validate:"min=0"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for aws_batch_job_queue.
type ComputeEnvironmentOrder ¶
type ComputeEnvironmentOrder struct { // ComputeEnvironment: string, required ComputeEnvironment terra.StringValue `hcl:"compute_environment,attr" validate:"required"` // Order: number, required Order terra.NumberValue `hcl:"order,attr" validate:"required"` }
type ComputeEnvironmentOrderAttributes ¶
type ComputeEnvironmentOrderAttributes struct {
// contains filtered or unexported fields
}
func (ComputeEnvironmentOrderAttributes) ComputeEnvironment ¶
func (ceo ComputeEnvironmentOrderAttributes) ComputeEnvironment() terra.StringValue
func (ComputeEnvironmentOrderAttributes) InternalRef ¶
func (ceo ComputeEnvironmentOrderAttributes) InternalRef() (terra.Reference, error)
func (ComputeEnvironmentOrderAttributes) InternalTokens ¶
func (ceo ComputeEnvironmentOrderAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ComputeEnvironmentOrderAttributes) InternalWithRef ¶
func (ceo ComputeEnvironmentOrderAttributes) InternalWithRef(ref terra.Reference) ComputeEnvironmentOrderAttributes
func (ComputeEnvironmentOrderAttributes) Order ¶
func (ceo ComputeEnvironmentOrderAttributes) Order() terra.NumberValue
type DataArgs ¶
type DataArgs struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` }
DataArgs contains the configurations for aws_batch_job_queue.
type DataComputeEnvironmentOrderAttributes ¶
type DataComputeEnvironmentOrderAttributes struct {
// contains filtered or unexported fields
}
func (DataComputeEnvironmentOrderAttributes) ComputeEnvironment ¶
func (ceo DataComputeEnvironmentOrderAttributes) ComputeEnvironment() terra.StringValue
func (DataComputeEnvironmentOrderAttributes) InternalRef ¶
func (ceo DataComputeEnvironmentOrderAttributes) InternalRef() (terra.Reference, error)
func (DataComputeEnvironmentOrderAttributes) InternalTokens ¶
func (ceo DataComputeEnvironmentOrderAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataComputeEnvironmentOrderAttributes) InternalWithRef ¶
func (ceo DataComputeEnvironmentOrderAttributes) InternalWithRef(ref terra.Reference) DataComputeEnvironmentOrderAttributes
func (DataComputeEnvironmentOrderAttributes) Order ¶
func (ceo DataComputeEnvironmentOrderAttributes) Order() terra.NumberValue
type DataSource ¶
DataSource represents the Terraform data resource aws_batch_job_queue.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (abjq *DataSource) Attributes() dataAwsBatchJobQueueAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (abjq *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (abjq *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (abjq *DataSource) LocalName() string
LocalName returns the local name for DataSource.
type Resource ¶
type Resource struct { Name string Args Args DependsOn terra.Dependencies Lifecycle *terra.Lifecycle // contains filtered or unexported fields }
Resource represents the Terraform resource aws_batch_job_queue.
func (*Resource) Attributes ¶
func (abjq *Resource) Attributes() awsBatchJobQueueAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (abjq *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (abjq *Resource) Dependencies() terra.Dependencies
Dependencies returns the list of resources Resource depends_on.
func (*Resource) ImportState ¶
ImportState imports the given attribute values into Resource's state.
func (*Resource) LifecycleManagement ¶
LifecycleManagement returns the lifecycle block for Resource.
type Timeouts ¶
type Timeouts struct { // Create: string, optional Create terra.StringValue `hcl:"create,attr"` // Delete: string, optional Delete terra.StringValue `hcl:"delete,attr"` // Update: string, optional Update terra.StringValue `hcl:"update,attr"` }
type TimeoutsAttributes ¶
type TimeoutsAttributes struct {
// contains filtered or unexported fields
}
func (TimeoutsAttributes) Create ¶
func (t TimeoutsAttributes) Create() terra.StringValue
func (TimeoutsAttributes) Delete ¶
func (t TimeoutsAttributes) Delete() terra.StringValue
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
func (TimeoutsAttributes) Update ¶
func (t TimeoutsAttributes) Update() terra.StringValue