aws_cloudwatch_metric_stream

package
v5.45.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2024 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Args

type Args struct {
	// FirehoseArn: string, required
	FirehoseArn terra.StringValue `hcl:"firehose_arn,attr" validate:"required"`
	// Id: string, optional
	Id terra.StringValue `hcl:"id,attr"`
	// Name: string, optional
	Name terra.StringValue `hcl:"name,attr"`
	// NamePrefix: string, optional
	NamePrefix terra.StringValue `hcl:"name_prefix,attr"`
	// OutputFormat: string, required
	OutputFormat terra.StringValue `hcl:"output_format,attr" validate:"required"`
	// RoleArn: string, required
	RoleArn terra.StringValue `hcl:"role_arn,attr" validate:"required"`
	// 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"`
	// ExcludeFilter: min=0
	ExcludeFilter []ExcludeFilter `hcl:"exclude_filter,block" validate:"min=0"`
	// IncludeFilter: min=0
	IncludeFilter []IncludeFilter `hcl:"include_filter,block" validate:"min=0"`
	// StatisticsConfiguration: min=0
	StatisticsConfiguration []StatisticsConfiguration `hcl:"statistics_configuration,block" validate:"min=0"`
	// Timeouts: optional
	Timeouts *Timeouts `hcl:"timeouts,block"`
}

Args contains the configurations for aws_cloudwatch_metric_stream.

type ExcludeFilter

type ExcludeFilter struct {
	// Namespace: string, required
	Namespace terra.StringValue `hcl:"namespace,attr" validate:"required"`
}

type ExcludeFilterAttributes

type ExcludeFilterAttributes struct {
	// contains filtered or unexported fields
}

func (ExcludeFilterAttributes) InternalRef

func (ef ExcludeFilterAttributes) InternalRef() (terra.Reference, error)

func (ExcludeFilterAttributes) InternalTokens

func (ef ExcludeFilterAttributes) InternalTokens() (hclwrite.Tokens, error)

func (ExcludeFilterAttributes) InternalWithRef

func (ExcludeFilterAttributes) Namespace

func (ef ExcludeFilterAttributes) Namespace() terra.StringValue

type ExcludeFilterState

type ExcludeFilterState struct {
	Namespace string `json:"namespace"`
}

type IncludeFilter

type IncludeFilter struct {
	// Namespace: string, required
	Namespace terra.StringValue `hcl:"namespace,attr" validate:"required"`
}

type IncludeFilterAttributes

type IncludeFilterAttributes struct {
	// contains filtered or unexported fields
}

func (IncludeFilterAttributes) InternalRef

func (_if IncludeFilterAttributes) InternalRef() (terra.Reference, error)

func (IncludeFilterAttributes) InternalTokens

func (_if IncludeFilterAttributes) InternalTokens() (hclwrite.Tokens, error)

func (IncludeFilterAttributes) InternalWithRef

func (IncludeFilterAttributes) Namespace

func (_if IncludeFilterAttributes) Namespace() terra.StringValue

type IncludeFilterState

type IncludeFilterState struct {
	Namespace string `json:"namespace"`
}

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_cloudwatch_metric_stream.

func New

func New(name string, args Args) *Resource

New creates a new instance of Resource.

func (*Resource) Attributes

func (acms *Resource) Attributes() awsCloudwatchMetricStreamAttributes

Attributes returns the attributes for Resource.

func (*Resource) Configuration

func (acms *Resource) Configuration() interface{}

Configuration returns the configuration (args) for Resource.

func (*Resource) DependOn

func (acms *Resource) DependOn() terra.Reference

DependOn is used for other resources to depend on Resource.

func (*Resource) Dependencies

func (acms *Resource) Dependencies() terra.Dependencies

Dependencies returns the list of resources Resource depends_on.

func (*Resource) ImportState

func (acms *Resource) ImportState(state io.Reader) error

ImportState imports the given attribute values into Resource's state.

func (*Resource) LifecycleManagement

func (acms *Resource) LifecycleManagement() *terra.Lifecycle

LifecycleManagement returns the lifecycle block for Resource.

func (*Resource) LocalName

func (acms *Resource) LocalName() string

LocalName returns the local name for Resource.

func (*Resource) State

func (acms *Resource) State() (*awsCloudwatchMetricStreamState, bool)

State returns the state and a bool indicating if Resource has state.

func (*Resource) StateMust

func (acms *Resource) StateMust() *awsCloudwatchMetricStreamState

StateMust returns the state for Resource. Panics if the state is nil.

func (*Resource) Type

func (acms *Resource) Type() string

Type returns the Terraform object type for Resource.

type StatisticsConfiguration

type StatisticsConfiguration struct {
	// AdditionalStatistics: set of string, required
	AdditionalStatistics terra.SetValue[terra.StringValue] `hcl:"additional_statistics,attr" validate:"required"`
	// StatisticsConfigurationIncludeMetric: min=1
	IncludeMetric []StatisticsConfigurationIncludeMetric `hcl:"include_metric,block" validate:"min=1"`
}

type StatisticsConfigurationAttributes

type StatisticsConfigurationAttributes struct {
	// contains filtered or unexported fields
}

func (StatisticsConfigurationAttributes) AdditionalStatistics

func (StatisticsConfigurationAttributes) IncludeMetric

func (StatisticsConfigurationAttributes) InternalRef

func (StatisticsConfigurationAttributes) InternalTokens

func (sc StatisticsConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)

func (StatisticsConfigurationAttributes) InternalWithRef

type StatisticsConfigurationIncludeMetric

type StatisticsConfigurationIncludeMetric struct {
	// MetricName: string, required
	MetricName terra.StringValue `hcl:"metric_name,attr" validate:"required"`
	// Namespace: string, required
	Namespace terra.StringValue `hcl:"namespace,attr" validate:"required"`
}

type StatisticsConfigurationIncludeMetricAttributes

type StatisticsConfigurationIncludeMetricAttributes struct {
	// contains filtered or unexported fields
}

func (StatisticsConfigurationIncludeMetricAttributes) InternalRef

func (StatisticsConfigurationIncludeMetricAttributes) InternalTokens

func (StatisticsConfigurationIncludeMetricAttributes) InternalWithRef

func (StatisticsConfigurationIncludeMetricAttributes) MetricName

func (StatisticsConfigurationIncludeMetricAttributes) Namespace

type StatisticsConfigurationIncludeMetricState

type StatisticsConfigurationIncludeMetricState struct {
	MetricName string `json:"metric_name"`
	Namespace  string `json:"namespace"`
}

type StatisticsConfigurationState

type StatisticsConfigurationState struct {
	AdditionalStatistics []string                                    `json:"additional_statistics"`
	IncludeMetric        []StatisticsConfigurationIncludeMetricState `json:"include_metric"`
}

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 (TimeoutsAttributes) Delete

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

type TimeoutsState struct {
	Create string `json:"create"`
	Delete string `json:"delete"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL