Documentation ¶
Index ¶
- type Args
- type EndpointConfiguration
- type EndpointConfigurationAttributes
- func (ec EndpointConfigurationAttributes) ClientIpPreservationEnabled() terra.BoolValue
- func (ec EndpointConfigurationAttributes) EndpointId() terra.StringValue
- func (ec EndpointConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (ec EndpointConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ec EndpointConfigurationAttributes) InternalWithRef(ref terra.Reference) EndpointConfigurationAttributes
- func (ec EndpointConfigurationAttributes) Weight() terra.NumberValue
- type EndpointConfigurationState
- type PortOverride
- type PortOverrideAttributes
- func (po PortOverrideAttributes) EndpointPort() terra.NumberValue
- func (po PortOverrideAttributes) InternalRef() (terra.Reference, error)
- func (po PortOverrideAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (po PortOverrideAttributes) InternalWithRef(ref terra.Reference) PortOverrideAttributes
- func (po PortOverrideAttributes) ListenerPort() terra.NumberValue
- type PortOverrideState
- type Resource
- func (ageg *Resource) Attributes() awsGlobalacceleratorEndpointGroupAttributes
- func (ageg *Resource) Configuration() interface{}
- func (ageg *Resource) DependOn() terra.Reference
- func (ageg *Resource) Dependencies() terra.Dependencies
- func (ageg *Resource) ImportState(state io.Reader) error
- func (ageg *Resource) LifecycleManagement() *terra.Lifecycle
- func (ageg *Resource) LocalName() string
- func (ageg *Resource) State() (*awsGlobalacceleratorEndpointGroupState, bool)
- func (ageg *Resource) StateMust() *awsGlobalacceleratorEndpointGroupState
- func (ageg *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 { // EndpointGroupRegion: string, optional EndpointGroupRegion terra.StringValue `hcl:"endpoint_group_region,attr"` // HealthCheckIntervalSeconds: number, optional HealthCheckIntervalSeconds terra.NumberValue `hcl:"health_check_interval_seconds,attr"` // HealthCheckPath: string, optional HealthCheckPath terra.StringValue `hcl:"health_check_path,attr"` // HealthCheckPort: number, optional HealthCheckPort terra.NumberValue `hcl:"health_check_port,attr"` // HealthCheckProtocol: string, optional HealthCheckProtocol terra.StringValue `hcl:"health_check_protocol,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // ListenerArn: string, required ListenerArn terra.StringValue `hcl:"listener_arn,attr" validate:"required"` // ThresholdCount: number, optional ThresholdCount terra.NumberValue `hcl:"threshold_count,attr"` // TrafficDialPercentage: number, optional TrafficDialPercentage terra.NumberValue `hcl:"traffic_dial_percentage,attr"` // EndpointConfiguration: min=0 EndpointConfiguration []EndpointConfiguration `hcl:"endpoint_configuration,block" validate:"min=0"` // PortOverride: min=0,max=10 PortOverride []PortOverride `hcl:"port_override,block" validate:"min=0,max=10"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for aws_globalaccelerator_endpoint_group.
type EndpointConfiguration ¶
type EndpointConfiguration struct { // ClientIpPreservationEnabled: bool, optional ClientIpPreservationEnabled terra.BoolValue `hcl:"client_ip_preservation_enabled,attr"` // EndpointId: string, optional EndpointId terra.StringValue `hcl:"endpoint_id,attr"` // Weight: number, optional Weight terra.NumberValue `hcl:"weight,attr"` }
type EndpointConfigurationAttributes ¶
type EndpointConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (EndpointConfigurationAttributes) ClientIpPreservationEnabled ¶
func (ec EndpointConfigurationAttributes) ClientIpPreservationEnabled() terra.BoolValue
func (EndpointConfigurationAttributes) EndpointId ¶
func (ec EndpointConfigurationAttributes) EndpointId() terra.StringValue
func (EndpointConfigurationAttributes) InternalRef ¶
func (ec EndpointConfigurationAttributes) InternalRef() (terra.Reference, error)
func (EndpointConfigurationAttributes) InternalTokens ¶
func (ec EndpointConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EndpointConfigurationAttributes) InternalWithRef ¶
func (ec EndpointConfigurationAttributes) InternalWithRef(ref terra.Reference) EndpointConfigurationAttributes
func (EndpointConfigurationAttributes) Weight ¶
func (ec EndpointConfigurationAttributes) Weight() terra.NumberValue
type PortOverride ¶
type PortOverride struct { // EndpointPort: number, required EndpointPort terra.NumberValue `hcl:"endpoint_port,attr" validate:"required"` // ListenerPort: number, required ListenerPort terra.NumberValue `hcl:"listener_port,attr" validate:"required"` }
type PortOverrideAttributes ¶
type PortOverrideAttributes struct {
// contains filtered or unexported fields
}
func (PortOverrideAttributes) EndpointPort ¶
func (po PortOverrideAttributes) EndpointPort() terra.NumberValue
func (PortOverrideAttributes) InternalRef ¶
func (po PortOverrideAttributes) InternalRef() (terra.Reference, error)
func (PortOverrideAttributes) InternalTokens ¶
func (po PortOverrideAttributes) InternalTokens() (hclwrite.Tokens, error)
func (PortOverrideAttributes) InternalWithRef ¶
func (po PortOverrideAttributes) InternalWithRef(ref terra.Reference) PortOverrideAttributes
func (PortOverrideAttributes) ListenerPort ¶
func (po PortOverrideAttributes) ListenerPort() terra.NumberValue
type PortOverrideState ¶
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_globalaccelerator_endpoint_group.
func (*Resource) Attributes ¶
func (ageg *Resource) Attributes() awsGlobalacceleratorEndpointGroupAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (ageg *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (ageg *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
type TimeoutsState ¶
Click to show internal directories.
Click to hide internal directories.