Documentation ¶
Index ¶
- type Args
- type AuthorizerConfig
- type AuthorizerConfigAttributes
- func (ac AuthorizerConfigAttributes) AllowAuthorizerOverride() terra.BoolValue
- func (ac AuthorizerConfigAttributes) DefaultAuthorizerName() terra.StringValue
- func (ac AuthorizerConfigAttributes) InternalRef() (terra.Reference, error)
- func (ac AuthorizerConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ac AuthorizerConfigAttributes) InternalWithRef(ref terra.Reference) AuthorizerConfigAttributes
- type AuthorizerConfigState
- type Resource
- func (aidc *Resource) Attributes() awsIotDomainConfigurationAttributes
- func (aidc *Resource) Configuration() interface{}
- func (aidc *Resource) DependOn() terra.Reference
- func (aidc *Resource) Dependencies() terra.Dependencies
- func (aidc *Resource) ImportState(state io.Reader) error
- func (aidc *Resource) LifecycleManagement() *terra.Lifecycle
- func (aidc *Resource) LocalName() string
- func (aidc *Resource) State() (*awsIotDomainConfigurationState, bool)
- func (aidc *Resource) StateMust() *awsIotDomainConfigurationState
- func (aidc *Resource) Type() string
- type TlsConfig
- type TlsConfigAttributes
- type TlsConfigState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // DomainName: string, optional DomainName terra.StringValue `hcl:"domain_name,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // ServerCertificateArns: set of string, optional ServerCertificateArns terra.SetValue[terra.StringValue] `hcl:"server_certificate_arns,attr"` // ServiceType: string, optional ServiceType terra.StringValue `hcl:"service_type,attr"` // Status: string, optional Status terra.StringValue `hcl:"status,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"` // ValidationCertificateArn: string, optional ValidationCertificateArn terra.StringValue `hcl:"validation_certificate_arn,attr"` // AuthorizerConfig: optional AuthorizerConfig *AuthorizerConfig `hcl:"authorizer_config,block"` // TlsConfig: optional TlsConfig *TlsConfig `hcl:"tls_config,block"` }
Args contains the configurations for aws_iot_domain_configuration.
type AuthorizerConfig ¶
type AuthorizerConfig struct { // AllowAuthorizerOverride: bool, optional AllowAuthorizerOverride terra.BoolValue `hcl:"allow_authorizer_override,attr"` // DefaultAuthorizerName: string, optional DefaultAuthorizerName terra.StringValue `hcl:"default_authorizer_name,attr"` }
type AuthorizerConfigAttributes ¶
type AuthorizerConfigAttributes struct {
// contains filtered or unexported fields
}
func (AuthorizerConfigAttributes) AllowAuthorizerOverride ¶
func (ac AuthorizerConfigAttributes) AllowAuthorizerOverride() terra.BoolValue
func (AuthorizerConfigAttributes) DefaultAuthorizerName ¶
func (ac AuthorizerConfigAttributes) DefaultAuthorizerName() terra.StringValue
func (AuthorizerConfigAttributes) InternalRef ¶
func (ac AuthorizerConfigAttributes) InternalRef() (terra.Reference, error)
func (AuthorizerConfigAttributes) InternalTokens ¶
func (ac AuthorizerConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AuthorizerConfigAttributes) InternalWithRef ¶
func (ac AuthorizerConfigAttributes) InternalWithRef(ref terra.Reference) AuthorizerConfigAttributes
type AuthorizerConfigState ¶
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_iot_domain_configuration.
func (*Resource) Attributes ¶
func (aidc *Resource) Attributes() awsIotDomainConfigurationAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (aidc *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (aidc *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 TlsConfig ¶
type TlsConfig struct { // SecurityPolicy: string, optional SecurityPolicy terra.StringValue `hcl:"security_policy,attr"` }
type TlsConfigAttributes ¶
type TlsConfigAttributes struct {
// contains filtered or unexported fields
}
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
func (TlsConfigAttributes) SecurityPolicy ¶
func (tc TlsConfigAttributes) SecurityPolicy() terra.StringValue
type TlsConfigState ¶
type TlsConfigState struct {
SecurityPolicy string `json:"security_policy"`
}
Click to show internal directories.
Click to hide internal directories.