aws_verifiedaccess_endpoint

package
v0.0.0-...-4deecce Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Args

type Args struct {
	// ApplicationDomain: string, required
	ApplicationDomain terra.StringValue `hcl:"application_domain,attr" validate:"required"`
	// AttachmentType: string, required
	AttachmentType terra.StringValue `hcl:"attachment_type,attr" validate:"required"`
	// Description: string, optional
	Description terra.StringValue `hcl:"description,attr"`
	// DomainCertificateArn: string, required
	DomainCertificateArn terra.StringValue `hcl:"domain_certificate_arn,attr" validate:"required"`
	// EndpointDomainPrefix: string, required
	EndpointDomainPrefix terra.StringValue `hcl:"endpoint_domain_prefix,attr" validate:"required"`
	// EndpointType: string, required
	EndpointType terra.StringValue `hcl:"endpoint_type,attr" validate:"required"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// PolicyDocument: string, optional
	PolicyDocument terra.StringValue `hcl:"policy_document,attr"`
	// SecurityGroupIds: set of string, optional
	SecurityGroupIds terra.SetValue[terra.StringValue] `hcl:"security_group_ids,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"`
	// VerifiedAccessGroupId: string, required
	VerifiedAccessGroupId terra.StringValue `hcl:"verified_access_group_id,attr" validate:"required"`
	// LoadBalancerOptions: optional
	LoadBalancerOptions *LoadBalancerOptions `hcl:"load_balancer_options,block"`
	// NetworkInterfaceOptions: optional
	NetworkInterfaceOptions *NetworkInterfaceOptions `hcl:"network_interface_options,block"`
	// SseSpecification: optional
	SseSpecification *SseSpecification `hcl:"sse_specification,block"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for aws_verifiedaccess_endpoint.

type LoadBalancerOptions

type LoadBalancerOptions struct {
	// LoadBalancerArn: string, optional
	LoadBalancerArn terra.StringValue `hcl:"load_balancer_arn,attr"`
	// Port: number, optional
	Port terra.NumberValue `hcl:"port,attr"`
	// Protocol: string, optional
	Protocol terra.StringValue `hcl:"protocol,attr"`
	// SubnetIds: set of string, optional
	SubnetIds terra.SetValue[terra.StringValue] `hcl:"subnet_ids,attr"`
}

type LoadBalancerOptionsAttributes

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

func (LoadBalancerOptionsAttributes) InternalRef

func (lbo LoadBalancerOptionsAttributes) InternalRef() (terra.Reference, error)

func (LoadBalancerOptionsAttributes) InternalTokens

func (lbo LoadBalancerOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (LoadBalancerOptionsAttributes) InternalWithRef

func (LoadBalancerOptionsAttributes) LoadBalancerArn

func (lbo LoadBalancerOptionsAttributes) LoadBalancerArn() terra.StringValue

func (LoadBalancerOptionsAttributes) Port

func (LoadBalancerOptionsAttributes) Protocol

func (LoadBalancerOptionsAttributes) SubnetIds

type LoadBalancerOptionsState

type LoadBalancerOptionsState struct {
	LoadBalancerArn string   `json:"load_balancer_arn"`
	Port            float64  `json:"port"`
	Protocol        string   `json:"protocol"`
	SubnetIds       []string `json:"subnet_ids"`
}

type NetworkInterfaceOptions

type NetworkInterfaceOptions struct {
	// NetworkInterfaceId: string, optional
	NetworkInterfaceId terra.StringValue `hcl:"network_interface_id,attr"`
	// Port: number, optional
	Port terra.NumberValue `hcl:"port,attr"`
	// Protocol: string, optional
	Protocol terra.StringValue `hcl:"protocol,attr"`
}

type NetworkInterfaceOptionsAttributes

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

func (NetworkInterfaceOptionsAttributes) InternalRef

func (NetworkInterfaceOptionsAttributes) InternalTokens

func (nio NetworkInterfaceOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)

func (NetworkInterfaceOptionsAttributes) InternalWithRef

func (NetworkInterfaceOptionsAttributes) NetworkInterfaceId

func (nio NetworkInterfaceOptionsAttributes) NetworkInterfaceId() terra.StringValue

func (NetworkInterfaceOptionsAttributes) Port

func (NetworkInterfaceOptionsAttributes) Protocol

type NetworkInterfaceOptionsState

type NetworkInterfaceOptionsState struct {
	NetworkInterfaceId string  `json:"network_interface_id"`
	Port               float64 `json:"port"`
	Protocol           string  `json:"protocol"`
}

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_verifiedaccess_endpoint.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (ave *Resource) Attributes() awsVerifiedaccessEndpointAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (ave *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (ave *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (ave *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (ave *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (ave *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (ave *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (ave *Resource) State() (*awsVerifiedaccessEndpointState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (ave *Resource) StateMust() *awsVerifiedaccessEndpointState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (ave *Resource) Type() string

Type returns the Terraform object type for Resource.

type SseSpecification

type SseSpecification struct {
	// CustomerManagedKeyEnabled: bool, optional
	CustomerManagedKeyEnabled terra.BoolValue `hcl:"customer_managed_key_enabled,attr"`
	// KmsKeyArn: string, optional
	KmsKeyArn terra.StringValue `hcl:"kms_key_arn,attr"`
}

type SseSpecificationAttributes

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

func (SseSpecificationAttributes) CustomerManagedKeyEnabled

func (ss SseSpecificationAttributes) CustomerManagedKeyEnabled() terra.BoolValue

func (SseSpecificationAttributes) InternalRef

func (ss SseSpecificationAttributes) InternalRef() (terra.Reference, error)

func (SseSpecificationAttributes) InternalTokens

func (ss SseSpecificationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (SseSpecificationAttributes) InternalWithRef

func (SseSpecificationAttributes) KmsKeyArn

type SseSpecificationState

type SseSpecificationState struct {
	CustomerManagedKeyEnabled bool   `json:"customer_managed_key_enabled"`
	KmsKeyArn                 string `json:"kms_key_arn"`
}

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 (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

func (TimeoutsAttributes) Update

type TimeoutsState

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

Jump to

Keyboard shortcuts

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