Documentation ¶
Index ¶
- type ExportConfig
- type ExportConfigAttributes
- func (ec ExportConfigAttributes) InternalRef() (terra.Reference, error)
- func (ec ExportConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ec ExportConfigAttributes) InternalWithRef(ref terra.Reference) ExportConfigAttributes
- func (ec ExportConfigAttributes) S3Destination() terra.ListValue[S3DestinationAttributes]
- func (ec ExportConfigAttributes) Type() terra.StringValue
- type ExportConfigState
- type S3Destination
- type S3DestinationAttributes
- func (sd S3DestinationAttributes) Bucket() terra.StringValue
- func (sd S3DestinationAttributes) EncryptionDisabled() terra.BoolValue
- func (sd S3DestinationAttributes) EncryptionKey() terra.StringValue
- func (sd S3DestinationAttributes) InternalRef() (terra.Reference, error)
- func (sd S3DestinationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (sd S3DestinationAttributes) InternalWithRef(ref terra.Reference) S3DestinationAttributes
- func (sd S3DestinationAttributes) Packaging() terra.StringValue
- func (sd S3DestinationAttributes) Path() terra.StringValue
- type S3DestinationState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ExportConfig ¶
type ExportConfig struct { // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` // S3Destination: optional S3Destination *S3Destination `hcl:"s3_destination,block"` }
type ExportConfigAttributes ¶
type ExportConfigAttributes struct {
// contains filtered or unexported fields
}
func (ExportConfigAttributes) InternalRef ¶
func (ec ExportConfigAttributes) InternalRef() (terra.Reference, error)
func (ExportConfigAttributes) InternalTokens ¶
func (ec ExportConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ExportConfigAttributes) InternalWithRef ¶
func (ec ExportConfigAttributes) InternalWithRef(ref terra.Reference) ExportConfigAttributes
func (ExportConfigAttributes) S3Destination ¶
func (ec ExportConfigAttributes) S3Destination() terra.ListValue[S3DestinationAttributes]
func (ExportConfigAttributes) Type ¶
func (ec ExportConfigAttributes) Type() terra.StringValue
type ExportConfigState ¶
type ExportConfigState struct { Type string `json:"type"` S3Destination []S3DestinationState `json:"s3_destination"` }
type S3Destination ¶
type S3Destination struct { // Bucket: string, required Bucket terra.StringValue `hcl:"bucket,attr" validate:"required"` // EncryptionDisabled: bool, optional EncryptionDisabled terra.BoolValue `hcl:"encryption_disabled,attr"` // EncryptionKey: string, required EncryptionKey terra.StringValue `hcl:"encryption_key,attr" validate:"required"` // Packaging: string, optional Packaging terra.StringValue `hcl:"packaging,attr"` // Path: string, optional Path terra.StringValue `hcl:"path,attr"` }
type S3DestinationAttributes ¶
type S3DestinationAttributes struct {
// contains filtered or unexported fields
}
func (S3DestinationAttributes) Bucket ¶
func (sd S3DestinationAttributes) Bucket() terra.StringValue
func (S3DestinationAttributes) EncryptionDisabled ¶
func (sd S3DestinationAttributes) EncryptionDisabled() terra.BoolValue
func (S3DestinationAttributes) EncryptionKey ¶
func (sd S3DestinationAttributes) EncryptionKey() terra.StringValue
func (S3DestinationAttributes) InternalRef ¶
func (sd S3DestinationAttributes) InternalRef() (terra.Reference, error)
func (S3DestinationAttributes) InternalTokens ¶
func (sd S3DestinationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (S3DestinationAttributes) InternalWithRef ¶
func (sd S3DestinationAttributes) InternalWithRef(ref terra.Reference) S3DestinationAttributes
func (S3DestinationAttributes) Packaging ¶
func (sd S3DestinationAttributes) Packaging() terra.StringValue
func (S3DestinationAttributes) Path ¶
func (sd S3DestinationAttributes) Path() terra.StringValue
Click to show internal directories.
Click to hide internal directories.