Documentation
¶
Index ¶
- type Args
- type Resource
- func (aagi *Resource) Attributes() awsApiGatewayIntegrationAttributes
- func (aagi *Resource) Configuration() interface{}
- func (aagi *Resource) DependOn() terra.Reference
- func (aagi *Resource) Dependencies() terra.Dependencies
- func (aagi *Resource) ImportState(state io.Reader) error
- func (aagi *Resource) LifecycleManagement() *terra.Lifecycle
- func (aagi *Resource) LocalName() string
- func (aagi *Resource) State() (*awsApiGatewayIntegrationState, bool)
- func (aagi *Resource) StateMust() *awsApiGatewayIntegrationState
- func (aagi *Resource) Type() string
- type TlsConfig
- type TlsConfigAttributes
- func (tc TlsConfigAttributes) InsecureSkipVerification() terra.BoolValue
- func (tc TlsConfigAttributes) InternalRef() (terra.Reference, error)
- func (tc TlsConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (tc TlsConfigAttributes) InternalWithRef(ref terra.Reference) TlsConfigAttributes
- type TlsConfigState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // CacheKeyParameters: set of string, optional CacheKeyParameters terra.SetValue[terra.StringValue] `hcl:"cache_key_parameters,attr"` // CacheNamespace: string, optional CacheNamespace terra.StringValue `hcl:"cache_namespace,attr"` // ConnectionId: string, optional ConnectionId terra.StringValue `hcl:"connection_id,attr"` // ConnectionType: string, optional ConnectionType terra.StringValue `hcl:"connection_type,attr"` // ContentHandling: string, optional ContentHandling terra.StringValue `hcl:"content_handling,attr"` // Credentials: string, optional Credentials terra.StringValue `hcl:"credentials,attr"` // HttpMethod: string, required HttpMethod terra.StringValue `hcl:"http_method,attr" validate:"required"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // IntegrationHttpMethod: string, optional IntegrationHttpMethod terra.StringValue `hcl:"integration_http_method,attr"` // PassthroughBehavior: string, optional PassthroughBehavior terra.StringValue `hcl:"passthrough_behavior,attr"` // RequestParameters: map of string, optional RequestParameters terra.MapValue[terra.StringValue] `hcl:"request_parameters,attr"` // RequestTemplates: map of string, optional RequestTemplates terra.MapValue[terra.StringValue] `hcl:"request_templates,attr"` // ResourceId: string, required ResourceId terra.StringValue `hcl:"resource_id,attr" validate:"required"` // RestApiId: string, required RestApiId terra.StringValue `hcl:"rest_api_id,attr" validate:"required"` // TimeoutMilliseconds: number, optional TimeoutMilliseconds terra.NumberValue `hcl:"timeout_milliseconds,attr"` // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` // Uri: string, optional Uri terra.StringValue `hcl:"uri,attr"` // TlsConfig: optional TlsConfig *TlsConfig `hcl:"tls_config,block"` }
Args contains the configurations for aws_api_gateway_integration.
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_api_gateway_integration.
func (*Resource) Attributes ¶
func (aagi *Resource) Attributes() awsApiGatewayIntegrationAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (aagi *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (aagi *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 TlsConfigAttributes ¶
type TlsConfigAttributes struct {
// contains filtered or unexported fields
}
func (TlsConfigAttributes) InsecureSkipVerification ¶
func (tc TlsConfigAttributes) InsecureSkipVerification() terra.BoolValue
func (TlsConfigAttributes) InternalRef ¶
func (tc TlsConfigAttributes) InternalRef() (terra.Reference, error)
func (TlsConfigAttributes) InternalTokens ¶
func (tc TlsConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (TlsConfigAttributes) InternalWithRef ¶
func (tc TlsConfigAttributes) InternalWithRef(ref terra.Reference) TlsConfigAttributes
type TlsConfigState ¶
type TlsConfigState struct {
InsecureSkipVerification bool `json:"insecure_skip_verification"`
}
Click to show internal directories.
Click to hide internal directories.