Documentation
¶
Index ¶
- type Args
- type ComputeCapacity
- type ComputeCapacityAttributes
- func (cc ComputeCapacityAttributes) Available() terra.NumberValue
- func (cc ComputeCapacityAttributes) DesiredInstances() terra.NumberValue
- func (cc ComputeCapacityAttributes) InUse() terra.NumberValue
- func (cc ComputeCapacityAttributes) InternalRef() (terra.Reference, error)
- func (cc ComputeCapacityAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (cc ComputeCapacityAttributes) InternalWithRef(ref terra.Reference) ComputeCapacityAttributes
- func (cc ComputeCapacityAttributes) Running() terra.NumberValue
- type ComputeCapacityState
- type DomainJoinInfo
- type DomainJoinInfoAttributes
- func (dji DomainJoinInfoAttributes) DirectoryName() terra.StringValue
- func (dji DomainJoinInfoAttributes) InternalRef() (terra.Reference, error)
- func (dji DomainJoinInfoAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (dji DomainJoinInfoAttributes) InternalWithRef(ref terra.Reference) DomainJoinInfoAttributes
- func (dji DomainJoinInfoAttributes) OrganizationalUnitDistinguishedName() terra.StringValue
- type DomainJoinInfoState
- type Resource
- func (aaf *Resource) Attributes() awsAppstreamFleetAttributes
- func (aaf *Resource) Configuration() interface{}
- func (aaf *Resource) DependOn() terra.Reference
- func (aaf *Resource) Dependencies() terra.Dependencies
- func (aaf *Resource) ImportState(state io.Reader) error
- func (aaf *Resource) LifecycleManagement() *terra.Lifecycle
- func (aaf *Resource) LocalName() string
- func (aaf *Resource) State() (*awsAppstreamFleetState, bool)
- func (aaf *Resource) StateMust() *awsAppstreamFleetState
- func (aaf *Resource) Type() string
- type VpcConfig
- type VpcConfigAttributes
- func (vc VpcConfigAttributes) InternalRef() (terra.Reference, error)
- func (vc VpcConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (vc VpcConfigAttributes) InternalWithRef(ref terra.Reference) VpcConfigAttributes
- func (vc VpcConfigAttributes) SecurityGroupIds() terra.ListValue[terra.StringValue]
- func (vc VpcConfigAttributes) SubnetIds() terra.ListValue[terra.StringValue]
- type VpcConfigState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // DisconnectTimeoutInSeconds: number, optional DisconnectTimeoutInSeconds terra.NumberValue `hcl:"disconnect_timeout_in_seconds,attr"` // DisplayName: string, optional DisplayName terra.StringValue `hcl:"display_name,attr"` // EnableDefaultInternetAccess: bool, optional EnableDefaultInternetAccess terra.BoolValue `hcl:"enable_default_internet_access,attr"` // FleetType: string, optional FleetType terra.StringValue `hcl:"fleet_type,attr"` // IamRoleArn: string, optional IamRoleArn terra.StringValue `hcl:"iam_role_arn,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // IdleDisconnectTimeoutInSeconds: number, optional IdleDisconnectTimeoutInSeconds terra.NumberValue `hcl:"idle_disconnect_timeout_in_seconds,attr"` // ImageArn: string, optional ImageArn terra.StringValue `hcl:"image_arn,attr"` // ImageName: string, optional ImageName terra.StringValue `hcl:"image_name,attr"` // InstanceType: string, required InstanceType terra.StringValue `hcl:"instance_type,attr" validate:"required"` // MaxUserDurationInSeconds: number, optional MaxUserDurationInSeconds terra.NumberValue `hcl:"max_user_duration_in_seconds,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // StreamView: string, optional StreamView terra.StringValue `hcl:"stream_view,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"` // ComputeCapacity: required ComputeCapacity *ComputeCapacity `hcl:"compute_capacity,block" validate:"required"` // DomainJoinInfo: optional DomainJoinInfo *DomainJoinInfo `hcl:"domain_join_info,block"` // VpcConfig: optional VpcConfig *VpcConfig `hcl:"vpc_config,block"` }
Args contains the configurations for aws_appstream_fleet.
type ComputeCapacity ¶
type ComputeCapacity struct { // DesiredInstances: number, required DesiredInstances terra.NumberValue `hcl:"desired_instances,attr" validate:"required"` }
type ComputeCapacityAttributes ¶
type ComputeCapacityAttributes struct {
// contains filtered or unexported fields
}
func (ComputeCapacityAttributes) Available ¶
func (cc ComputeCapacityAttributes) Available() terra.NumberValue
func (ComputeCapacityAttributes) DesiredInstances ¶
func (cc ComputeCapacityAttributes) DesiredInstances() terra.NumberValue
func (ComputeCapacityAttributes) InUse ¶
func (cc ComputeCapacityAttributes) InUse() terra.NumberValue
func (ComputeCapacityAttributes) InternalRef ¶
func (cc ComputeCapacityAttributes) InternalRef() (terra.Reference, error)
func (ComputeCapacityAttributes) InternalTokens ¶
func (cc ComputeCapacityAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ComputeCapacityAttributes) InternalWithRef ¶
func (cc ComputeCapacityAttributes) InternalWithRef(ref terra.Reference) ComputeCapacityAttributes
func (ComputeCapacityAttributes) Running ¶
func (cc ComputeCapacityAttributes) Running() terra.NumberValue
type ComputeCapacityState ¶
type DomainJoinInfo ¶
type DomainJoinInfo struct { // DirectoryName: string, optional DirectoryName terra.StringValue `hcl:"directory_name,attr"` // OrganizationalUnitDistinguishedName: string, optional OrganizationalUnitDistinguishedName terra.StringValue `hcl:"organizational_unit_distinguished_name,attr"` }
type DomainJoinInfoAttributes ¶
type DomainJoinInfoAttributes struct {
// contains filtered or unexported fields
}
func (DomainJoinInfoAttributes) DirectoryName ¶
func (dji DomainJoinInfoAttributes) DirectoryName() terra.StringValue
func (DomainJoinInfoAttributes) InternalRef ¶
func (dji DomainJoinInfoAttributes) InternalRef() (terra.Reference, error)
func (DomainJoinInfoAttributes) InternalTokens ¶
func (dji DomainJoinInfoAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DomainJoinInfoAttributes) InternalWithRef ¶
func (dji DomainJoinInfoAttributes) InternalWithRef(ref terra.Reference) DomainJoinInfoAttributes
func (DomainJoinInfoAttributes) OrganizationalUnitDistinguishedName ¶
func (dji DomainJoinInfoAttributes) OrganizationalUnitDistinguishedName() terra.StringValue
type DomainJoinInfoState ¶
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_appstream_fleet.
func (*Resource) Attributes ¶
func (aaf *Resource) Attributes() awsAppstreamFleetAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (aaf *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (aaf *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 VpcConfig ¶
type VpcConfig struct { // SecurityGroupIds: list of string, optional SecurityGroupIds terra.ListValue[terra.StringValue] `hcl:"security_group_ids,attr"` // SubnetIds: list of string, optional SubnetIds terra.ListValue[terra.StringValue] `hcl:"subnet_ids,attr"` }
type VpcConfigAttributes ¶
type VpcConfigAttributes struct {
// contains filtered or unexported fields
}
func (VpcConfigAttributes) InternalRef ¶
func (vc VpcConfigAttributes) InternalRef() (terra.Reference, error)
func (VpcConfigAttributes) InternalTokens ¶
func (vc VpcConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (VpcConfigAttributes) InternalWithRef ¶
func (vc VpcConfigAttributes) InternalWithRef(ref terra.Reference) VpcConfigAttributes
func (VpcConfigAttributes) SecurityGroupIds ¶
func (vc VpcConfigAttributes) SecurityGroupIds() terra.ListValue[terra.StringValue]
func (VpcConfigAttributes) SubnetIds ¶
func (vc VpcConfigAttributes) SubnetIds() terra.ListValue[terra.StringValue]
type VpcConfigState ¶
Click to show internal directories.
Click to hide internal directories.