Documentation ¶
Index ¶
- type Args
- type DestinationConfiguration
- type DestinationConfigurationAttributes
- func (dc DestinationConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (dc DestinationConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (dc DestinationConfigurationAttributes) InternalWithRef(ref terra.Reference) DestinationConfigurationAttributes
- func (dc DestinationConfigurationAttributes) S3() terra.ListValue[DestinationConfigurationS3Attributes]
- type DestinationConfigurationS3
- type DestinationConfigurationS3Attributes
- func (s DestinationConfigurationS3Attributes) BucketName() terra.StringValue
- func (s DestinationConfigurationS3Attributes) InternalRef() (terra.Reference, error)
- func (s DestinationConfigurationS3Attributes) InternalTokens() (hclwrite.Tokens, error)
- func (s DestinationConfigurationS3Attributes) InternalWithRef(ref terra.Reference) DestinationConfigurationS3Attributes
- type DestinationConfigurationS3State
- type DestinationConfigurationState
- type Resource
- func (airc *Resource) Attributes() awsIvsRecordingConfigurationAttributes
- func (airc *Resource) Configuration() interface{}
- func (airc *Resource) DependOn() terra.Reference
- func (airc *Resource) Dependencies() terra.Dependencies
- func (airc *Resource) ImportState(state io.Reader) error
- func (airc *Resource) LifecycleManagement() *terra.Lifecycle
- func (airc *Resource) LocalName() string
- func (airc *Resource) State() (*awsIvsRecordingConfigurationState, bool)
- func (airc *Resource) StateMust() *awsIvsRecordingConfigurationState
- func (airc *Resource) Type() string
- type ThumbnailConfiguration
- type ThumbnailConfigurationAttributes
- func (tc ThumbnailConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (tc ThumbnailConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (tc ThumbnailConfigurationAttributes) InternalWithRef(ref terra.Reference) ThumbnailConfigurationAttributes
- func (tc ThumbnailConfigurationAttributes) RecordingMode() terra.StringValue
- func (tc ThumbnailConfigurationAttributes) TargetIntervalSeconds() terra.NumberValue
- type ThumbnailConfigurationState
- 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
- type TimeoutsState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, optional Name terra.StringValue `hcl:"name,attr"` // RecordingReconnectWindowSeconds: number, optional RecordingReconnectWindowSeconds terra.NumberValue `hcl:"recording_reconnect_window_seconds,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"` // DestinationConfiguration: required DestinationConfiguration *DestinationConfiguration `hcl:"destination_configuration,block" validate:"required"` // ThumbnailConfiguration: optional ThumbnailConfiguration *ThumbnailConfiguration `hcl:"thumbnail_configuration,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for aws_ivs_recording_configuration.
type DestinationConfiguration ¶
type DestinationConfiguration struct { // DestinationConfigurationS3: required S3 *DestinationConfigurationS3 `hcl:"s3,block" validate:"required"` }
type DestinationConfigurationAttributes ¶
type DestinationConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (DestinationConfigurationAttributes) InternalRef ¶
func (dc DestinationConfigurationAttributes) InternalRef() (terra.Reference, error)
func (DestinationConfigurationAttributes) InternalTokens ¶
func (dc DestinationConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DestinationConfigurationAttributes) InternalWithRef ¶
func (dc DestinationConfigurationAttributes) InternalWithRef(ref terra.Reference) DestinationConfigurationAttributes
type DestinationConfigurationS3 ¶
type DestinationConfigurationS3 struct { // BucketName: string, required BucketName terra.StringValue `hcl:"bucket_name,attr" validate:"required"` }
type DestinationConfigurationS3Attributes ¶
type DestinationConfigurationS3Attributes struct {
// contains filtered or unexported fields
}
func (DestinationConfigurationS3Attributes) BucketName ¶
func (s DestinationConfigurationS3Attributes) BucketName() terra.StringValue
func (DestinationConfigurationS3Attributes) InternalRef ¶
func (s DestinationConfigurationS3Attributes) InternalRef() (terra.Reference, error)
func (DestinationConfigurationS3Attributes) InternalTokens ¶
func (s DestinationConfigurationS3Attributes) InternalTokens() (hclwrite.Tokens, error)
func (DestinationConfigurationS3Attributes) InternalWithRef ¶
func (s DestinationConfigurationS3Attributes) InternalWithRef(ref terra.Reference) DestinationConfigurationS3Attributes
type DestinationConfigurationS3State ¶
type DestinationConfigurationS3State struct {
BucketName string `json:"bucket_name"`
}
type DestinationConfigurationState ¶
type DestinationConfigurationState struct {
S3 []DestinationConfigurationS3State `json:"s3"`
}
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_ivs_recording_configuration.
func (*Resource) Attributes ¶
func (airc *Resource) Attributes() awsIvsRecordingConfigurationAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (airc *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (airc *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 ThumbnailConfiguration ¶
type ThumbnailConfiguration struct { // RecordingMode: string, optional RecordingMode terra.StringValue `hcl:"recording_mode,attr"` // TargetIntervalSeconds: number, optional TargetIntervalSeconds terra.NumberValue `hcl:"target_interval_seconds,attr"` }
type ThumbnailConfigurationAttributes ¶
type ThumbnailConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (ThumbnailConfigurationAttributes) InternalRef ¶
func (tc ThumbnailConfigurationAttributes) InternalRef() (terra.Reference, error)
func (ThumbnailConfigurationAttributes) InternalTokens ¶
func (tc ThumbnailConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ThumbnailConfigurationAttributes) InternalWithRef ¶
func (tc ThumbnailConfigurationAttributes) InternalWithRef(ref terra.Reference) ThumbnailConfigurationAttributes
func (ThumbnailConfigurationAttributes) RecordingMode ¶
func (tc ThumbnailConfigurationAttributes) RecordingMode() terra.StringValue
func (ThumbnailConfigurationAttributes) TargetIntervalSeconds ¶
func (tc ThumbnailConfigurationAttributes) TargetIntervalSeconds() terra.NumberValue
type Timeouts ¶
type Timeouts struct { // Create: string, optional Create terra.StringValue `hcl:"create,attr"` // Delete: string, optional Delete terra.StringValue `hcl:"delete,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
type TimeoutsState ¶
Click to show internal directories.
Click to hide internal directories.