Documentation ¶
Index ¶
- type Args
- type AutoDeployment
- type AutoDeploymentAttributes
- func (ad AutoDeploymentAttributes) Enabled() terra.BoolValue
- func (ad AutoDeploymentAttributes) InternalRef() (terra.Reference, error)
- func (ad AutoDeploymentAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ad AutoDeploymentAttributes) InternalWithRef(ref terra.Reference) AutoDeploymentAttributes
- func (ad AutoDeploymentAttributes) RetainStacksOnAccountRemoval() terra.BoolValue
- type AutoDeploymentState
- type ManagedExecution
- type ManagedExecutionAttributes
- func (me ManagedExecutionAttributes) Active() terra.BoolValue
- func (me ManagedExecutionAttributes) InternalRef() (terra.Reference, error)
- func (me ManagedExecutionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (me ManagedExecutionAttributes) InternalWithRef(ref terra.Reference) ManagedExecutionAttributes
- type ManagedExecutionState
- type OperationPreferences
- type OperationPreferencesAttributes
- func (op OperationPreferencesAttributes) FailureToleranceCount() terra.NumberValue
- func (op OperationPreferencesAttributes) FailureTolerancePercentage() terra.NumberValue
- func (op OperationPreferencesAttributes) InternalRef() (terra.Reference, error)
- func (op OperationPreferencesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (op OperationPreferencesAttributes) InternalWithRef(ref terra.Reference) OperationPreferencesAttributes
- func (op OperationPreferencesAttributes) MaxConcurrentCount() terra.NumberValue
- func (op OperationPreferencesAttributes) MaxConcurrentPercentage() terra.NumberValue
- func (op OperationPreferencesAttributes) RegionConcurrencyType() terra.StringValue
- func (op OperationPreferencesAttributes) RegionOrder() terra.ListValue[terra.StringValue]
- type OperationPreferencesState
- type Resource
- func (acss *Resource) Attributes() awsCloudformationStackSetAttributes
- func (acss *Resource) Configuration() interface{}
- func (acss *Resource) DependOn() terra.Reference
- func (acss *Resource) Dependencies() terra.Dependencies
- func (acss *Resource) ImportState(state io.Reader) error
- func (acss *Resource) LifecycleManagement() *terra.Lifecycle
- func (acss *Resource) LocalName() string
- func (acss *Resource) State() (*awsCloudformationStackSetState, bool)
- func (acss *Resource) StateMust() *awsCloudformationStackSetState
- func (acss *Resource) Type() string
- type Timeouts
- type TimeoutsAttributes
- type TimeoutsState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // AdministrationRoleArn: string, optional AdministrationRoleArn terra.StringValue `hcl:"administration_role_arn,attr"` // CallAs: string, optional CallAs terra.StringValue `hcl:"call_as,attr"` // Capabilities: set of string, optional Capabilities terra.SetValue[terra.StringValue] `hcl:"capabilities,attr"` // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // ExecutionRoleName: string, optional ExecutionRoleName terra.StringValue `hcl:"execution_role_name,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Parameters: map of string, optional Parameters terra.MapValue[terra.StringValue] `hcl:"parameters,attr"` // PermissionModel: string, optional PermissionModel terra.StringValue `hcl:"permission_model,attr"` // Tags: map of string, optional Tags terra.MapValue[terra.StringValue] `hcl:"tags,attr"` // TagsAll: map of string, optional TagsAll terra.MapValue[terra.StringValue] `hcl:"tags_all,attr"` // TemplateBody: string, optional TemplateBody terra.StringValue `hcl:"template_body,attr"` // TemplateUrl: string, optional TemplateUrl terra.StringValue `hcl:"template_url,attr"` // AutoDeployment: optional AutoDeployment *AutoDeployment `hcl:"auto_deployment,block"` // ManagedExecution: optional ManagedExecution *ManagedExecution `hcl:"managed_execution,block"` // OperationPreferences: optional OperationPreferences *OperationPreferences `hcl:"operation_preferences,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for aws_cloudformation_stack_set.
type AutoDeployment ¶
type AutoDeploymentAttributes ¶
type AutoDeploymentAttributes struct {
// contains filtered or unexported fields
}
func (AutoDeploymentAttributes) Enabled ¶
func (ad AutoDeploymentAttributes) Enabled() terra.BoolValue
func (AutoDeploymentAttributes) InternalRef ¶
func (ad AutoDeploymentAttributes) InternalRef() (terra.Reference, error)
func (AutoDeploymentAttributes) InternalTokens ¶
func (ad AutoDeploymentAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AutoDeploymentAttributes) InternalWithRef ¶
func (ad AutoDeploymentAttributes) InternalWithRef(ref terra.Reference) AutoDeploymentAttributes
func (AutoDeploymentAttributes) RetainStacksOnAccountRemoval ¶
func (ad AutoDeploymentAttributes) RetainStacksOnAccountRemoval() terra.BoolValue
type AutoDeploymentState ¶
type ManagedExecution ¶
type ManagedExecutionAttributes ¶
type ManagedExecutionAttributes struct {
// contains filtered or unexported fields
}
func (ManagedExecutionAttributes) Active ¶
func (me ManagedExecutionAttributes) Active() terra.BoolValue
func (ManagedExecutionAttributes) InternalRef ¶
func (me ManagedExecutionAttributes) InternalRef() (terra.Reference, error)
func (ManagedExecutionAttributes) InternalTokens ¶
func (me ManagedExecutionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ManagedExecutionAttributes) InternalWithRef ¶
func (me ManagedExecutionAttributes) InternalWithRef(ref terra.Reference) ManagedExecutionAttributes
type ManagedExecutionState ¶
type ManagedExecutionState struct {
Active bool `json:"active"`
}
type OperationPreferences ¶
type OperationPreferences struct { // FailureToleranceCount: number, optional FailureToleranceCount terra.NumberValue `hcl:"failure_tolerance_count,attr"` // FailureTolerancePercentage: number, optional FailureTolerancePercentage terra.NumberValue `hcl:"failure_tolerance_percentage,attr"` // MaxConcurrentCount: number, optional MaxConcurrentCount terra.NumberValue `hcl:"max_concurrent_count,attr"` // MaxConcurrentPercentage: number, optional MaxConcurrentPercentage terra.NumberValue `hcl:"max_concurrent_percentage,attr"` // RegionConcurrencyType: string, optional RegionConcurrencyType terra.StringValue `hcl:"region_concurrency_type,attr"` // RegionOrder: list of string, optional RegionOrder terra.ListValue[terra.StringValue] `hcl:"region_order,attr"` }
type OperationPreferencesAttributes ¶
type OperationPreferencesAttributes struct {
// contains filtered or unexported fields
}
func (OperationPreferencesAttributes) FailureToleranceCount ¶
func (op OperationPreferencesAttributes) FailureToleranceCount() terra.NumberValue
func (OperationPreferencesAttributes) FailureTolerancePercentage ¶
func (op OperationPreferencesAttributes) FailureTolerancePercentage() terra.NumberValue
func (OperationPreferencesAttributes) InternalRef ¶
func (op OperationPreferencesAttributes) InternalRef() (terra.Reference, error)
func (OperationPreferencesAttributes) InternalTokens ¶
func (op OperationPreferencesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (OperationPreferencesAttributes) InternalWithRef ¶
func (op OperationPreferencesAttributes) InternalWithRef(ref terra.Reference) OperationPreferencesAttributes
func (OperationPreferencesAttributes) MaxConcurrentCount ¶
func (op OperationPreferencesAttributes) MaxConcurrentCount() terra.NumberValue
func (OperationPreferencesAttributes) MaxConcurrentPercentage ¶
func (op OperationPreferencesAttributes) MaxConcurrentPercentage() terra.NumberValue
func (OperationPreferencesAttributes) RegionConcurrencyType ¶
func (op OperationPreferencesAttributes) RegionConcurrencyType() terra.StringValue
func (OperationPreferencesAttributes) RegionOrder ¶
func (op OperationPreferencesAttributes) RegionOrder() terra.ListValue[terra.StringValue]
type OperationPreferencesState ¶
type OperationPreferencesState struct { FailureToleranceCount float64 `json:"failure_tolerance_count"` FailureTolerancePercentage float64 `json:"failure_tolerance_percentage"` MaxConcurrentCount float64 `json:"max_concurrent_count"` MaxConcurrentPercentage float64 `json:"max_concurrent_percentage"` RegionConcurrencyType string `json:"region_concurrency_type"` RegionOrder []string `json:"region_order"` }
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_cloudformation_stack_set.
func (*Resource) Attributes ¶
func (acss *Resource) Attributes() awsCloudformationStackSetAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (acss *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (acss *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 { // Update: string, optional Update terra.StringValue `hcl:"update,attr"` }
type TimeoutsAttributes ¶
type TimeoutsAttributes struct {
// contains filtered or unexported fields
}
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
type TimeoutsState ¶
type TimeoutsState struct {
Update string `json:"update"`
}
Click to show internal directories.
Click to hide internal directories.