v1beta1

package
v0.31.16 Latest Latest
Warning

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

Go to latest
Published: Jun 12, 2023 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=firehose.aws.upbound.io +versionName=v1beta1

Index

Constants

View Source
const (
	CRDGroup   = "firehose.aws.upbound.io"
	CRDVersion = "v1beta1"
)

Package type metadata.

Variables

View Source
var (
	DeliveryStream_Kind             = "DeliveryStream"
	DeliveryStream_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: DeliveryStream_Kind}.String()
	DeliveryStream_KindAPIVersion   = DeliveryStream_Kind + "." + CRDGroupVersion.String()
	DeliveryStream_GroupVersionKind = CRDGroupVersion.WithKind(DeliveryStream_Kind)
)

Repository type metadata.

View Source
var (
	// CRDGroupVersion is the API Group Version used to register the objects
	CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion}

	// SchemeBuilder is used to add go types to the GroupVersionKind scheme
	SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion}

	// AddToScheme adds the types in this group-version to the given scheme.
	AddToScheme = SchemeBuilder.AddToScheme
)

Functions

This section is empty.

Types

type CloudwatchLoggingOptionsObservation

type CloudwatchLoggingOptionsObservation struct {
}

func (*CloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudwatchLoggingOptionsObservation.

func (*CloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type CloudwatchLoggingOptionsParameters

type CloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*CloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CloudwatchLoggingOptionsParameters.

func (*CloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type CommonAttributesObservation

type CommonAttributesObservation struct {
}

func (*CommonAttributesObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonAttributesObservation.

func (*CommonAttributesObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type CommonAttributesParameters

type CommonAttributesParameters struct {

	// The HTTP endpoint name.
	// +kubebuilder:validation:Required
	Name *string `json:"name" tf:"name,omitempty"`

	// The value of the HTTP endpoint common attribute.
	// +kubebuilder:validation:Required
	Value *string `json:"value" tf:"value,omitempty"`
}

func (*CommonAttributesParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CommonAttributesParameters.

func (*CommonAttributesParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DataFormatConversionConfigurationObservation

type DataFormatConversionConfigurationObservation struct {
}

func (*DataFormatConversionConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataFormatConversionConfigurationObservation.

func (*DataFormatConversionConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DataFormatConversionConfigurationParameters

type DataFormatConversionConfigurationParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Nested argument that specifies the deserializer that you want Kinesis Data Firehose to use to convert the format of your data from JSON. More details below.
	// +kubebuilder:validation:Required
	InputFormatConfiguration []InputFormatConfigurationParameters `json:"inputFormatConfiguration" tf:"input_format_configuration,omitempty"`

	// Nested argument that specifies the serializer that you want Kinesis Data Firehose to use to convert the format of your data to the Parquet or ORC format. More details below.
	// +kubebuilder:validation:Required
	OutputFormatConfiguration []OutputFormatConfigurationParameters `json:"outputFormatConfiguration" tf:"output_format_configuration,omitempty"`

	// Nested argument that specifies the AWS Glue Data Catalog table that contains the column information. More details below.
	// +kubebuilder:validation:Required
	SchemaConfiguration []SchemaConfigurationParameters `json:"schemaConfiguration" tf:"schema_configuration,omitempty"`
}

func (*DataFormatConversionConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DataFormatConversionConfigurationParameters.

func (*DataFormatConversionConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DeliveryStream

type DeliveryStream struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              DeliveryStreamSpec   `json:"spec"`
	Status            DeliveryStreamStatus `json:"status,omitempty"`
}

DeliveryStream is the Schema for the DeliveryStreams API. Provides a AWS Kinesis Firehose Delivery Stream +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,aws}

func (*DeliveryStream) DeepCopy

func (in *DeliveryStream) DeepCopy() *DeliveryStream

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryStream.

func (*DeliveryStream) DeepCopyInto

func (in *DeliveryStream) DeepCopyInto(out *DeliveryStream)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DeliveryStream) DeepCopyObject

func (in *DeliveryStream) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*DeliveryStream) GetCondition

func (mg *DeliveryStream) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this DeliveryStream.

func (*DeliveryStream) GetConnectionDetailsMapping

func (tr *DeliveryStream) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this DeliveryStream

func (*DeliveryStream) GetDeletionPolicy

func (mg *DeliveryStream) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this DeliveryStream.

func (*DeliveryStream) GetID

func (tr *DeliveryStream) GetID() string

GetID returns ID of underlying Terraform resource of this DeliveryStream

func (*DeliveryStream) GetObservation

func (tr *DeliveryStream) GetObservation() (map[string]any, error)

GetObservation of this DeliveryStream

func (*DeliveryStream) GetParameters

func (tr *DeliveryStream) GetParameters() (map[string]any, error)

GetParameters of this DeliveryStream

func (*DeliveryStream) GetProviderConfigReference

func (mg *DeliveryStream) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this DeliveryStream.

func (*DeliveryStream) GetProviderReference

func (mg *DeliveryStream) GetProviderReference() *xpv1.Reference

GetProviderReference of this DeliveryStream. Deprecated: Use GetProviderConfigReference.

func (*DeliveryStream) GetPublishConnectionDetailsTo

func (mg *DeliveryStream) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this DeliveryStream.

func (*DeliveryStream) GetTerraformResourceType

func (mg *DeliveryStream) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this DeliveryStream

func (*DeliveryStream) GetTerraformSchemaVersion

func (tr *DeliveryStream) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*DeliveryStream) GetWriteConnectionSecretToReference

func (mg *DeliveryStream) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this DeliveryStream.

func (*DeliveryStream) LateInitialize

func (tr *DeliveryStream) LateInitialize(attrs []byte) (bool, error)

LateInitialize this DeliveryStream using its observed tfState. returns True if there are any spec changes for the resource.

func (*DeliveryStream) ResolveReferences

func (mg *DeliveryStream) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this DeliveryStream.

func (*DeliveryStream) SetConditions

func (mg *DeliveryStream) SetConditions(c ...xpv1.Condition)

SetConditions of this DeliveryStream.

func (*DeliveryStream) SetDeletionPolicy

func (mg *DeliveryStream) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this DeliveryStream.

func (*DeliveryStream) SetObservation

func (tr *DeliveryStream) SetObservation(obs map[string]any) error

SetObservation for this DeliveryStream

func (*DeliveryStream) SetParameters

func (tr *DeliveryStream) SetParameters(params map[string]any) error

SetParameters for this DeliveryStream

func (*DeliveryStream) SetProviderConfigReference

func (mg *DeliveryStream) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this DeliveryStream.

func (*DeliveryStream) SetProviderReference

func (mg *DeliveryStream) SetProviderReference(r *xpv1.Reference)

SetProviderReference of this DeliveryStream. Deprecated: Use SetProviderConfigReference.

func (*DeliveryStream) SetPublishConnectionDetailsTo

func (mg *DeliveryStream) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this DeliveryStream.

func (*DeliveryStream) SetWriteConnectionSecretToReference

func (mg *DeliveryStream) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this DeliveryStream.

type DeliveryStreamList

type DeliveryStreamList struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []DeliveryStream `json:"items"`
}

DeliveryStreamList contains a list of DeliveryStreams

func (*DeliveryStreamList) DeepCopy

func (in *DeliveryStreamList) DeepCopy() *DeliveryStreamList

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryStreamList.

func (*DeliveryStreamList) DeepCopyInto

func (in *DeliveryStreamList) DeepCopyInto(out *DeliveryStreamList)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*DeliveryStreamList) DeepCopyObject

func (in *DeliveryStreamList) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*DeliveryStreamList) GetItems

func (l *DeliveryStreamList) GetItems() []resource.Managed

GetItems of this DeliveryStreamList.

type DeliveryStreamObservation

type DeliveryStreamObservation struct {

	// Configuration options if elasticsearch is the destination. More details are given below.
	// +kubebuilder:validation:Optional
	ElasticsearchConfiguration []ElasticsearchConfigurationObservation `json:"elasticsearchConfiguration,omitempty" tf:"elasticsearch_configuration,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.
	TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"`
}

func (*DeliveryStreamObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryStreamObservation.

func (*DeliveryStreamObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DeliveryStreamParameters

type DeliveryStreamParameters struct {

	// The Amazon Resource Name (ARN) specifying the Stream
	// +kubebuilder:validation:Optional
	Arn *string `json:"arn,omitempty" tf:"arn,omitempty"`

	// –  This is the destination to where the data is delivered. The only options are s3 (Deprecated, use extended_s3 instead), extended_s3, redshift, elasticsearch, splunk, and http_endpoint.
	// +kubebuilder:validation:Required
	Destination *string `json:"destination" tf:"destination,omitempty"`

	// +kubebuilder:validation:Optional
	DestinationID *string `json:"destinationId,omitempty" tf:"destination_id,omitempty"`

	// Configuration options if elasticsearch is the destination. More details are given below.
	// +kubebuilder:validation:Optional
	ElasticsearchConfiguration []ElasticsearchConfigurationParameters `json:"elasticsearchConfiguration,omitempty" tf:"elasticsearch_configuration,omitempty"`

	// Enhanced configuration options for the s3 destination. More details are given below.
	// +kubebuilder:validation:Optional
	ExtendedS3Configuration []ExtendedS3ConfigurationParameters `json:"extendedS3Configuration,omitempty" tf:"extended_s3_configuration,omitempty"`

	// Configuration options if http_endpoint is the destination. requires the user to also specify a s3_configuration block.  More details are given below.
	// +kubebuilder:validation:Optional
	HTTPEndpointConfiguration []HTTPEndpointConfigurationParameters `json:"httpEndpointConfiguration,omitempty" tf:"http_endpoint_configuration,omitempty"`

	// Allows the ability to specify the kinesis stream that is used as the source of the firehose delivery stream.
	// +kubebuilder:validation:Optional
	KinesisSourceConfiguration []KinesisSourceConfigurationParameters `json:"kinesisSourceConfiguration,omitempty" tf:"kinesis_source_configuration,omitempty"`

	// A name to identify the stream. This is unique to the AWS account and region the Stream is created in. When using for WAF logging, name must be prefixed with aws-waf-logs-. See AWS Documentation for more details.
	// +kubebuilder:validation:Required
	Name *string `json:"name" tf:"name,omitempty"`

	// Configuration options if redshift is the destination.
	// Using redshift_configuration requires the user to also specify a
	// s3_configuration block. More details are given below.
	// +kubebuilder:validation:Optional
	RedshiftConfiguration []RedshiftConfigurationParameters `json:"redshiftConfiguration,omitempty" tf:"redshift_configuration,omitempty"`

	// If you don't specify an AWS Region, the default is the current region.
	// Region is the region you'd like your resource to be created in.
	// +upjet:crd:field:TFTag=-
	// +kubebuilder:validation:Required
	Region *string `json:"region" tf:"-"`

	// Required for non-S3 destinations. For S3 destination, use extended_s3_configuration instead. Configuration options for the s3 destination (or the intermediate bucket if the destination
	// is redshift). More details are given below.
	// +kubebuilder:validation:Optional
	S3Configuration []S3ConfigurationParameters `json:"s3Configuration,omitempty" tf:"s3_configuration,omitempty"`

	// Encrypt at rest options.
	// Server-side encryption should not be enabled when a kinesis stream is configured as the source of the firehose delivery stream.
	// +kubebuilder:validation:Optional
	ServerSideEncryption []ServerSideEncryptionParameters `json:"serverSideEncryption,omitempty" tf:"server_side_encryption,omitempty"`

	// Configuration options if splunk is the destination. More details are given below.
	// +kubebuilder:validation:Optional
	SplunkConfiguration []SplunkConfigurationParameters `json:"splunkConfiguration,omitempty" tf:"splunk_configuration,omitempty"`

	// Key-value map of resource tags.
	// +kubebuilder:validation:Optional
	Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"`

	// Specifies the table version for the output data schema. Defaults to LATEST.
	// +kubebuilder:validation:Optional
	VersionID *string `json:"versionId,omitempty" tf:"version_id,omitempty"`
}

func (*DeliveryStreamParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryStreamParameters.

func (*DeliveryStreamParameters) DeepCopyInto

func (in *DeliveryStreamParameters) DeepCopyInto(out *DeliveryStreamParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DeliveryStreamSpec

type DeliveryStreamSpec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     DeliveryStreamParameters `json:"forProvider"`
}

DeliveryStreamSpec defines the desired state of DeliveryStream

func (*DeliveryStreamSpec) DeepCopy

func (in *DeliveryStreamSpec) DeepCopy() *DeliveryStreamSpec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryStreamSpec.

func (*DeliveryStreamSpec) DeepCopyInto

func (in *DeliveryStreamSpec) DeepCopyInto(out *DeliveryStreamSpec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DeliveryStreamStatus

type DeliveryStreamStatus struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        DeliveryStreamObservation `json:"atProvider,omitempty"`
}

DeliveryStreamStatus defines the observed state of DeliveryStream.

func (*DeliveryStreamStatus) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeliveryStreamStatus.

func (*DeliveryStreamStatus) DeepCopyInto

func (in *DeliveryStreamStatus) DeepCopyInto(out *DeliveryStreamStatus)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DeserializerObservation

type DeserializerObservation struct {
}

func (*DeserializerObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeserializerObservation.

func (*DeserializerObservation) DeepCopyInto

func (in *DeserializerObservation) DeepCopyInto(out *DeserializerObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DeserializerParameters

type DeserializerParameters struct {

	// Nested argument that specifies the native Hive / HCatalog JsonSerDe. More details below.
	// +kubebuilder:validation:Optional
	HiveJSONSerDe []HiveJSONSerDeParameters `json:"hiveJsonSerDe,omitempty" tf:"hive_json_ser_de,omitempty"`

	// Nested argument that specifies the OpenX SerDe. More details below.
	// +kubebuilder:validation:Optional
	OpenXJSONSerDe []OpenXJSONSerDeParameters `json:"openXJsonSerDe,omitempty" tf:"open_x_json_ser_de,omitempty"`
}

func (*DeserializerParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DeserializerParameters.

func (*DeserializerParameters) DeepCopyInto

func (in *DeserializerParameters) DeepCopyInto(out *DeserializerParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DynamicPartitioningConfigurationObservation

type DynamicPartitioningConfigurationObservation struct {
}

func (*DynamicPartitioningConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DynamicPartitioningConfigurationObservation.

func (*DynamicPartitioningConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type DynamicPartitioningConfigurationParameters

type DynamicPartitioningConfigurationParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.
	// +kubebuilder:validation:Optional
	RetryDuration *float64 `json:"retryDuration,omitempty" tf:"retry_duration,omitempty"`
}

func (*DynamicPartitioningConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DynamicPartitioningConfigurationParameters.

func (*DynamicPartitioningConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ElasticsearchConfigurationObservation

type ElasticsearchConfigurationObservation struct {

	// The VPC configuration for the delivery stream to connect to Elastic Search associated with the VPC. More details are given below
	// +kubebuilder:validation:Optional
	VPCConfig []VPCConfigObservation `json:"vpcConfig,omitempty" tf:"vpc_config,omitempty"`
}

func (*ElasticsearchConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ElasticsearchConfigurationObservation.

func (*ElasticsearchConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ElasticsearchConfigurationParameters

type ElasticsearchConfigurationParameters struct {

	// Buffer incoming data for the specified period of time, in seconds between 60 to 900, before delivering it to the destination.  The default value is 300s.
	// +kubebuilder:validation:Optional
	BufferingInterval *float64 `json:"bufferingInterval,omitempty" tf:"buffering_interval,omitempty"`

	// Buffer incoming data to the specified size, in MBs between 1 to 100, before delivering it to the destination.  The default value is 5MB.
	// +kubebuilder:validation:Optional
	BufferingSize *float64 `json:"bufferingSize,omitempty" tf:"buffering_size,omitempty"`

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []CloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The endpoint to use when communicating with the cluster. Conflicts with domain_arn.
	// +kubebuilder:validation:Optional
	ClusterEndpoint *string `json:"clusterEndpoint,omitempty" tf:"cluster_endpoint,omitempty"`

	// The ARN of the Amazon ES domain.  The pattern needs to be arn:.*.  Conflicts with cluster_endpoint.
	// +kubebuilder:validation:Optional
	DomainArn *string `json:"domainArn,omitempty" tf:"domain_arn,omitempty"`

	// The Elasticsearch index name.
	// +kubebuilder:validation:Required
	IndexName *string `json:"indexName" tf:"index_name,omitempty"`

	// The Elasticsearch index rotation period.  Index rotation appends a timestamp to the IndexName to facilitate expiration of old data.  Valid values are NoRotation, OneHour, OneDay, OneWeek, and OneMonth.  The default value is OneDay.
	// +kubebuilder:validation:Optional
	IndexRotationPeriod *string `json:"indexRotationPeriod,omitempty" tf:"index_rotation_period,omitempty"`

	// The data processing configuration.  More details are given below.
	// +kubebuilder:validation:Optional
	ProcessingConfiguration []ProcessingConfigurationParameters `json:"processingConfiguration,omitempty" tf:"processing_configuration,omitempty"`

	// The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.
	// +kubebuilder:validation:Optional
	RetryDuration *float64 `json:"retryDuration,omitempty" tf:"retry_duration,omitempty"`

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// The Amazon S3 backup mode.  Valid values are Disabled and Enabled.  Default value is Disabled.
	// +kubebuilder:validation:Optional
	S3BackupMode *string `json:"s3BackupMode,omitempty" tf:"s3_backup_mode,omitempty"`

	// The Elasticsearch type name with maximum length of 100 characters.
	// +kubebuilder:validation:Optional
	TypeName *string `json:"typeName,omitempty" tf:"type_name,omitempty"`

	// The VPC configuration for the delivery stream to connect to Elastic Search associated with the VPC. More details are given below
	// +kubebuilder:validation:Optional
	VPCConfig []VPCConfigParameters `json:"vpcConfig,omitempty" tf:"vpc_config,omitempty"`
}

func (*ElasticsearchConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ElasticsearchConfigurationParameters.

func (*ElasticsearchConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ExtendedS3ConfigurationCloudwatchLoggingOptionsObservation

type ExtendedS3ConfigurationCloudwatchLoggingOptionsObservation struct {
}

func (*ExtendedS3ConfigurationCloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtendedS3ConfigurationCloudwatchLoggingOptionsObservation.

func (*ExtendedS3ConfigurationCloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ExtendedS3ConfigurationCloudwatchLoggingOptionsParameters

type ExtendedS3ConfigurationCloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*ExtendedS3ConfigurationCloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtendedS3ConfigurationCloudwatchLoggingOptionsParameters.

func (*ExtendedS3ConfigurationCloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ExtendedS3ConfigurationObservation

type ExtendedS3ConfigurationObservation struct {
}

func (*ExtendedS3ConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtendedS3ConfigurationObservation.

func (*ExtendedS3ConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ExtendedS3ConfigurationParameters

type ExtendedS3ConfigurationParameters struct {

	// The ARN of the S3 bucket
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/s3/v1beta1.Bucket
	// +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor()
	// +kubebuilder:validation:Optional
	BucketArn *string `json:"bucketArn,omitempty" tf:"bucket_arn,omitempty"`

	// Reference to a Bucket in s3 to populate bucketArn.
	// +kubebuilder:validation:Optional
	BucketArnRef *v1.Reference `json:"bucketArnRef,omitempty" tf:"-"`

	// Selector for a Bucket in s3 to populate bucketArn.
	// +kubebuilder:validation:Optional
	BucketArnSelector *v1.Selector `json:"bucketArnSelector,omitempty" tf:"-"`

	// Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.
	// +kubebuilder:validation:Optional
	BufferInterval *float64 `json:"bufferInterval,omitempty" tf:"buffer_interval,omitempty"`

	// Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.
	// We recommend setting SizeInMBs to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec set SizeInMBs to be 10 MB or higher.
	// +kubebuilder:validation:Optional
	BufferSize *float64 `json:"bufferSize,omitempty" tf:"buffer_size,omitempty"`

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []ExtendedS3ConfigurationCloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The compression format. If no value is specified, the default is UNCOMPRESSED. Other supported values are GZIP, ZIP, Snappy, & HADOOP_SNAPPY.
	// +kubebuilder:validation:Optional
	CompressionFormat *string `json:"compressionFormat,omitempty" tf:"compression_format,omitempty"`

	// Nested argument for the serializer, deserializer, and schema for converting data from the JSON format to the Parquet or ORC format before writing it to Amazon S3. More details given below.
	// +kubebuilder:validation:Optional
	DataFormatConversionConfiguration []DataFormatConversionConfigurationParameters `json:"dataFormatConversionConfiguration,omitempty" tf:"data_format_conversion_configuration,omitempty"`

	// The configuration for dynamic partitioning. See Dynamic Partitioning Configuration below for more details. Required when using dynamic partitioning.
	// +kubebuilder:validation:Optional
	DynamicPartitioningConfiguration []DynamicPartitioningConfigurationParameters `json:"dynamicPartitioningConfiguration,omitempty" tf:"dynamic_partitioning_configuration,omitempty"`

	// Prefix added to failed records before writing them to S3. Not currently supported for redshift destination. This prefix appears immediately following the bucket name. For information about how to specify this prefix, see Custom Prefixes for Amazon S3 Objects.
	// +kubebuilder:validation:Optional
	ErrorOutputPrefix *string `json:"errorOutputPrefix,omitempty" tf:"error_output_prefix,omitempty"`

	// Specifies the KMS key ARN the stream will use to encrypt data. If not set, no encryption will
	// be used.
	// +kubebuilder:validation:Optional
	KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"`

	// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. Note that if the prefix ends with a slash, it appears as a folder in the S3 bucket
	// +kubebuilder:validation:Optional
	Prefix *string `json:"prefix,omitempty" tf:"prefix,omitempty"`

	// The data processing configuration.  More details are given below.
	// +kubebuilder:validation:Optional
	ProcessingConfiguration []ExtendedS3ConfigurationProcessingConfigurationParameters `json:"processingConfiguration,omitempty" tf:"processing_configuration,omitempty"`

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor()
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// The configuration for backup in Amazon S3. Required if s3_backup_mode is Enabled. Supports the same fields as s3_configuration object.
	// +kubebuilder:validation:Optional
	S3BackupConfiguration []S3BackupConfigurationParameters `json:"s3BackupConfiguration,omitempty" tf:"s3_backup_configuration,omitempty"`

	// The Amazon S3 backup mode.  Valid values are Disabled and Enabled.  Default value is Disabled.
	// +kubebuilder:validation:Optional
	S3BackupMode *string `json:"s3BackupMode,omitempty" tf:"s3_backup_mode,omitempty"`
}

func (*ExtendedS3ConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtendedS3ConfigurationParameters.

func (*ExtendedS3ConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ExtendedS3ConfigurationProcessingConfigurationObservation

type ExtendedS3ConfigurationProcessingConfigurationObservation struct {
}

func (*ExtendedS3ConfigurationProcessingConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtendedS3ConfigurationProcessingConfigurationObservation.

func (*ExtendedS3ConfigurationProcessingConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ExtendedS3ConfigurationProcessingConfigurationParameters

type ExtendedS3ConfigurationProcessingConfigurationParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Array of data processors. More details are given below
	// +kubebuilder:validation:Optional
	Processors []ProcessingConfigurationProcessorsParameters `json:"processors,omitempty" tf:"processors,omitempty"`
}

func (*ExtendedS3ConfigurationProcessingConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtendedS3ConfigurationProcessingConfigurationParameters.

func (*ExtendedS3ConfigurationProcessingConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationCloudwatchLoggingOptionsObservation

type HTTPEndpointConfigurationCloudwatchLoggingOptionsObservation struct {
}

func (*HTTPEndpointConfigurationCloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationCloudwatchLoggingOptionsObservation.

func (*HTTPEndpointConfigurationCloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationCloudwatchLoggingOptionsParameters

type HTTPEndpointConfigurationCloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*HTTPEndpointConfigurationCloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationCloudwatchLoggingOptionsParameters.

func (*HTTPEndpointConfigurationCloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationObservation

type HTTPEndpointConfigurationObservation struct {
}

func (*HTTPEndpointConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationObservation.

func (*HTTPEndpointConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationParameters

type HTTPEndpointConfigurationParameters struct {

	// The access key required for Kinesis Firehose to authenticate with the HTTP endpoint selected as the destination.
	// +kubebuilder:validation:Optional
	AccessKeySecretRef *v1.SecretKeySelector `json:"accessKeySecretRef,omitempty" tf:"-"`

	// Buffer incoming data for the specified period of time, in seconds between 60 to 900, before delivering it to the destination.  The default value is 300s.
	// +kubebuilder:validation:Optional
	BufferingInterval *float64 `json:"bufferingInterval,omitempty" tf:"buffering_interval,omitempty"`

	// Buffer incoming data to the specified size, in MBs between 1 to 100, before delivering it to the destination.  The default value is 5MB.
	// +kubebuilder:validation:Optional
	BufferingSize *float64 `json:"bufferingSize,omitempty" tf:"buffering_size,omitempty"`

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []HTTPEndpointConfigurationCloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The HTTP endpoint name.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The data processing configuration.  More details are given below.
	// +kubebuilder:validation:Optional
	ProcessingConfiguration []HTTPEndpointConfigurationProcessingConfigurationParameters `json:"processingConfiguration,omitempty" tf:"processing_configuration,omitempty"`

	// The request configuration.  More details are given below.
	// +kubebuilder:validation:Optional
	RequestConfiguration []RequestConfigurationParameters `json:"requestConfiguration,omitempty" tf:"request_configuration,omitempty"`

	// The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.
	// +kubebuilder:validation:Optional
	RetryDuration *float64 `json:"retryDuration,omitempty" tf:"retry_duration,omitempty"`

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// The Amazon S3 backup mode.  Valid values are Disabled and Enabled.  Default value is Disabled.
	// +kubebuilder:validation:Optional
	S3BackupMode *string `json:"s3BackupMode,omitempty" tf:"s3_backup_mode,omitempty"`

	// The HTTP endpoint URL to which Kinesis Firehose sends your data.
	// +kubebuilder:validation:Required
	URL *string `json:"url" tf:"url,omitempty"`
}

func (*HTTPEndpointConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationParameters.

func (*HTTPEndpointConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationProcessingConfigurationObservation

type HTTPEndpointConfigurationProcessingConfigurationObservation struct {
}

func (*HTTPEndpointConfigurationProcessingConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationProcessingConfigurationObservation.

func (*HTTPEndpointConfigurationProcessingConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationProcessingConfigurationParameters

type HTTPEndpointConfigurationProcessingConfigurationParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Array of data processors. More details are given below
	// +kubebuilder:validation:Optional
	Processors []HTTPEndpointConfigurationProcessingConfigurationProcessorsParameters `json:"processors,omitempty" tf:"processors,omitempty"`
}

func (*HTTPEndpointConfigurationProcessingConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationProcessingConfigurationParameters.

func (*HTTPEndpointConfigurationProcessingConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationProcessingConfigurationProcessorsObservation

type HTTPEndpointConfigurationProcessingConfigurationProcessorsObservation struct {
}

func (*HTTPEndpointConfigurationProcessingConfigurationProcessorsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationProcessingConfigurationProcessorsObservation.

func (*HTTPEndpointConfigurationProcessingConfigurationProcessorsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HTTPEndpointConfigurationProcessingConfigurationProcessorsParameters

type HTTPEndpointConfigurationProcessingConfigurationProcessorsParameters struct {

	// Array of processor parameters. More details are given below
	// +kubebuilder:validation:Optional
	Parameters []ProcessingConfigurationProcessorsParametersParameters `json:"parameters,omitempty" tf:"parameters,omitempty"`

	// The type of processor. Valid Values: RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	Type *string `json:"type" tf:"type,omitempty"`
}

func (*HTTPEndpointConfigurationProcessingConfigurationProcessorsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HTTPEndpointConfigurationProcessingConfigurationProcessorsParameters.

func (*HTTPEndpointConfigurationProcessingConfigurationProcessorsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HiveJSONSerDeObservation

type HiveJSONSerDeObservation struct {
}

func (*HiveJSONSerDeObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HiveJSONSerDeObservation.

func (*HiveJSONSerDeObservation) DeepCopyInto

func (in *HiveJSONSerDeObservation) DeepCopyInto(out *HiveJSONSerDeObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type HiveJSONSerDeParameters

type HiveJSONSerDeParameters struct {

	// A list of how you want Kinesis Data Firehose to parse the date and time stamps that may be present in your input data JSON. To specify these format strings, follow the pattern syntax of JodaTime's DateTimeFormat format strings. For more information, see Class DateTimeFormat. You can also use the special value millis to parse time stamps in epoch milliseconds. If you don't specify a format, Kinesis Data Firehose uses java.sql.Timestamp::valueOf by default.
	// +kubebuilder:validation:Optional
	TimestampFormats []*string `json:"timestampFormats,omitempty" tf:"timestamp_formats,omitempty"`
}

func (*HiveJSONSerDeParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HiveJSONSerDeParameters.

func (*HiveJSONSerDeParameters) DeepCopyInto

func (in *HiveJSONSerDeParameters) DeepCopyInto(out *HiveJSONSerDeParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InputFormatConfigurationObservation

type InputFormatConfigurationObservation struct {
}

func (*InputFormatConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InputFormatConfigurationObservation.

func (*InputFormatConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InputFormatConfigurationParameters

type InputFormatConfigurationParameters struct {

	// Nested argument that specifies which deserializer to use. You can choose either the Apache Hive JSON SerDe or the OpenX JSON SerDe. More details below.
	// +kubebuilder:validation:Required
	Deserializer []DeserializerParameters `json:"deserializer" tf:"deserializer,omitempty"`
}

func (*InputFormatConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InputFormatConfigurationParameters.

func (*InputFormatConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KinesisSourceConfigurationObservation

type KinesisSourceConfigurationObservation struct {
}

func (*KinesisSourceConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KinesisSourceConfigurationObservation.

func (*KinesisSourceConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type KinesisSourceConfigurationParameters

type KinesisSourceConfigurationParameters struct {

	// The kinesis stream used as the source of the firehose delivery stream.
	// +kubebuilder:validation:Required
	KinesisStreamArn *string `json:"kinesisStreamArn" tf:"kinesis_stream_arn,omitempty"`

	// The ARN of the AWS credentials.
	// +kubebuilder:validation:Required
	RoleArn *string `json:"roleArn" tf:"role_arn,omitempty"`
}

func (*KinesisSourceConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new KinesisSourceConfigurationParameters.

func (*KinesisSourceConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type OpenXJSONSerDeObservation

type OpenXJSONSerDeObservation struct {
}

func (*OpenXJSONSerDeObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenXJSONSerDeObservation.

func (*OpenXJSONSerDeObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type OpenXJSONSerDeParameters

type OpenXJSONSerDeParameters struct {

	// When set to true, which is the default, Kinesis Data Firehose converts JSON keys to lowercase before deserializing them.
	// +kubebuilder:validation:Optional
	CaseInsensitive *bool `json:"caseInsensitive,omitempty" tf:"case_insensitive,omitempty"`

	// A map of column names to JSON keys that aren't identical to the column names. This is useful when the JSON contains keys that are Hive keywords. For example, timestamp is a Hive keyword. If you have a JSON key named timestamp, set this parameter to { ts = "timestamp" } to map this key to a column named ts.
	// +kubebuilder:validation:Optional
	ColumnToJSONKeyMappings map[string]*string `json:"columnToJsonKeyMappings,omitempty" tf:"column_to_json_key_mappings,omitempty"`

	// When set to true, specifies that the names of the keys include dots and that you want Kinesis Data Firehose to replace them with underscores. This is useful because Apache Hive does not allow dots in column names. For example, if the JSON contains a key whose name is "a.b", you can define the column name to be "a_b" when using this option. Defaults to false.
	// +kubebuilder:validation:Optional
	ConvertDotsInJSONKeysToUnderscores *bool `json:"convertDotsInJsonKeysToUnderscores,omitempty" tf:"convert_dots_in_json_keys_to_underscores,omitempty"`
}

func (*OpenXJSONSerDeParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OpenXJSONSerDeParameters.

func (*OpenXJSONSerDeParameters) DeepCopyInto

func (in *OpenXJSONSerDeParameters) DeepCopyInto(out *OpenXJSONSerDeParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type OrcSerDeObservation

type OrcSerDeObservation struct {
}

func (*OrcSerDeObservation) DeepCopy

func (in *OrcSerDeObservation) DeepCopy() *OrcSerDeObservation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrcSerDeObservation.

func (*OrcSerDeObservation) DeepCopyInto

func (in *OrcSerDeObservation) DeepCopyInto(out *OrcSerDeObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type OrcSerDeParameters

type OrcSerDeParameters struct {

	// The Hadoop Distributed File System (HDFS) block size. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 256 MiB and the minimum is 64 MiB. Kinesis Data Firehose uses this value for padding calculations.
	// +kubebuilder:validation:Optional
	BlockSizeBytes *float64 `json:"blockSizeBytes,omitempty" tf:"block_size_bytes,omitempty"`

	// A list of column names for which you want Kinesis Data Firehose to create bloom filters.
	// +kubebuilder:validation:Optional
	BloomFilterColumns []*string `json:"bloomFilterColumns,omitempty" tf:"bloom_filter_columns,omitempty"`

	// The Bloom filter false positive probability (FPP). The lower the FPP, the bigger the Bloom filter. The default value is 0.05, the minimum is 0, and the maximum is 1.
	// +kubebuilder:validation:Optional
	BloomFilterFalsePositiveProbability *float64 `json:"bloomFilterFalsePositiveProbability,omitempty" tf:"bloom_filter_false_positive_probability,omitempty"`

	// The compression code to use over data blocks. The possible values are UNCOMPRESSED, SNAPPY, and GZIP, with the default being SNAPPY. Use SNAPPY for higher decompression speed. Use GZIP if the compression ratio is more important than speed.
	// +kubebuilder:validation:Optional
	Compression *string `json:"compression,omitempty" tf:"compression,omitempty"`

	// A float that represents the fraction of the total number of non-null rows. To turn off dictionary encoding, set this fraction to a number that is less than the number of distinct keys in a dictionary. To always use dictionary encoding, set this threshold to 1.
	// +kubebuilder:validation:Optional
	DictionaryKeyThreshold *float64 `json:"dictionaryKeyThreshold,omitempty" tf:"dictionary_key_threshold,omitempty"`

	// Set this to true to indicate that you want stripes to be padded to the HDFS block boundaries. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is false.
	// +kubebuilder:validation:Optional
	EnablePadding *bool `json:"enablePadding,omitempty" tf:"enable_padding,omitempty"`

	// The version of the file to write. The possible values are V0_11 and V0_12. The default is V0_12.
	// +kubebuilder:validation:Optional
	FormatVersion *string `json:"formatVersion,omitempty" tf:"format_version,omitempty"`

	// A float between 0 and 1 that defines the tolerance for block padding as a decimal fraction of stripe size. The default value is 0.05, which means 5 percent of stripe size. For the default values of 64 MiB ORC stripes and 256 MiB HDFS blocks, the default block padding tolerance of 5 percent reserves a maximum of 3.2 MiB for padding within the 256 MiB block. In such a case, if the available size within the block is more than 3.2 MiB, a new, smaller stripe is inserted to fit within that space. This ensures that no stripe crosses block boundaries and causes remote reads within a node-local task. Kinesis Data Firehose ignores this parameter when enable_padding is false.
	// +kubebuilder:validation:Optional
	PaddingTolerance *float64 `json:"paddingTolerance,omitempty" tf:"padding_tolerance,omitempty"`

	// The number of rows between index entries. The default is 10000 and the minimum is 1000.
	// +kubebuilder:validation:Optional
	RowIndexStride *float64 `json:"rowIndexStride,omitempty" tf:"row_index_stride,omitempty"`

	// The number of bytes in each stripe. The default is 64 MiB and the minimum is 8 MiB.
	// +kubebuilder:validation:Optional
	StripeSizeBytes *float64 `json:"stripeSizeBytes,omitempty" tf:"stripe_size_bytes,omitempty"`
}

func (*OrcSerDeParameters) DeepCopy

func (in *OrcSerDeParameters) DeepCopy() *OrcSerDeParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OrcSerDeParameters.

func (*OrcSerDeParameters) DeepCopyInto

func (in *OrcSerDeParameters) DeepCopyInto(out *OrcSerDeParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type OutputFormatConfigurationObservation

type OutputFormatConfigurationObservation struct {
}

func (*OutputFormatConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OutputFormatConfigurationObservation.

func (*OutputFormatConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type OutputFormatConfigurationParameters

type OutputFormatConfigurationParameters struct {

	// Nested argument that specifies which serializer to use. You can choose either the ORC SerDe or the Parquet SerDe. More details below.
	// +kubebuilder:validation:Required
	Serializer []SerializerParameters `json:"serializer" tf:"serializer,omitempty"`
}

func (*OutputFormatConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new OutputFormatConfigurationParameters.

func (*OutputFormatConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ParametersObservation

type ParametersObservation struct {
}

func (*ParametersObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParametersObservation.

func (*ParametersObservation) DeepCopyInto

func (in *ParametersObservation) DeepCopyInto(out *ParametersObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ParametersParameters

type ParametersParameters struct {

	// Parameter name. Valid Values: LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	ParameterName *string `json:"parameterName" tf:"parameter_name,omitempty"`

	// Parameter value. Must be between 1 and 512 length (inclusive). When providing a Lambda ARN, you should specify the resource version as well.
	// +kubebuilder:validation:Required
	ParameterValue *string `json:"parameterValue" tf:"parameter_value,omitempty"`
}

func (*ParametersParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParametersParameters.

func (*ParametersParameters) DeepCopyInto

func (in *ParametersParameters) DeepCopyInto(out *ParametersParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ParquetSerDeObservation

type ParquetSerDeObservation struct {
}

func (*ParquetSerDeObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParquetSerDeObservation.

func (*ParquetSerDeObservation) DeepCopyInto

func (in *ParquetSerDeObservation) DeepCopyInto(out *ParquetSerDeObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ParquetSerDeParameters

type ParquetSerDeParameters struct {

	// The Hadoop Distributed File System (HDFS) block size. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 256 MiB and the minimum is 64 MiB. Kinesis Data Firehose uses this value for padding calculations.
	// +kubebuilder:validation:Optional
	BlockSizeBytes *float64 `json:"blockSizeBytes,omitempty" tf:"block_size_bytes,omitempty"`

	// The compression code to use over data blocks. The possible values are UNCOMPRESSED, SNAPPY, and GZIP, with the default being SNAPPY. Use SNAPPY for higher decompression speed. Use GZIP if the compression ratio is more important than speed.
	// +kubebuilder:validation:Optional
	Compression *string `json:"compression,omitempty" tf:"compression,omitempty"`

	// Indicates whether to enable dictionary compression.
	// +kubebuilder:validation:Optional
	EnableDictionaryCompression *bool `json:"enableDictionaryCompression,omitempty" tf:"enable_dictionary_compression,omitempty"`

	// The maximum amount of padding to apply. This is useful if you intend to copy the data from Amazon S3 to HDFS before querying. The default is 0.
	// +kubebuilder:validation:Optional
	MaxPaddingBytes *float64 `json:"maxPaddingBytes,omitempty" tf:"max_padding_bytes,omitempty"`

	// The Parquet page size. Column chunks are divided into pages. A page is conceptually an indivisible unit (in terms of compression and encoding). The minimum value is 64 KiB and the default is 1 MiB.
	// +kubebuilder:validation:Optional
	PageSizeBytes *float64 `json:"pageSizeBytes,omitempty" tf:"page_size_bytes,omitempty"`

	// Indicates the version of row format to output. The possible values are V1 and V2. The default is V1.
	// +kubebuilder:validation:Optional
	WriterVersion *string `json:"writerVersion,omitempty" tf:"writer_version,omitempty"`
}

func (*ParquetSerDeParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ParquetSerDeParameters.

func (*ParquetSerDeParameters) DeepCopyInto

func (in *ParquetSerDeParameters) DeepCopyInto(out *ParquetSerDeParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessingConfigurationObservation

type ProcessingConfigurationObservation struct {
}

func (*ProcessingConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessingConfigurationObservation.

func (*ProcessingConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessingConfigurationParameters

type ProcessingConfigurationParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Array of data processors. More details are given below
	// +kubebuilder:validation:Optional
	Processors []ProcessorsParameters `json:"processors,omitempty" tf:"processors,omitempty"`
}

func (*ProcessingConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessingConfigurationParameters.

func (*ProcessingConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessingConfigurationProcessorsObservation

type ProcessingConfigurationProcessorsObservation struct {
}

func (*ProcessingConfigurationProcessorsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessingConfigurationProcessorsObservation.

func (*ProcessingConfigurationProcessorsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessingConfigurationProcessorsParameters

type ProcessingConfigurationProcessorsParameters struct {

	// Array of processor parameters. More details are given below
	// +kubebuilder:validation:Optional
	Parameters []ProcessorsParametersParameters `json:"parameters,omitempty" tf:"parameters,omitempty"`

	// The type of processor. Valid Values: RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	Type *string `json:"type" tf:"type,omitempty"`
}

func (*ProcessingConfigurationProcessorsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessingConfigurationProcessorsParameters.

func (*ProcessingConfigurationProcessorsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessingConfigurationProcessorsParametersObservation

type ProcessingConfigurationProcessorsParametersObservation struct {
}

func (*ProcessingConfigurationProcessorsParametersObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessingConfigurationProcessorsParametersObservation.

func (*ProcessingConfigurationProcessorsParametersObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessingConfigurationProcessorsParametersParameters

type ProcessingConfigurationProcessorsParametersParameters struct {

	// Parameter name. Valid Values: LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	ParameterName *string `json:"parameterName" tf:"parameter_name,omitempty"`

	// Parameter value. Must be between 1 and 512 length (inclusive). When providing a Lambda ARN, you should specify the resource version as well.
	// +kubebuilder:validation:Required
	ParameterValue *string `json:"parameterValue" tf:"parameter_value,omitempty"`
}

func (*ProcessingConfigurationProcessorsParametersParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessingConfigurationProcessorsParametersParameters.

func (*ProcessingConfigurationProcessorsParametersParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessorsObservation

type ProcessorsObservation struct {
}

func (*ProcessorsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessorsObservation.

func (*ProcessorsObservation) DeepCopyInto

func (in *ProcessorsObservation) DeepCopyInto(out *ProcessorsObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessorsParameters

type ProcessorsParameters struct {

	// Array of processor parameters. More details are given below
	// +kubebuilder:validation:Optional
	Parameters []ParametersParameters `json:"parameters,omitempty" tf:"parameters,omitempty"`

	// The type of processor. Valid Values: RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	Type *string `json:"type" tf:"type,omitempty"`
}

func (*ProcessorsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessorsParameters.

func (*ProcessorsParameters) DeepCopyInto

func (in *ProcessorsParameters) DeepCopyInto(out *ProcessorsParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessorsParametersObservation

type ProcessorsParametersObservation struct {
}

func (*ProcessorsParametersObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessorsParametersObservation.

func (*ProcessorsParametersObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProcessorsParametersParameters

type ProcessorsParametersParameters struct {

	// Parameter name. Valid Values: LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	ParameterName *string `json:"parameterName" tf:"parameter_name,omitempty"`

	// Parameter value. Must be between 1 and 512 length (inclusive). When providing a Lambda ARN, you should specify the resource version as well.
	// +kubebuilder:validation:Required
	ParameterValue *string `json:"parameterValue" tf:"parameter_value,omitempty"`
}

func (*ProcessorsParametersParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProcessorsParametersParameters.

func (*ProcessorsParametersParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationCloudwatchLoggingOptionsObservation

type RedshiftConfigurationCloudwatchLoggingOptionsObservation struct {
}

func (*RedshiftConfigurationCloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationCloudwatchLoggingOptionsObservation.

func (*RedshiftConfigurationCloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationCloudwatchLoggingOptionsParameters

type RedshiftConfigurationCloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*RedshiftConfigurationCloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationCloudwatchLoggingOptionsParameters.

func (*RedshiftConfigurationCloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationObservation

type RedshiftConfigurationObservation struct {
}

func (*RedshiftConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationObservation.

func (*RedshiftConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationParameters

type RedshiftConfigurationParameters struct {

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []RedshiftConfigurationCloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The jdbcurl of the redshift cluster.
	// +kubebuilder:validation:Required
	ClusterJdbcurl *string `json:"clusterJdbcurl" tf:"cluster_jdbcurl,omitempty"`

	// Copy options for copying the data from the s3 intermediate bucket into redshift, for example to change the default delimiter. For valid values, see the AWS documentation
	// +kubebuilder:validation:Optional
	CopyOptions *string `json:"copyOptions,omitempty" tf:"copy_options,omitempty"`

	// The data table columns that will be targeted by the copy command.
	// +kubebuilder:validation:Optional
	DataTableColumns *string `json:"dataTableColumns,omitempty" tf:"data_table_columns,omitempty"`

	// The name of the table in the redshift cluster that the s3 bucket will copy to.
	// +kubebuilder:validation:Required
	DataTableName *string `json:"dataTableName" tf:"data_table_name,omitempty"`

	// The password for the username above.
	// +kubebuilder:validation:Required
	PasswordSecretRef v1.SecretKeySelector `json:"passwordSecretRef" tf:"-"`

	// The data processing configuration.  More details are given below.
	// +kubebuilder:validation:Optional
	ProcessingConfiguration []RedshiftConfigurationProcessingConfigurationParameters `json:"processingConfiguration,omitempty" tf:"processing_configuration,omitempty"`

	// The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.
	// +kubebuilder:validation:Optional
	RetryDuration *float64 `json:"retryDuration,omitempty" tf:"retry_duration,omitempty"`

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// The configuration for backup in Amazon S3. Required if s3_backup_mode is Enabled. Supports the same fields as s3_configuration object.
	// +kubebuilder:validation:Optional
	S3BackupConfiguration []RedshiftConfigurationS3BackupConfigurationParameters `json:"s3BackupConfiguration,omitempty" tf:"s3_backup_configuration,omitempty"`

	// The Amazon S3 backup mode.  Valid values are Disabled and Enabled.  Default value is Disabled.
	// +kubebuilder:validation:Optional
	S3BackupMode *string `json:"s3BackupMode,omitempty" tf:"s3_backup_mode,omitempty"`

	// The username that the firehose delivery stream will assume. It is strongly recommended that the username and password provided is used exclusively for Amazon Kinesis Firehose purposes, and that the permissions for the account are restricted for Amazon Redshift INSERT permissions.
	// +kubebuilder:validation:Required
	Username *string `json:"username" tf:"username,omitempty"`
}

func (*RedshiftConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationParameters.

func (*RedshiftConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationProcessingConfigurationObservation

type RedshiftConfigurationProcessingConfigurationObservation struct {
}

func (*RedshiftConfigurationProcessingConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationProcessingConfigurationObservation.

func (*RedshiftConfigurationProcessingConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationProcessingConfigurationParameters

type RedshiftConfigurationProcessingConfigurationParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Array of data processors. More details are given below
	// +kubebuilder:validation:Optional
	Processors []RedshiftConfigurationProcessingConfigurationProcessorsParameters `json:"processors,omitempty" tf:"processors,omitempty"`
}

func (*RedshiftConfigurationProcessingConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationProcessingConfigurationParameters.

func (*RedshiftConfigurationProcessingConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationProcessingConfigurationProcessorsObservation

type RedshiftConfigurationProcessingConfigurationProcessorsObservation struct {
}

func (*RedshiftConfigurationProcessingConfigurationProcessorsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationProcessingConfigurationProcessorsObservation.

func (*RedshiftConfigurationProcessingConfigurationProcessorsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationProcessingConfigurationProcessorsParameters

type RedshiftConfigurationProcessingConfigurationProcessorsParameters struct {

	// Array of processor parameters. More details are given below
	// +kubebuilder:validation:Optional
	Parameters []RedshiftConfigurationProcessingConfigurationProcessorsParametersParameters `json:"parameters,omitempty" tf:"parameters,omitempty"`

	// The type of processor. Valid Values: RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	Type *string `json:"type" tf:"type,omitempty"`
}

func (*RedshiftConfigurationProcessingConfigurationProcessorsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationProcessingConfigurationProcessorsParameters.

func (*RedshiftConfigurationProcessingConfigurationProcessorsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationProcessingConfigurationProcessorsParametersObservation

type RedshiftConfigurationProcessingConfigurationProcessorsParametersObservation struct {
}

func (*RedshiftConfigurationProcessingConfigurationProcessorsParametersObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationProcessingConfigurationProcessorsParametersObservation.

func (*RedshiftConfigurationProcessingConfigurationProcessorsParametersObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationProcessingConfigurationProcessorsParametersParameters

type RedshiftConfigurationProcessingConfigurationProcessorsParametersParameters struct {

	// Parameter name. Valid Values: LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	ParameterName *string `json:"parameterName" tf:"parameter_name,omitempty"`

	// Parameter value. Must be between 1 and 512 length (inclusive). When providing a Lambda ARN, you should specify the resource version as well.
	// +kubebuilder:validation:Required
	ParameterValue *string `json:"parameterValue" tf:"parameter_value,omitempty"`
}

func (*RedshiftConfigurationProcessingConfigurationProcessorsParametersParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationProcessingConfigurationProcessorsParametersParameters.

func (*RedshiftConfigurationProcessingConfigurationProcessorsParametersParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsObservation

type RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsObservation struct {
}

func (*RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsObservation.

func (*RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsParameters

type RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsParameters.

func (*RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationS3BackupConfigurationObservation

type RedshiftConfigurationS3BackupConfigurationObservation struct {
}

func (*RedshiftConfigurationS3BackupConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationS3BackupConfigurationObservation.

func (*RedshiftConfigurationS3BackupConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RedshiftConfigurationS3BackupConfigurationParameters

type RedshiftConfigurationS3BackupConfigurationParameters struct {

	// The ARN of the S3 bucket
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/s3/v1beta1.Bucket
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
	// +kubebuilder:validation:Optional
	BucketArn *string `json:"bucketArn,omitempty" tf:"bucket_arn,omitempty"`

	// Reference to a Bucket in s3 to populate bucketArn.
	// +kubebuilder:validation:Optional
	BucketArnRef *v1.Reference `json:"bucketArnRef,omitempty" tf:"-"`

	// Selector for a Bucket in s3 to populate bucketArn.
	// +kubebuilder:validation:Optional
	BucketArnSelector *v1.Selector `json:"bucketArnSelector,omitempty" tf:"-"`

	// Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.
	// +kubebuilder:validation:Optional
	BufferInterval *float64 `json:"bufferInterval,omitempty" tf:"buffer_interval,omitempty"`

	// Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.
	// We recommend setting SizeInMBs to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec set SizeInMBs to be 10 MB or higher.
	// +kubebuilder:validation:Optional
	BufferSize *float64 `json:"bufferSize,omitempty" tf:"buffer_size,omitempty"`

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []RedshiftConfigurationS3BackupConfigurationCloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The compression format. If no value is specified, the default is UNCOMPRESSED. Other supported values are GZIP, ZIP, Snappy, & HADOOP_SNAPPY.
	// +kubebuilder:validation:Optional
	CompressionFormat *string `json:"compressionFormat,omitempty" tf:"compression_format,omitempty"`

	// Prefix added to failed records before writing them to S3. Not currently supported for redshift destination. This prefix appears immediately following the bucket name. For information about how to specify this prefix, see Custom Prefixes for Amazon S3 Objects.
	// +kubebuilder:validation:Optional
	ErrorOutputPrefix *string `json:"errorOutputPrefix,omitempty" tf:"error_output_prefix,omitempty"`

	// Specifies the KMS key ARN the stream will use to encrypt data. If not set, no encryption will
	// be used.
	// +kubebuilder:validation:Optional
	KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"`

	// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. Note that if the prefix ends with a slash, it appears as a folder in the S3 bucket
	// +kubebuilder:validation:Optional
	Prefix *string `json:"prefix,omitempty" tf:"prefix,omitempty"`

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`
}

func (*RedshiftConfigurationS3BackupConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RedshiftConfigurationS3BackupConfigurationParameters.

func (*RedshiftConfigurationS3BackupConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RequestConfigurationObservation

type RequestConfigurationObservation struct {
}

func (*RequestConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestConfigurationObservation.

func (*RequestConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RequestConfigurationParameters

type RequestConfigurationParameters struct {

	// Describes the metadata sent to the HTTP endpoint destination. More details are given below
	// +kubebuilder:validation:Optional
	CommonAttributes []CommonAttributesParameters `json:"commonAttributes,omitempty" tf:"common_attributes,omitempty"`

	// Kinesis Data Firehose uses the content encoding to compress the body of a request before sending the request to the destination. Valid values are NONE and GZIP.  Default value is NONE.
	// +kubebuilder:validation:Optional
	ContentEncoding *string `json:"contentEncoding,omitempty" tf:"content_encoding,omitempty"`
}

func (*RequestConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RequestConfigurationParameters.

func (*RequestConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3BackupConfigurationCloudwatchLoggingOptionsObservation

type S3BackupConfigurationCloudwatchLoggingOptionsObservation struct {
}

func (*S3BackupConfigurationCloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3BackupConfigurationCloudwatchLoggingOptionsObservation.

func (*S3BackupConfigurationCloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3BackupConfigurationCloudwatchLoggingOptionsParameters

type S3BackupConfigurationCloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*S3BackupConfigurationCloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3BackupConfigurationCloudwatchLoggingOptionsParameters.

func (*S3BackupConfigurationCloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3BackupConfigurationObservation

type S3BackupConfigurationObservation struct {
}

func (*S3BackupConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3BackupConfigurationObservation.

func (*S3BackupConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3BackupConfigurationParameters

type S3BackupConfigurationParameters struct {

	// The ARN of the S3 bucket
	// +kubebuilder:validation:Required
	BucketArn *string `json:"bucketArn" tf:"bucket_arn,omitempty"`

	// Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.
	// +kubebuilder:validation:Optional
	BufferInterval *float64 `json:"bufferInterval,omitempty" tf:"buffer_interval,omitempty"`

	// Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.
	// We recommend setting SizeInMBs to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec set SizeInMBs to be 10 MB or higher.
	// +kubebuilder:validation:Optional
	BufferSize *float64 `json:"bufferSize,omitempty" tf:"buffer_size,omitempty"`

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []S3BackupConfigurationCloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The compression format. If no value is specified, the default is UNCOMPRESSED. Other supported values are GZIP, ZIP, Snappy, & HADOOP_SNAPPY.
	// +kubebuilder:validation:Optional
	CompressionFormat *string `json:"compressionFormat,omitempty" tf:"compression_format,omitempty"`

	// Prefix added to failed records before writing them to S3. Not currently supported for redshift destination. This prefix appears immediately following the bucket name. For information about how to specify this prefix, see Custom Prefixes for Amazon S3 Objects.
	// +kubebuilder:validation:Optional
	ErrorOutputPrefix *string `json:"errorOutputPrefix,omitempty" tf:"error_output_prefix,omitempty"`

	// Specifies the KMS key ARN the stream will use to encrypt data. If not set, no encryption will
	// be used.
	// +kubebuilder:validation:Optional
	KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"`

	// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. Note that if the prefix ends with a slash, it appears as a folder in the S3 bucket
	// +kubebuilder:validation:Optional
	Prefix *string `json:"prefix,omitempty" tf:"prefix,omitempty"`

	// The ARN of the AWS credentials.
	// +kubebuilder:validation:Required
	RoleArn *string `json:"roleArn" tf:"role_arn,omitempty"`
}

func (*S3BackupConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3BackupConfigurationParameters.

func (*S3BackupConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3ConfigurationCloudwatchLoggingOptionsObservation

type S3ConfigurationCloudwatchLoggingOptionsObservation struct {
}

func (*S3ConfigurationCloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3ConfigurationCloudwatchLoggingOptionsObservation.

func (*S3ConfigurationCloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3ConfigurationCloudwatchLoggingOptionsParameters

type S3ConfigurationCloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*S3ConfigurationCloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3ConfigurationCloudwatchLoggingOptionsParameters.

func (*S3ConfigurationCloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3ConfigurationObservation

type S3ConfigurationObservation struct {
}

func (*S3ConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3ConfigurationObservation.

func (*S3ConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type S3ConfigurationParameters

type S3ConfigurationParameters struct {

	// The ARN of the S3 bucket
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/s3/v1beta1.Bucket
	// +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor()
	// +kubebuilder:validation:Optional
	BucketArn *string `json:"bucketArn,omitempty" tf:"bucket_arn,omitempty"`

	// Reference to a Bucket in s3 to populate bucketArn.
	// +kubebuilder:validation:Optional
	BucketArnRef *v1.Reference `json:"bucketArnRef,omitempty" tf:"-"`

	// Selector for a Bucket in s3 to populate bucketArn.
	// +kubebuilder:validation:Optional
	BucketArnSelector *v1.Selector `json:"bucketArnSelector,omitempty" tf:"-"`

	// Buffer incoming data for the specified period of time, in seconds, before delivering it to the destination. The default value is 300.
	// +kubebuilder:validation:Optional
	BufferInterval *float64 `json:"bufferInterval,omitempty" tf:"buffer_interval,omitempty"`

	// Buffer incoming data to the specified size, in MBs, before delivering it to the destination. The default value is 5.
	// We recommend setting SizeInMBs to a value greater than the amount of data you typically ingest into the delivery stream in 10 seconds. For example, if you typically ingest data at 1 MB/sec set SizeInMBs to be 10 MB or higher.
	// +kubebuilder:validation:Optional
	BufferSize *float64 `json:"bufferSize,omitempty" tf:"buffer_size,omitempty"`

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []S3ConfigurationCloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The compression format. If no value is specified, the default is UNCOMPRESSED. Other supported values are GZIP, ZIP, Snappy, & HADOOP_SNAPPY.
	// +kubebuilder:validation:Optional
	CompressionFormat *string `json:"compressionFormat,omitempty" tf:"compression_format,omitempty"`

	// Prefix added to failed records before writing them to S3. Not currently supported for redshift destination. This prefix appears immediately following the bucket name. For information about how to specify this prefix, see Custom Prefixes for Amazon S3 Objects.
	// +kubebuilder:validation:Optional
	ErrorOutputPrefix *string `json:"errorOutputPrefix,omitempty" tf:"error_output_prefix,omitempty"`

	// Specifies the KMS key ARN the stream will use to encrypt data. If not set, no encryption will
	// be used.
	// +kubebuilder:validation:Optional
	KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"`

	// The "YYYY/MM/DD/HH" time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix. Note that if the prefix ends with a slash, it appears as a folder in the S3 bucket
	// +kubebuilder:validation:Optional
	Prefix *string `json:"prefix,omitempty" tf:"prefix,omitempty"`

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/provider-aws/config/common.ARNExtractor()
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`
}

func (*S3ConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3ConfigurationParameters.

func (*S3ConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SchemaConfigurationObservation

type SchemaConfigurationObservation struct {
}

func (*SchemaConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchemaConfigurationObservation.

func (*SchemaConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SchemaConfigurationParameters

type SchemaConfigurationParameters struct {

	// The ID of the AWS Glue Data Catalog. If you don't supply this, the AWS account ID is used by default.
	// +kubebuilder:validation:Optional
	CatalogID *string `json:"catalogId,omitempty" tf:"catalog_id,omitempty"`

	// Specifies the name of the AWS Glue database that contains the schema for the output data.
	// +kubebuilder:validation:Required
	DatabaseName *string `json:"databaseName" tf:"database_name,omitempty"`

	// If you don't specify an AWS Region, the default is the current region.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// Specifies the AWS Glue table that contains the column information that constitutes your data schema.
	// +kubebuilder:validation:Required
	TableName *string `json:"tableName" tf:"table_name,omitempty"`

	// Specifies the table version for the output data schema. Defaults to LATEST.
	// +kubebuilder:validation:Optional
	VersionID *string `json:"versionId,omitempty" tf:"version_id,omitempty"`
}

func (*SchemaConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SchemaConfigurationParameters.

func (*SchemaConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SerializerObservation

type SerializerObservation struct {
}

func (*SerializerObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SerializerObservation.

func (*SerializerObservation) DeepCopyInto

func (in *SerializerObservation) DeepCopyInto(out *SerializerObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SerializerParameters

type SerializerParameters struct {

	// Nested argument that specifies converting data to the ORC format before storing it in Amazon S3. For more information, see Apache ORC. More details below.
	// +kubebuilder:validation:Optional
	OrcSerDe []OrcSerDeParameters `json:"orcSerDe,omitempty" tf:"orc_ser_de,omitempty"`

	// Nested argument that specifies converting data to the Parquet format before storing it in Amazon S3. For more information, see Apache Parquet. More details below.
	// +kubebuilder:validation:Optional
	ParquetSerDe []ParquetSerDeParameters `json:"parquetSerDe,omitempty" tf:"parquet_ser_de,omitempty"`
}

func (*SerializerParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SerializerParameters.

func (*SerializerParameters) DeepCopyInto

func (in *SerializerParameters) DeepCopyInto(out *SerializerParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ServerSideEncryptionObservation

type ServerSideEncryptionObservation struct {
}

func (*ServerSideEncryptionObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerSideEncryptionObservation.

func (*ServerSideEncryptionObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ServerSideEncryptionParameters

type ServerSideEncryptionParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Amazon Resource Name (ARN) of the encryption key. Required when key_type is CUSTOMER_MANAGED_CMK.
	// +kubebuilder:validation:Optional
	KeyArn *string `json:"keyArn,omitempty" tf:"key_arn,omitempty"`

	// Type of encryption key. Default is AWS_OWNED_CMK. Valid values are AWS_OWNED_CMK and CUSTOMER_MANAGED_CMK
	// +kubebuilder:validation:Optional
	KeyType *string `json:"keyType,omitempty" tf:"key_type,omitempty"`
}

func (*ServerSideEncryptionParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerSideEncryptionParameters.

func (*ServerSideEncryptionParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationCloudwatchLoggingOptionsObservation

type SplunkConfigurationCloudwatchLoggingOptionsObservation struct {
}

func (*SplunkConfigurationCloudwatchLoggingOptionsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationCloudwatchLoggingOptionsObservation.

func (*SplunkConfigurationCloudwatchLoggingOptionsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationCloudwatchLoggingOptionsParameters

type SplunkConfigurationCloudwatchLoggingOptionsParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The CloudWatch group name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogGroupName *string `json:"logGroupName,omitempty" tf:"log_group_name,omitempty"`

	// The CloudWatch log stream name for logging. This value is required if enabled is true.
	// +kubebuilder:validation:Optional
	LogStreamName *string `json:"logStreamName,omitempty" tf:"log_stream_name,omitempty"`
}

func (*SplunkConfigurationCloudwatchLoggingOptionsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationCloudwatchLoggingOptionsParameters.

func (*SplunkConfigurationCloudwatchLoggingOptionsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationObservation

type SplunkConfigurationObservation struct {
}

func (*SplunkConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationObservation.

func (*SplunkConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationParameters

type SplunkConfigurationParameters struct {

	// The CloudWatch Logging Options for the delivery stream. More details are given below
	// +kubebuilder:validation:Optional
	CloudwatchLoggingOptions []SplunkConfigurationCloudwatchLoggingOptionsParameters `json:"cloudwatchLoggingOptions,omitempty" tf:"cloudwatch_logging_options,omitempty"`

	// The amount of time, in seconds between 180 and 600, that Kinesis Firehose waits to receive an acknowledgment from Splunk after it sends it data.
	// +kubebuilder:validation:Optional
	HecAcknowledgmentTimeout *float64 `json:"hecAcknowledgmentTimeout,omitempty" tf:"hec_acknowledgment_timeout,omitempty"`

	// The HTTP Event Collector (HEC) endpoint to which Kinesis Firehose sends your data.
	// +kubebuilder:validation:Required
	HecEndpoint *string `json:"hecEndpoint" tf:"hec_endpoint,omitempty"`

	// The HEC endpoint type. Valid values are Raw or Event. The default value is Raw.
	// +kubebuilder:validation:Optional
	HecEndpointType *string `json:"hecEndpointType,omitempty" tf:"hec_endpoint_type,omitempty"`

	// The GUID that you obtain from your Splunk cluster when you create a new HEC endpoint.
	// +kubebuilder:validation:Required
	HecTokenSecretRef v1.SecretKeySelector `json:"hecTokenSecretRef" tf:"-"`

	// The data processing configuration.  More details are given below.
	// +kubebuilder:validation:Optional
	ProcessingConfiguration []SplunkConfigurationProcessingConfigurationParameters `json:"processingConfiguration,omitempty" tf:"processing_configuration,omitempty"`

	// The length of time during which Firehose retries delivery after a failure, starting from the initial request and including the first attempt. The default value is 3600 seconds (60 minutes). Firehose does not retry if the value of DurationInSeconds is 0 (zero) or if the first delivery attempt takes longer than the current value.
	// +kubebuilder:validation:Optional
	RetryDuration *float64 `json:"retryDuration,omitempty" tf:"retry_duration,omitempty"`

	// The Amazon S3 backup mode.  Valid values are Disabled and Enabled.  Default value is Disabled.
	// +kubebuilder:validation:Optional
	S3BackupMode *string `json:"s3BackupMode,omitempty" tf:"s3_backup_mode,omitempty"`
}

func (*SplunkConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationParameters.

func (*SplunkConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationProcessingConfigurationObservation

type SplunkConfigurationProcessingConfigurationObservation struct {
}

func (*SplunkConfigurationProcessingConfigurationObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationProcessingConfigurationObservation.

func (*SplunkConfigurationProcessingConfigurationObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationProcessingConfigurationParameters

type SplunkConfigurationProcessingConfigurationParameters struct {

	// Enables or disables the logging. Defaults to false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Array of data processors. More details are given below
	// +kubebuilder:validation:Optional
	Processors []SplunkConfigurationProcessingConfigurationProcessorsParameters `json:"processors,omitempty" tf:"processors,omitempty"`
}

func (*SplunkConfigurationProcessingConfigurationParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationProcessingConfigurationParameters.

func (*SplunkConfigurationProcessingConfigurationParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationProcessingConfigurationProcessorsObservation

type SplunkConfigurationProcessingConfigurationProcessorsObservation struct {
}

func (*SplunkConfigurationProcessingConfigurationProcessorsObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationProcessingConfigurationProcessorsObservation.

func (*SplunkConfigurationProcessingConfigurationProcessorsObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationProcessingConfigurationProcessorsParameters

type SplunkConfigurationProcessingConfigurationProcessorsParameters struct {

	// Array of processor parameters. More details are given below
	// +kubebuilder:validation:Optional
	Parameters []SplunkConfigurationProcessingConfigurationProcessorsParametersParameters `json:"parameters,omitempty" tf:"parameters,omitempty"`

	// The type of processor. Valid Values: RecordDeAggregation, Lambda, MetadataExtraction, AppendDelimiterToRecord. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	Type *string `json:"type" tf:"type,omitempty"`
}

func (*SplunkConfigurationProcessingConfigurationProcessorsParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationProcessingConfigurationProcessorsParameters.

func (*SplunkConfigurationProcessingConfigurationProcessorsParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationProcessingConfigurationProcessorsParametersObservation

type SplunkConfigurationProcessingConfigurationProcessorsParametersObservation struct {
}

func (*SplunkConfigurationProcessingConfigurationProcessorsParametersObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationProcessingConfigurationProcessorsParametersObservation.

func (*SplunkConfigurationProcessingConfigurationProcessorsParametersObservation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type SplunkConfigurationProcessingConfigurationProcessorsParametersParameters

type SplunkConfigurationProcessingConfigurationProcessorsParametersParameters struct {

	// Parameter name. Valid Values: LambdaArn, NumberOfRetries, MetadataExtractionQuery, JsonParsingEngine, RoleArn, BufferSizeInMBs, BufferIntervalInSeconds, SubRecordType, Delimiter. Validation is done against AWS SDK constants; so that values not explicitly listed may also work.
	// +kubebuilder:validation:Required
	ParameterName *string `json:"parameterName" tf:"parameter_name,omitempty"`

	// Parameter value. Must be between 1 and 512 length (inclusive). When providing a Lambda ARN, you should specify the resource version as well.
	// +kubebuilder:validation:Required
	ParameterValue *string `json:"parameterValue" tf:"parameter_value,omitempty"`
}

func (*SplunkConfigurationProcessingConfigurationProcessorsParametersParameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SplunkConfigurationProcessingConfigurationProcessorsParametersParameters.

func (*SplunkConfigurationProcessingConfigurationProcessorsParametersParameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type VPCConfigObservation

type VPCConfigObservation struct {
	VPCID *string `json:"vpcId,omitempty" tf:"vpc_id,omitempty"`
}

func (*VPCConfigObservation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VPCConfigObservation.

func (*VPCConfigObservation) DeepCopyInto

func (in *VPCConfigObservation) DeepCopyInto(out *VPCConfigObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type VPCConfigParameters

type VPCConfigParameters struct {

	// The ARN of the AWS credentials.
	// +crossplane:generate:reference:type=github.com/dkb-bank/official-provider-aws/apis/iam/v1beta1.Role
	// +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractParamPath("arn",true)
	// +kubebuilder:validation:Optional
	RoleArn *string `json:"roleArn,omitempty" tf:"role_arn,omitempty"`

	// Reference to a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnRef *v1.Reference `json:"roleArnRef,omitempty" tf:"-"`

	// Selector for a Role in iam to populate roleArn.
	// +kubebuilder:validation:Optional
	RoleArnSelector *v1.Selector `json:"roleArnSelector,omitempty" tf:"-"`

	// A list of security group IDs to associate with Kinesis Firehose.
	// +kubebuilder:validation:Required
	SecurityGroupIds []*string `json:"securityGroupIds" tf:"security_group_ids,omitempty"`

	// A list of subnet IDs to associate with Kinesis Firehose.
	// +kubebuilder:validation:Required
	SubnetIds []*string `json:"subnetIds" tf:"subnet_ids,omitempty"`
}

func (*VPCConfigParameters) DeepCopy

func (in *VPCConfigParameters) DeepCopy() *VPCConfigParameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VPCConfigParameters.

func (*VPCConfigParameters) DeepCopyInto

func (in *VPCConfigParameters) DeepCopyInto(out *VPCConfigParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

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