Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=dynamodb.aws.upbound.io +versionName=v1beta2
Index ¶
- Constants
- Variables
- type AttributeInitParameters
- type AttributeObservation
- type AttributeParameters
- type CsvInitParameters
- type CsvObservation
- type CsvParameters
- type GlobalSecondaryIndexInitParameters
- type GlobalSecondaryIndexObservation
- type GlobalSecondaryIndexParameters
- type ImportTableInitParameters
- type ImportTableObservation
- type ImportTableParameters
- type InputFormatOptionsInitParameters
- type InputFormatOptionsObservation
- type InputFormatOptionsParameters
- type LocalSecondaryIndexInitParameters
- type LocalSecondaryIndexObservation
- type LocalSecondaryIndexParameters
- type PointInTimeRecoveryInitParameters
- type PointInTimeRecoveryObservation
- type PointInTimeRecoveryParameters
- type ReplicaInitParameters
- type ReplicaObservation
- type ReplicaParameters
- type S3BucketSourceInitParameters
- type S3BucketSourceObservation
- type S3BucketSourceParameters
- type ServerSideEncryptionInitParameters
- type ServerSideEncryptionObservation
- type ServerSideEncryptionParameters
- type TTLInitParameters
- type TTLObservation
- type TTLParameters
- type Table
- func (in *Table) DeepCopy() *Table
- func (in *Table) DeepCopyInto(out *Table)
- func (in *Table) DeepCopyObject() runtime.Object
- func (mg *Table) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Table) GetConnectionDetailsMapping() map[string]string
- func (mg *Table) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Table) GetID() string
- func (tr *Table) GetInitParameters() (map[string]any, error)
- func (mg *Table) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Table) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *Table) GetObservation() (map[string]any, error)
- func (tr *Table) GetParameters() (map[string]any, error)
- func (mg *Table) GetProviderConfigReference() *xpv1.Reference
- func (mg *Table) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Table) GetTerraformResourceType() string
- func (tr *Table) GetTerraformSchemaVersion() int
- func (mg *Table) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Table) Hub()
- func (tr *Table) LateInitialize(attrs []byte) (bool, error)
- func (mg *Table) SetConditions(c ...xpv1.Condition)
- func (mg *Table) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Table) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Table) SetObservation(obs map[string]any) error
- func (tr *Table) SetParameters(params map[string]any) error
- func (mg *Table) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Table) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Table) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type TableInitParameters
- type TableList
- type TableObservation
- type TableParameters
- type TableSpec
- type TableStatus
Constants ¶
const ( CRDGroup = "dynamodb.aws.upbound.io" CRDVersion = "v1beta2" )
Package type metadata.
Variables ¶
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 )
var ( Table_Kind = "Table" Table_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Table_Kind}.String() Table_KindAPIVersion = Table_Kind + "." + CRDGroupVersion.String() Table_GroupVersionKind = CRDGroupVersion.WithKind(Table_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type AttributeInitParameters ¶
type AttributeInitParameters struct { // Name of the attribute Name *string `json:"name,omitempty" tf:"name,omitempty"` // Attribute type. Valid values are S (string), N (number), B (binary). Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*AttributeInitParameters) DeepCopy ¶
func (in *AttributeInitParameters) DeepCopy() *AttributeInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributeInitParameters.
func (*AttributeInitParameters) DeepCopyInto ¶
func (in *AttributeInitParameters) DeepCopyInto(out *AttributeInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AttributeObservation ¶
type AttributeObservation struct { // Name of the attribute Name *string `json:"name,omitempty" tf:"name,omitempty"` // Attribute type. Valid values are S (string), N (number), B (binary). Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*AttributeObservation) DeepCopy ¶
func (in *AttributeObservation) DeepCopy() *AttributeObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributeObservation.
func (*AttributeObservation) DeepCopyInto ¶
func (in *AttributeObservation) DeepCopyInto(out *AttributeObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AttributeParameters ¶
type AttributeParameters struct { // Name of the attribute // +kubebuilder:validation:Optional Name *string `json:"name" tf:"name,omitempty"` // Attribute type. Valid values are S (string), N (number), B (binary). // +kubebuilder:validation:Optional Type *string `json:"type" tf:"type,omitempty"` }
func (*AttributeParameters) DeepCopy ¶
func (in *AttributeParameters) DeepCopy() *AttributeParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AttributeParameters.
func (*AttributeParameters) DeepCopyInto ¶
func (in *AttributeParameters) DeepCopyInto(out *AttributeParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CsvInitParameters ¶
type CsvInitParameters struct { // The delimiter used for separating items in the CSV file being imported. Delimiter *string `json:"delimiter,omitempty" tf:"delimiter,omitempty"` // List of the headers used to specify a common header for all source CSV files being imported. // +listType=set HeaderList []*string `json:"headerList,omitempty" tf:"header_list,omitempty"` }
func (*CsvInitParameters) DeepCopy ¶
func (in *CsvInitParameters) DeepCopy() *CsvInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CsvInitParameters.
func (*CsvInitParameters) DeepCopyInto ¶
func (in *CsvInitParameters) DeepCopyInto(out *CsvInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CsvObservation ¶
type CsvObservation struct { // The delimiter used for separating items in the CSV file being imported. Delimiter *string `json:"delimiter,omitempty" tf:"delimiter,omitempty"` // List of the headers used to specify a common header for all source CSV files being imported. // +listType=set HeaderList []*string `json:"headerList,omitempty" tf:"header_list,omitempty"` }
func (*CsvObservation) DeepCopy ¶
func (in *CsvObservation) DeepCopy() *CsvObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CsvObservation.
func (*CsvObservation) DeepCopyInto ¶
func (in *CsvObservation) DeepCopyInto(out *CsvObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CsvParameters ¶
type CsvParameters struct { // The delimiter used for separating items in the CSV file being imported. // +kubebuilder:validation:Optional Delimiter *string `json:"delimiter,omitempty" tf:"delimiter,omitempty"` // List of the headers used to specify a common header for all source CSV files being imported. // +kubebuilder:validation:Optional // +listType=set HeaderList []*string `json:"headerList,omitempty" tf:"header_list,omitempty"` }
func (*CsvParameters) DeepCopy ¶
func (in *CsvParameters) DeepCopy() *CsvParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CsvParameters.
func (*CsvParameters) DeepCopyInto ¶
func (in *CsvParameters) DeepCopyInto(out *CsvParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GlobalSecondaryIndexInitParameters ¶
type GlobalSecondaryIndexInitParameters struct { // Name of the hash key in the index; must be defined as an attribute in the resource. HashKey *string `json:"hashKey,omitempty" tf:"hash_key,omitempty"` // Name of the index. Name *string `json:"name,omitempty" tf:"name,omitempty"` // Only required with INCLUDE as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table. // +listType=set NonKeyAttributes []*string `json:"nonKeyAttributes,omitempty" tf:"non_key_attributes,omitempty"` // One of ALL, INCLUDE or KEYS_ONLY where ALL projects every attribute into the index, KEYS_ONLY projects into the index only the table and index hash_key and sort_key attributes , INCLUDE projects into the index all of the attributes that are defined in non_key_attributes in addition to the attributes that thatKEYS_ONLY project. ProjectionType *string `json:"projectionType,omitempty" tf:"projection_type,omitempty"` // Name of the range key; must be defined RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` // Number of read units for this index. Must be set if billing_mode is set to PROVISIONED. ReadCapacity *float64 `json:"readCapacity,omitempty" tf:"read_capacity,omitempty"` // Number of write units for this index. Must be set if billing_mode is set to PROVISIONED. WriteCapacity *float64 `json:"writeCapacity,omitempty" tf:"write_capacity,omitempty"` }
func (*GlobalSecondaryIndexInitParameters) DeepCopy ¶
func (in *GlobalSecondaryIndexInitParameters) DeepCopy() *GlobalSecondaryIndexInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GlobalSecondaryIndexInitParameters.
func (*GlobalSecondaryIndexInitParameters) DeepCopyInto ¶
func (in *GlobalSecondaryIndexInitParameters) DeepCopyInto(out *GlobalSecondaryIndexInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GlobalSecondaryIndexObservation ¶
type GlobalSecondaryIndexObservation struct { // Name of the hash key in the index; must be defined as an attribute in the resource. HashKey *string `json:"hashKey,omitempty" tf:"hash_key,omitempty"` // Name of the index. Name *string `json:"name,omitempty" tf:"name,omitempty"` // Only required with INCLUDE as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table. // +listType=set NonKeyAttributes []*string `json:"nonKeyAttributes,omitempty" tf:"non_key_attributes,omitempty"` // One of ALL, INCLUDE or KEYS_ONLY where ALL projects every attribute into the index, KEYS_ONLY projects into the index only the table and index hash_key and sort_key attributes , INCLUDE projects into the index all of the attributes that are defined in non_key_attributes in addition to the attributes that thatKEYS_ONLY project. ProjectionType *string `json:"projectionType,omitempty" tf:"projection_type,omitempty"` // Name of the range key; must be defined RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` // Number of read units for this index. Must be set if billing_mode is set to PROVISIONED. ReadCapacity *float64 `json:"readCapacity,omitempty" tf:"read_capacity,omitempty"` // Number of write units for this index. Must be set if billing_mode is set to PROVISIONED. WriteCapacity *float64 `json:"writeCapacity,omitempty" tf:"write_capacity,omitempty"` }
func (*GlobalSecondaryIndexObservation) DeepCopy ¶
func (in *GlobalSecondaryIndexObservation) DeepCopy() *GlobalSecondaryIndexObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GlobalSecondaryIndexObservation.
func (*GlobalSecondaryIndexObservation) DeepCopyInto ¶
func (in *GlobalSecondaryIndexObservation) DeepCopyInto(out *GlobalSecondaryIndexObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type GlobalSecondaryIndexParameters ¶
type GlobalSecondaryIndexParameters struct { // Name of the hash key in the index; must be defined as an attribute in the resource. // +kubebuilder:validation:Optional HashKey *string `json:"hashKey" tf:"hash_key,omitempty"` // Name of the index. // +kubebuilder:validation:Optional Name *string `json:"name" tf:"name,omitempty"` // Only required with INCLUDE as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table. // +kubebuilder:validation:Optional // +listType=set NonKeyAttributes []*string `json:"nonKeyAttributes,omitempty" tf:"non_key_attributes,omitempty"` // One of ALL, INCLUDE or KEYS_ONLY where ALL projects every attribute into the index, KEYS_ONLY projects into the index only the table and index hash_key and sort_key attributes , INCLUDE projects into the index all of the attributes that are defined in non_key_attributes in addition to the attributes that thatKEYS_ONLY project. // +kubebuilder:validation:Optional ProjectionType *string `json:"projectionType" tf:"projection_type,omitempty"` // Name of the range key; must be defined // +kubebuilder:validation:Optional RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` // Number of read units for this index. Must be set if billing_mode is set to PROVISIONED. // +kubebuilder:validation:Optional ReadCapacity *float64 `json:"readCapacity,omitempty" tf:"read_capacity,omitempty"` // Number of write units for this index. Must be set if billing_mode is set to PROVISIONED. // +kubebuilder:validation:Optional WriteCapacity *float64 `json:"writeCapacity,omitempty" tf:"write_capacity,omitempty"` }
func (*GlobalSecondaryIndexParameters) DeepCopy ¶
func (in *GlobalSecondaryIndexParameters) DeepCopy() *GlobalSecondaryIndexParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GlobalSecondaryIndexParameters.
func (*GlobalSecondaryIndexParameters) DeepCopyInto ¶
func (in *GlobalSecondaryIndexParameters) DeepCopyInto(out *GlobalSecondaryIndexParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImportTableInitParameters ¶
type ImportTableInitParameters struct { // Type of compression to be used on the input coming from the imported table. // Valid values are GZIP, ZSTD and NONE. InputCompressionType *string `json:"inputCompressionType,omitempty" tf:"input_compression_type,omitempty"` // The format of the source data. // Valid values are CSV, DYNAMODB_JSON, and ION. InputFormat *string `json:"inputFormat,omitempty" tf:"input_format,omitempty"` // Describe the format options for the data that was imported into the target table. // There is one value, csv. // See below. InputFormatOptions *InputFormatOptionsInitParameters `json:"inputFormatOptions,omitempty" tf:"input_format_options,omitempty"` // Values for the S3 bucket the source file is imported from. // See below. S3BucketSource *S3BucketSourceInitParameters `json:"s3BucketSource,omitempty" tf:"s3_bucket_source,omitempty"` }
func (*ImportTableInitParameters) DeepCopy ¶
func (in *ImportTableInitParameters) DeepCopy() *ImportTableInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImportTableInitParameters.
func (*ImportTableInitParameters) DeepCopyInto ¶
func (in *ImportTableInitParameters) DeepCopyInto(out *ImportTableInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImportTableObservation ¶
type ImportTableObservation struct { // Type of compression to be used on the input coming from the imported table. // Valid values are GZIP, ZSTD and NONE. InputCompressionType *string `json:"inputCompressionType,omitempty" tf:"input_compression_type,omitempty"` // The format of the source data. // Valid values are CSV, DYNAMODB_JSON, and ION. InputFormat *string `json:"inputFormat,omitempty" tf:"input_format,omitempty"` // Describe the format options for the data that was imported into the target table. // There is one value, csv. // See below. InputFormatOptions *InputFormatOptionsObservation `json:"inputFormatOptions,omitempty" tf:"input_format_options,omitempty"` // Values for the S3 bucket the source file is imported from. // See below. S3BucketSource *S3BucketSourceObservation `json:"s3BucketSource,omitempty" tf:"s3_bucket_source,omitempty"` }
func (*ImportTableObservation) DeepCopy ¶
func (in *ImportTableObservation) DeepCopy() *ImportTableObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImportTableObservation.
func (*ImportTableObservation) DeepCopyInto ¶
func (in *ImportTableObservation) DeepCopyInto(out *ImportTableObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ImportTableParameters ¶
type ImportTableParameters struct { // Type of compression to be used on the input coming from the imported table. // Valid values are GZIP, ZSTD and NONE. // +kubebuilder:validation:Optional InputCompressionType *string `json:"inputCompressionType,omitempty" tf:"input_compression_type,omitempty"` // The format of the source data. // Valid values are CSV, DYNAMODB_JSON, and ION. // +kubebuilder:validation:Optional InputFormat *string `json:"inputFormat" tf:"input_format,omitempty"` // Describe the format options for the data that was imported into the target table. // There is one value, csv. // See below. // +kubebuilder:validation:Optional InputFormatOptions *InputFormatOptionsParameters `json:"inputFormatOptions,omitempty" tf:"input_format_options,omitempty"` // Values for the S3 bucket the source file is imported from. // See below. // +kubebuilder:validation:Optional S3BucketSource *S3BucketSourceParameters `json:"s3BucketSource" tf:"s3_bucket_source,omitempty"` }
func (*ImportTableParameters) DeepCopy ¶
func (in *ImportTableParameters) DeepCopy() *ImportTableParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ImportTableParameters.
func (*ImportTableParameters) DeepCopyInto ¶
func (in *ImportTableParameters) DeepCopyInto(out *ImportTableParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InputFormatOptionsInitParameters ¶
type InputFormatOptionsInitParameters struct { // This block contains the processing options for the CSV file being imported: Csv *CsvInitParameters `json:"csv,omitempty" tf:"csv,omitempty"` }
func (*InputFormatOptionsInitParameters) DeepCopy ¶
func (in *InputFormatOptionsInitParameters) DeepCopy() *InputFormatOptionsInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InputFormatOptionsInitParameters.
func (*InputFormatOptionsInitParameters) DeepCopyInto ¶
func (in *InputFormatOptionsInitParameters) DeepCopyInto(out *InputFormatOptionsInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InputFormatOptionsObservation ¶
type InputFormatOptionsObservation struct { // This block contains the processing options for the CSV file being imported: Csv *CsvObservation `json:"csv,omitempty" tf:"csv,omitempty"` }
func (*InputFormatOptionsObservation) DeepCopy ¶
func (in *InputFormatOptionsObservation) DeepCopy() *InputFormatOptionsObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InputFormatOptionsObservation.
func (*InputFormatOptionsObservation) DeepCopyInto ¶
func (in *InputFormatOptionsObservation) DeepCopyInto(out *InputFormatOptionsObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InputFormatOptionsParameters ¶
type InputFormatOptionsParameters struct { // This block contains the processing options for the CSV file being imported: // +kubebuilder:validation:Optional Csv *CsvParameters `json:"csv,omitempty" tf:"csv,omitempty"` }
func (*InputFormatOptionsParameters) DeepCopy ¶
func (in *InputFormatOptionsParameters) DeepCopy() *InputFormatOptionsParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InputFormatOptionsParameters.
func (*InputFormatOptionsParameters) DeepCopyInto ¶
func (in *InputFormatOptionsParameters) DeepCopyInto(out *InputFormatOptionsParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LocalSecondaryIndexInitParameters ¶
type LocalSecondaryIndexInitParameters struct { // Name of the index Name *string `json:"name,omitempty" tf:"name,omitempty"` // Only required with INCLUDE as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table. NonKeyAttributes []*string `json:"nonKeyAttributes,omitempty" tf:"non_key_attributes,omitempty"` // One of ALL, INCLUDE or KEYS_ONLY where ALL projects every attribute into the index, KEYS_ONLY projects into the index only the table and index hash_key and sort_key attributes , INCLUDE projects into the index all of the attributes that are defined in non_key_attributes in addition to the attributes that thatKEYS_ONLY project. ProjectionType *string `json:"projectionType,omitempty" tf:"projection_type,omitempty"` // Name of the range key. RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` }
func (*LocalSecondaryIndexInitParameters) DeepCopy ¶
func (in *LocalSecondaryIndexInitParameters) DeepCopy() *LocalSecondaryIndexInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalSecondaryIndexInitParameters.
func (*LocalSecondaryIndexInitParameters) DeepCopyInto ¶
func (in *LocalSecondaryIndexInitParameters) DeepCopyInto(out *LocalSecondaryIndexInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LocalSecondaryIndexObservation ¶
type LocalSecondaryIndexObservation struct { // Name of the index Name *string `json:"name,omitempty" tf:"name,omitempty"` // Only required with INCLUDE as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table. NonKeyAttributes []*string `json:"nonKeyAttributes,omitempty" tf:"non_key_attributes,omitempty"` // One of ALL, INCLUDE or KEYS_ONLY where ALL projects every attribute into the index, KEYS_ONLY projects into the index only the table and index hash_key and sort_key attributes , INCLUDE projects into the index all of the attributes that are defined in non_key_attributes in addition to the attributes that thatKEYS_ONLY project. ProjectionType *string `json:"projectionType,omitempty" tf:"projection_type,omitempty"` // Name of the range key. RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` }
func (*LocalSecondaryIndexObservation) DeepCopy ¶
func (in *LocalSecondaryIndexObservation) DeepCopy() *LocalSecondaryIndexObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalSecondaryIndexObservation.
func (*LocalSecondaryIndexObservation) DeepCopyInto ¶
func (in *LocalSecondaryIndexObservation) DeepCopyInto(out *LocalSecondaryIndexObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LocalSecondaryIndexParameters ¶
type LocalSecondaryIndexParameters struct { // Name of the index // +kubebuilder:validation:Optional Name *string `json:"name" tf:"name,omitempty"` // Only required with INCLUDE as a projection type; a list of attributes to project into the index. These do not need to be defined as attributes on the table. // +kubebuilder:validation:Optional NonKeyAttributes []*string `json:"nonKeyAttributes,omitempty" tf:"non_key_attributes,omitempty"` // One of ALL, INCLUDE or KEYS_ONLY where ALL projects every attribute into the index, KEYS_ONLY projects into the index only the table and index hash_key and sort_key attributes , INCLUDE projects into the index all of the attributes that are defined in non_key_attributes in addition to the attributes that thatKEYS_ONLY project. // +kubebuilder:validation:Optional ProjectionType *string `json:"projectionType" tf:"projection_type,omitempty"` // Name of the range key. // +kubebuilder:validation:Optional RangeKey *string `json:"rangeKey" tf:"range_key,omitempty"` }
func (*LocalSecondaryIndexParameters) DeepCopy ¶
func (in *LocalSecondaryIndexParameters) DeepCopy() *LocalSecondaryIndexParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalSecondaryIndexParameters.
func (*LocalSecondaryIndexParameters) DeepCopyInto ¶
func (in *LocalSecondaryIndexParameters) DeepCopyInto(out *LocalSecondaryIndexParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PointInTimeRecoveryInitParameters ¶
type PointInTimeRecoveryInitParameters struct { // Whether to enable point-in-time recovery. It can take 10 minutes to enable for new tables. If the point_in_time_recovery block is not provided, this defaults to false. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*PointInTimeRecoveryInitParameters) DeepCopy ¶
func (in *PointInTimeRecoveryInitParameters) DeepCopy() *PointInTimeRecoveryInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PointInTimeRecoveryInitParameters.
func (*PointInTimeRecoveryInitParameters) DeepCopyInto ¶
func (in *PointInTimeRecoveryInitParameters) DeepCopyInto(out *PointInTimeRecoveryInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PointInTimeRecoveryObservation ¶
type PointInTimeRecoveryObservation struct { // Whether to enable point-in-time recovery. It can take 10 minutes to enable for new tables. If the point_in_time_recovery block is not provided, this defaults to false. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*PointInTimeRecoveryObservation) DeepCopy ¶
func (in *PointInTimeRecoveryObservation) DeepCopy() *PointInTimeRecoveryObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PointInTimeRecoveryObservation.
func (*PointInTimeRecoveryObservation) DeepCopyInto ¶
func (in *PointInTimeRecoveryObservation) DeepCopyInto(out *PointInTimeRecoveryObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type PointInTimeRecoveryParameters ¶
type PointInTimeRecoveryParameters struct { // Whether to enable point-in-time recovery. It can take 10 minutes to enable for new tables. If the point_in_time_recovery block is not provided, this defaults to false. // +kubebuilder:validation:Optional Enabled *bool `json:"enabled" tf:"enabled,omitempty"` }
func (*PointInTimeRecoveryParameters) DeepCopy ¶
func (in *PointInTimeRecoveryParameters) DeepCopy() *PointInTimeRecoveryParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PointInTimeRecoveryParameters.
func (*PointInTimeRecoveryParameters) DeepCopyInto ¶
func (in *PointInTimeRecoveryParameters) DeepCopyInto(out *PointInTimeRecoveryParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ReplicaInitParameters ¶
type ReplicaInitParameters struct { // ARN of the CMK that should be used for the AWS KMS encryption. This argument should only be used if the key is different from the default KMS-managed DynamoDB key, alias/aws/dynamodb. Note: This attribute will not be populated with the ARN of default keys. KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"` // Whether to enable Point In Time Recovery for the replica. Default is false. PointInTimeRecovery *bool `json:"pointInTimeRecovery,omitempty" tf:"point_in_time_recovery,omitempty"` // Whether to propagate the global table's tags to a replica. Default is false. Changes to tags only move in one direction: from global (source) to replica. In other words, tag drift on a replica will not trigger an update. Tag or replica changes on the global table, whether from drift or configuration changes, are propagated to replicas. Changing from true to false on a subsequent apply means replica tags are left as they were, unmanaged, not deleted. PropagateTags *bool `json:"propagateTags,omitempty" tf:"propagate_tags,omitempty"` // Region name of the replica. RegionName *string `json:"regionName,omitempty" tf:"region_name,omitempty"` }
func (*ReplicaInitParameters) DeepCopy ¶
func (in *ReplicaInitParameters) DeepCopy() *ReplicaInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaInitParameters.
func (*ReplicaInitParameters) DeepCopyInto ¶
func (in *ReplicaInitParameters) DeepCopyInto(out *ReplicaInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ReplicaObservation ¶
type ReplicaObservation struct { // ARN of the replica Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` // ARN of the CMK that should be used for the AWS KMS encryption. This argument should only be used if the key is different from the default KMS-managed DynamoDB key, alias/aws/dynamodb. Note: This attribute will not be populated with the ARN of default keys. KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"` // Whether to enable Point In Time Recovery for the replica. Default is false. PointInTimeRecovery *bool `json:"pointInTimeRecovery,omitempty" tf:"point_in_time_recovery,omitempty"` // Whether to propagate the global table's tags to a replica. Default is false. Changes to tags only move in one direction: from global (source) to replica. In other words, tag drift on a replica will not trigger an update. Tag or replica changes on the global table, whether from drift or configuration changes, are propagated to replicas. Changing from true to false on a subsequent apply means replica tags are left as they were, unmanaged, not deleted. PropagateTags *bool `json:"propagateTags,omitempty" tf:"propagate_tags,omitempty"` // Region name of the replica. RegionName *string `json:"regionName,omitempty" tf:"region_name,omitempty"` // ARN of the Table Stream. Only available when stream_enabled = true StreamArn *string `json:"streamArn,omitempty" tf:"stream_arn,omitempty"` // Timestamp, in ISO 8601 format, for this stream. Note that this timestamp is not a unique identifier for the stream on its own. However, the combination of AWS customer ID, table name and this field is guaranteed to be unique. It can be used for creating CloudWatch Alarms. Only available when stream_enabled = true. StreamLabel *string `json:"streamLabel,omitempty" tf:"stream_label,omitempty"` }
func (*ReplicaObservation) DeepCopy ¶
func (in *ReplicaObservation) DeepCopy() *ReplicaObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaObservation.
func (*ReplicaObservation) DeepCopyInto ¶
func (in *ReplicaObservation) DeepCopyInto(out *ReplicaObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ReplicaParameters ¶
type ReplicaParameters struct { // ARN of the CMK that should be used for the AWS KMS encryption. This argument should only be used if the key is different from the default KMS-managed DynamoDB key, alias/aws/dynamodb. Note: This attribute will not be populated with the ARN of default keys. // +kubebuilder:validation:Optional KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"` // Whether to enable Point In Time Recovery for the replica. Default is false. // +kubebuilder:validation:Optional PointInTimeRecovery *bool `json:"pointInTimeRecovery,omitempty" tf:"point_in_time_recovery,omitempty"` // Whether to propagate the global table's tags to a replica. Default is false. Changes to tags only move in one direction: from global (source) to replica. In other words, tag drift on a replica will not trigger an update. Tag or replica changes on the global table, whether from drift or configuration changes, are propagated to replicas. Changing from true to false on a subsequent apply means replica tags are left as they were, unmanaged, not deleted. // +kubebuilder:validation:Optional PropagateTags *bool `json:"propagateTags,omitempty" tf:"propagate_tags,omitempty"` // Region name of the replica. // +kubebuilder:validation:Optional RegionName *string `json:"regionName" tf:"region_name,omitempty"` }
func (*ReplicaParameters) DeepCopy ¶
func (in *ReplicaParameters) DeepCopy() *ReplicaParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ReplicaParameters.
func (*ReplicaParameters) DeepCopyInto ¶
func (in *ReplicaParameters) DeepCopyInto(out *ReplicaParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type S3BucketSourceInitParameters ¶
type S3BucketSourceInitParameters struct { // The S3 bucket that is being imported from. Bucket *string `json:"bucket,omitempty" tf:"bucket,omitempty"` // The account number of the S3 bucket that is being imported from. BucketOwner *string `json:"bucketOwner,omitempty" tf:"bucket_owner,omitempty"` // The key prefix shared by all S3 Objects that are being imported. KeyPrefix *string `json:"keyPrefix,omitempty" tf:"key_prefix,omitempty"` }
func (*S3BucketSourceInitParameters) DeepCopy ¶
func (in *S3BucketSourceInitParameters) DeepCopy() *S3BucketSourceInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3BucketSourceInitParameters.
func (*S3BucketSourceInitParameters) DeepCopyInto ¶
func (in *S3BucketSourceInitParameters) DeepCopyInto(out *S3BucketSourceInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type S3BucketSourceObservation ¶
type S3BucketSourceObservation struct { // The S3 bucket that is being imported from. Bucket *string `json:"bucket,omitempty" tf:"bucket,omitempty"` // The account number of the S3 bucket that is being imported from. BucketOwner *string `json:"bucketOwner,omitempty" tf:"bucket_owner,omitempty"` // The key prefix shared by all S3 Objects that are being imported. KeyPrefix *string `json:"keyPrefix,omitempty" tf:"key_prefix,omitempty"` }
func (*S3BucketSourceObservation) DeepCopy ¶
func (in *S3BucketSourceObservation) DeepCopy() *S3BucketSourceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3BucketSourceObservation.
func (*S3BucketSourceObservation) DeepCopyInto ¶
func (in *S3BucketSourceObservation) DeepCopyInto(out *S3BucketSourceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type S3BucketSourceParameters ¶
type S3BucketSourceParameters struct { // The S3 bucket that is being imported from. // +kubebuilder:validation:Optional Bucket *string `json:"bucket" tf:"bucket,omitempty"` // The account number of the S3 bucket that is being imported from. // +kubebuilder:validation:Optional BucketOwner *string `json:"bucketOwner,omitempty" tf:"bucket_owner,omitempty"` // The key prefix shared by all S3 Objects that are being imported. // +kubebuilder:validation:Optional KeyPrefix *string `json:"keyPrefix,omitempty" tf:"key_prefix,omitempty"` }
func (*S3BucketSourceParameters) DeepCopy ¶
func (in *S3BucketSourceParameters) DeepCopy() *S3BucketSourceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new S3BucketSourceParameters.
func (*S3BucketSourceParameters) DeepCopyInto ¶
func (in *S3BucketSourceParameters) DeepCopyInto(out *S3BucketSourceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerSideEncryptionInitParameters ¶
type ServerSideEncryptionInitParameters struct { // Whether or not to enable encryption at rest using an AWS managed KMS customer master key (CMK). If enabled is false then server-side encryption is set to AWS-owned key (shown as DEFAULT in the AWS console). Potentially confusingly, if enabled is true and no kms_key_arn is specified then server-side encryption is set to the default KMS-managed key (shown as KMS in the AWS console). The AWS KMS documentation explains the difference between AWS-owned and KMS-managed keys. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // ARN of the CMK that should be used for the AWS KMS encryption. This argument should only be used if the key is different from the default KMS-managed DynamoDB key, alias/aws/dynamodb. Note: This attribute will not be populated with the ARN of default keys. KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"` }
func (*ServerSideEncryptionInitParameters) DeepCopy ¶
func (in *ServerSideEncryptionInitParameters) DeepCopy() *ServerSideEncryptionInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerSideEncryptionInitParameters.
func (*ServerSideEncryptionInitParameters) DeepCopyInto ¶
func (in *ServerSideEncryptionInitParameters) DeepCopyInto(out *ServerSideEncryptionInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerSideEncryptionObservation ¶
type ServerSideEncryptionObservation struct { // Whether or not to enable encryption at rest using an AWS managed KMS customer master key (CMK). If enabled is false then server-side encryption is set to AWS-owned key (shown as DEFAULT in the AWS console). Potentially confusingly, if enabled is true and no kms_key_arn is specified then server-side encryption is set to the default KMS-managed key (shown as KMS in the AWS console). The AWS KMS documentation explains the difference between AWS-owned and KMS-managed keys. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` // ARN of the CMK that should be used for the AWS KMS encryption. This argument should only be used if the key is different from the default KMS-managed DynamoDB key, alias/aws/dynamodb. Note: This attribute will not be populated with the ARN of default keys. KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"` }
func (*ServerSideEncryptionObservation) DeepCopy ¶
func (in *ServerSideEncryptionObservation) DeepCopy() *ServerSideEncryptionObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerSideEncryptionObservation.
func (*ServerSideEncryptionObservation) DeepCopyInto ¶
func (in *ServerSideEncryptionObservation) DeepCopyInto(out *ServerSideEncryptionObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ServerSideEncryptionParameters ¶
type ServerSideEncryptionParameters struct { // Whether or not to enable encryption at rest using an AWS managed KMS customer master key (CMK). If enabled is false then server-side encryption is set to AWS-owned key (shown as DEFAULT in the AWS console). Potentially confusingly, if enabled is true and no kms_key_arn is specified then server-side encryption is set to the default KMS-managed key (shown as KMS in the AWS console). The AWS KMS documentation explains the difference between AWS-owned and KMS-managed keys. // +kubebuilder:validation:Optional Enabled *bool `json:"enabled" tf:"enabled,omitempty"` // ARN of the CMK that should be used for the AWS KMS encryption. This argument should only be used if the key is different from the default KMS-managed DynamoDB key, alias/aws/dynamodb. Note: This attribute will not be populated with the ARN of default keys. // +kubebuilder:validation:Optional KMSKeyArn *string `json:"kmsKeyArn,omitempty" tf:"kms_key_arn,omitempty"` }
func (*ServerSideEncryptionParameters) DeepCopy ¶
func (in *ServerSideEncryptionParameters) DeepCopy() *ServerSideEncryptionParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServerSideEncryptionParameters.
func (*ServerSideEncryptionParameters) DeepCopyInto ¶
func (in *ServerSideEncryptionParameters) DeepCopyInto(out *ServerSideEncryptionParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TTLInitParameters ¶
type TTLInitParameters struct { // Name of the table attribute to store the TTL timestamp in. AttributeName *string `json:"attributeName,omitempty" tf:"attribute_name,omitempty"` // Whether TTL is enabled. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TTLInitParameters) DeepCopy ¶
func (in *TTLInitParameters) DeepCopy() *TTLInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TTLInitParameters.
func (*TTLInitParameters) DeepCopyInto ¶
func (in *TTLInitParameters) DeepCopyInto(out *TTLInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TTLObservation ¶
type TTLObservation struct { // Name of the table attribute to store the TTL timestamp in. AttributeName *string `json:"attributeName,omitempty" tf:"attribute_name,omitempty"` // Whether TTL is enabled. Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TTLObservation) DeepCopy ¶
func (in *TTLObservation) DeepCopy() *TTLObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TTLObservation.
func (*TTLObservation) DeepCopyInto ¶
func (in *TTLObservation) DeepCopyInto(out *TTLObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TTLParameters ¶
type TTLParameters struct { // Name of the table attribute to store the TTL timestamp in. // +kubebuilder:validation:Optional AttributeName *string `json:"attributeName" tf:"attribute_name,omitempty"` // Whether TTL is enabled. // +kubebuilder:validation:Optional Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"` }
func (*TTLParameters) DeepCopy ¶
func (in *TTLParameters) DeepCopy() *TTLParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TTLParameters.
func (*TTLParameters) DeepCopyInto ¶
func (in *TTLParameters) DeepCopyInto(out *TTLParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Table ¶
type Table struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec TableSpec `json:"spec"` Status TableStatus `json:"status,omitempty"` }
Table is the Schema for the Tables API. Provides a DynamoDB table resource +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,aws}
func (*Table) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Table.
func (*Table) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Table) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Table) GetCondition ¶
func (mg *Table) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Table.
func (*Table) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Table
func (*Table) GetDeletionPolicy ¶
func (mg *Table) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Table.
func (*Table) GetInitParameters ¶
GetInitParameters of this Table
func (*Table) GetManagementPolicies ¶
func (mg *Table) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Table.
func (*Table) GetMergedParameters ¶
GetInitParameters of this Table
func (*Table) GetObservation ¶
GetObservation of this Table
func (*Table) GetParameters ¶
GetParameters of this Table
func (*Table) GetProviderConfigReference ¶
GetProviderConfigReference of this Table.
func (*Table) GetPublishConnectionDetailsTo ¶
func (mg *Table) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Table.
func (*Table) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Table
func (*Table) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Table) GetWriteConnectionSecretToReference ¶
func (mg *Table) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Table.
func (*Table) LateInitialize ¶
LateInitialize this Table using its observed tfState. returns True if there are any spec changes for the resource.
func (*Table) SetConditions ¶
SetConditions of this Table.
func (*Table) SetDeletionPolicy ¶
func (mg *Table) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Table.
func (*Table) SetManagementPolicies ¶
func (mg *Table) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Table.
func (*Table) SetObservation ¶
SetObservation for this Table
func (*Table) SetParameters ¶
SetParameters for this Table
func (*Table) SetProviderConfigReference ¶
SetProviderConfigReference of this Table.
func (*Table) SetPublishConnectionDetailsTo ¶
func (mg *Table) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Table.
func (*Table) SetWriteConnectionSecretToReference ¶
func (mg *Table) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Table.
type TableInitParameters ¶
type TableInitParameters struct { // Set of nested attribute definitions. Only required for hash_key and range_key attributes. See below. Attribute []AttributeInitParameters `json:"attribute,omitempty" tf:"attribute,omitempty"` // Controls how you are charged for read and write throughput and how you manage capacity. The valid values are PROVISIONED and PAY_PER_REQUEST. Defaults to PROVISIONED. BillingMode *string `json:"billingMode,omitempty" tf:"billing_mode,omitempty"` // Enables deletion protection for table. Defaults to false. DeletionProtectionEnabled *bool `json:"deletionProtectionEnabled,omitempty" tf:"deletion_protection_enabled,omitempty"` // Describe a GSI for the table; subject to the normal limits on the number of GSIs, projected attributes, etc. See below. GlobalSecondaryIndex []GlobalSecondaryIndexInitParameters `json:"globalSecondaryIndex,omitempty" tf:"global_secondary_index,omitempty"` // Attribute to use as the hash (partition) key. Must also be defined as an attribute. See below. HashKey *string `json:"hashKey,omitempty" tf:"hash_key,omitempty"` // Import Amazon S3 data into a new table. See below. ImportTable *ImportTableInitParameters `json:"importTable,omitempty" tf:"import_table,omitempty"` // Describe an LSI on the table; these can only be allocated at creation so you cannot change this definition after you have created the resource. See below. LocalSecondaryIndex []LocalSecondaryIndexInitParameters `json:"localSecondaryIndex,omitempty" tf:"local_secondary_index,omitempty"` // Enable point-in-time recovery options. See below. PointInTimeRecovery *PointInTimeRecoveryInitParameters `json:"pointInTimeRecovery,omitempty" tf:"point_in_time_recovery,omitempty"` // Attribute to use as the range (sort) key. Must also be defined as an attribute, see below. RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` // Number of read units for this table. If the billing_mode is PROVISIONED, this field is required. ReadCapacity *float64 `json:"readCapacity,omitempty" tf:"read_capacity,omitempty"` // Configuration block(s) with DynamoDB Global Tables V2 (version 2019.11.21) replication configurations. See below. Replica []ReplicaInitParameters `json:"replica,omitempty" tf:"replica,omitempty"` // Time of the point-in-time recovery point to restore. RestoreDateTime *string `json:"restoreDateTime,omitempty" tf:"restore_date_time,omitempty"` // Name of the table to restore. Must match the name of an existing table. RestoreSourceName *string `json:"restoreSourceName,omitempty" tf:"restore_source_name,omitempty"` // If set, restores table to the most recent point-in-time recovery point. RestoreToLatestTime *bool `json:"restoreToLatestTime,omitempty" tf:"restore_to_latest_time,omitempty"` // Encryption at rest options. AWS DynamoDB tables are automatically encrypted at rest with an AWS-owned Customer Master Key if this argument isn't specified. See below. ServerSideEncryption *ServerSideEncryptionInitParameters `json:"serverSideEncryption,omitempty" tf:"server_side_encryption,omitempty"` // Whether Streams are enabled. StreamEnabled *bool `json:"streamEnabled,omitempty" tf:"stream_enabled,omitempty"` // When an item in the table is modified, StreamViewType determines what information is written to the table's stream. Valid values are KEYS_ONLY, NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES. StreamViewType *string `json:"streamViewType,omitempty" tf:"stream_view_type,omitempty"` // Configuration block for TTL. See below. TTL *TTLInitParameters `json:"ttl,omitempty" tf:"ttl,omitempty"` // Storage class of the table. // Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS. // Default value is STANDARD. TableClass *string `json:"tableClass,omitempty" tf:"table_class,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Number of write units for this table. If the billing_mode is PROVISIONED, this field is required. WriteCapacity *float64 `json:"writeCapacity,omitempty" tf:"write_capacity,omitempty"` }
func (*TableInitParameters) DeepCopy ¶
func (in *TableInitParameters) DeepCopy() *TableInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableInitParameters.
func (*TableInitParameters) DeepCopyInto ¶
func (in *TableInitParameters) DeepCopyInto(out *TableInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableList ¶
type TableList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Table `json:"items"` }
TableList contains a list of Tables
func (*TableList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableList.
func (*TableList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*TableList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type TableObservation ¶
type TableObservation struct { // ARN of the table Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` // Set of nested attribute definitions. Only required for hash_key and range_key attributes. See below. Attribute []AttributeObservation `json:"attribute,omitempty" tf:"attribute,omitempty"` // Controls how you are charged for read and write throughput and how you manage capacity. The valid values are PROVISIONED and PAY_PER_REQUEST. Defaults to PROVISIONED. BillingMode *string `json:"billingMode,omitempty" tf:"billing_mode,omitempty"` // Enables deletion protection for table. Defaults to false. DeletionProtectionEnabled *bool `json:"deletionProtectionEnabled,omitempty" tf:"deletion_protection_enabled,omitempty"` // Describe a GSI for the table; subject to the normal limits on the number of GSIs, projected attributes, etc. See below. GlobalSecondaryIndex []GlobalSecondaryIndexObservation `json:"globalSecondaryIndex,omitempty" tf:"global_secondary_index,omitempty"` // Attribute to use as the hash (partition) key. Must also be defined as an attribute. See below. HashKey *string `json:"hashKey,omitempty" tf:"hash_key,omitempty"` // Name of the table ID *string `json:"id,omitempty" tf:"id,omitempty"` // Import Amazon S3 data into a new table. See below. ImportTable *ImportTableObservation `json:"importTable,omitempty" tf:"import_table,omitempty"` // Describe an LSI on the table; these can only be allocated at creation so you cannot change this definition after you have created the resource. See below. LocalSecondaryIndex []LocalSecondaryIndexObservation `json:"localSecondaryIndex,omitempty" tf:"local_secondary_index,omitempty"` // Enable point-in-time recovery options. See below. PointInTimeRecovery *PointInTimeRecoveryObservation `json:"pointInTimeRecovery,omitempty" tf:"point_in_time_recovery,omitempty"` // Attribute to use as the range (sort) key. Must also be defined as an attribute, see below. RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` // Number of read units for this table. If the billing_mode is PROVISIONED, this field is required. ReadCapacity *float64 `json:"readCapacity,omitempty" tf:"read_capacity,omitempty"` // Configuration block(s) with DynamoDB Global Tables V2 (version 2019.11.21) replication configurations. See below. Replica []ReplicaObservation `json:"replica,omitempty" tf:"replica,omitempty"` // Time of the point-in-time recovery point to restore. RestoreDateTime *string `json:"restoreDateTime,omitempty" tf:"restore_date_time,omitempty"` // Name of the table to restore. Must match the name of an existing table. RestoreSourceName *string `json:"restoreSourceName,omitempty" tf:"restore_source_name,omitempty"` // If set, restores table to the most recent point-in-time recovery point. RestoreToLatestTime *bool `json:"restoreToLatestTime,omitempty" tf:"restore_to_latest_time,omitempty"` // Encryption at rest options. AWS DynamoDB tables are automatically encrypted at rest with an AWS-owned Customer Master Key if this argument isn't specified. See below. ServerSideEncryption *ServerSideEncryptionObservation `json:"serverSideEncryption,omitempty" tf:"server_side_encryption,omitempty"` // ARN of the Table Stream. Only available when stream_enabled = true StreamArn *string `json:"streamArn,omitempty" tf:"stream_arn,omitempty"` // Whether Streams are enabled. StreamEnabled *bool `json:"streamEnabled,omitempty" tf:"stream_enabled,omitempty"` // Timestamp, in ISO 8601 format, for this stream. Note that this timestamp is not a unique identifier for the stream on its own. However, the combination of AWS customer ID, table name and this field is guaranteed to be unique. It can be used for creating CloudWatch Alarms. Only available when stream_enabled = true. StreamLabel *string `json:"streamLabel,omitempty" tf:"stream_label,omitempty"` // When an item in the table is modified, StreamViewType determines what information is written to the table's stream. Valid values are KEYS_ONLY, NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES. StreamViewType *string `json:"streamViewType,omitempty" tf:"stream_view_type,omitempty"` // Configuration block for TTL. See below. TTL *TTLObservation `json:"ttl,omitempty" tf:"ttl,omitempty"` // Storage class of the table. // Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS. // Default value is STANDARD. TableClass *string `json:"tableClass,omitempty" tf:"table_class,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. // +mapType=granular TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"` // Number of write units for this table. If the billing_mode is PROVISIONED, this field is required. WriteCapacity *float64 `json:"writeCapacity,omitempty" tf:"write_capacity,omitempty"` }
func (*TableObservation) DeepCopy ¶
func (in *TableObservation) DeepCopy() *TableObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableObservation.
func (*TableObservation) DeepCopyInto ¶
func (in *TableObservation) DeepCopyInto(out *TableObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableParameters ¶
type TableParameters struct { // Set of nested attribute definitions. Only required for hash_key and range_key attributes. See below. // +kubebuilder:validation:Optional Attribute []AttributeParameters `json:"attribute,omitempty" tf:"attribute,omitempty"` // Controls how you are charged for read and write throughput and how you manage capacity. The valid values are PROVISIONED and PAY_PER_REQUEST. Defaults to PROVISIONED. // +kubebuilder:validation:Optional BillingMode *string `json:"billingMode,omitempty" tf:"billing_mode,omitempty"` // Enables deletion protection for table. Defaults to false. // +kubebuilder:validation:Optional DeletionProtectionEnabled *bool `json:"deletionProtectionEnabled,omitempty" tf:"deletion_protection_enabled,omitempty"` // Describe a GSI for the table; subject to the normal limits on the number of GSIs, projected attributes, etc. See below. // +kubebuilder:validation:Optional GlobalSecondaryIndex []GlobalSecondaryIndexParameters `json:"globalSecondaryIndex,omitempty" tf:"global_secondary_index,omitempty"` // Attribute to use as the hash (partition) key. Must also be defined as an attribute. See below. // +kubebuilder:validation:Optional HashKey *string `json:"hashKey,omitempty" tf:"hash_key,omitempty"` // Import Amazon S3 data into a new table. See below. // +kubebuilder:validation:Optional ImportTable *ImportTableParameters `json:"importTable,omitempty" tf:"import_table,omitempty"` // Describe an LSI on the table; these can only be allocated at creation so you cannot change this definition after you have created the resource. See below. // +kubebuilder:validation:Optional LocalSecondaryIndex []LocalSecondaryIndexParameters `json:"localSecondaryIndex,omitempty" tf:"local_secondary_index,omitempty"` // Enable point-in-time recovery options. See below. // +kubebuilder:validation:Optional PointInTimeRecovery *PointInTimeRecoveryParameters `json:"pointInTimeRecovery,omitempty" tf:"point_in_time_recovery,omitempty"` // Attribute to use as the range (sort) key. Must also be defined as an attribute, see below. // +kubebuilder:validation:Optional RangeKey *string `json:"rangeKey,omitempty" tf:"range_key,omitempty"` // Number of read units for this table. If the billing_mode is PROVISIONED, this field is required. // +kubebuilder:validation:Optional ReadCapacity *float64 `json:"readCapacity,omitempty" tf:"read_capacity,omitempty"` // 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:"-"` // Configuration block(s) with DynamoDB Global Tables V2 (version 2019.11.21) replication configurations. See below. // +kubebuilder:validation:Optional Replica []ReplicaParameters `json:"replica,omitempty" tf:"replica,omitempty"` // Time of the point-in-time recovery point to restore. // +kubebuilder:validation:Optional RestoreDateTime *string `json:"restoreDateTime,omitempty" tf:"restore_date_time,omitempty"` // Name of the table to restore. Must match the name of an existing table. // +kubebuilder:validation:Optional RestoreSourceName *string `json:"restoreSourceName,omitempty" tf:"restore_source_name,omitempty"` // If set, restores table to the most recent point-in-time recovery point. // +kubebuilder:validation:Optional RestoreToLatestTime *bool `json:"restoreToLatestTime,omitempty" tf:"restore_to_latest_time,omitempty"` // Encryption at rest options. AWS DynamoDB tables are automatically encrypted at rest with an AWS-owned Customer Master Key if this argument isn't specified. See below. // +kubebuilder:validation:Optional ServerSideEncryption *ServerSideEncryptionParameters `json:"serverSideEncryption,omitempty" tf:"server_side_encryption,omitempty"` // Whether Streams are enabled. // +kubebuilder:validation:Optional StreamEnabled *bool `json:"streamEnabled,omitempty" tf:"stream_enabled,omitempty"` // When an item in the table is modified, StreamViewType determines what information is written to the table's stream. Valid values are KEYS_ONLY, NEW_IMAGE, OLD_IMAGE, NEW_AND_OLD_IMAGES. // +kubebuilder:validation:Optional StreamViewType *string `json:"streamViewType,omitempty" tf:"stream_view_type,omitempty"` // Configuration block for TTL. See below. // +kubebuilder:validation:Optional TTL *TTLParameters `json:"ttl,omitempty" tf:"ttl,omitempty"` // Storage class of the table. // Valid values are STANDARD and STANDARD_INFREQUENT_ACCESS. // Default value is STANDARD. // +kubebuilder:validation:Optional TableClass *string `json:"tableClass,omitempty" tf:"table_class,omitempty"` // Key-value map of resource tags. // +kubebuilder:validation:Optional // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // Number of write units for this table. If the billing_mode is PROVISIONED, this field is required. // +kubebuilder:validation:Optional WriteCapacity *float64 `json:"writeCapacity,omitempty" tf:"write_capacity,omitempty"` }
func (*TableParameters) DeepCopy ¶
func (in *TableParameters) DeepCopy() *TableParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableParameters.
func (*TableParameters) DeepCopyInto ¶
func (in *TableParameters) DeepCopyInto(out *TableParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableSpec ¶
type TableSpec struct { v1.ResourceSpec `json:",inline"` ForProvider TableParameters `json:"forProvider"` // THIS IS A BETA FIELD. It will be honored // unless the Management Policies feature flag is disabled. // InitProvider holds the same fields as ForProvider, with the exception // of Identifier and other resource reference fields. The fields that are // in InitProvider are merged into ForProvider when the resource is created. // The same fields are also added to the terraform ignore_changes hook, to // avoid updating them after creation. This is useful for fields that are // required on creation, but we do not desire to update them after creation, // for example because of an external controller is managing them, like an // autoscaler. InitProvider TableInitParameters `json:"initProvider,omitempty"` }
TableSpec defines the desired state of Table
func (*TableSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableSpec.
func (*TableSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type TableStatus ¶
type TableStatus struct { v1.ResourceStatus `json:",inline"` AtProvider TableObservation `json:"atProvider,omitempty"` }
TableStatus defines the observed state of Table.
func (*TableStatus) DeepCopy ¶
func (in *TableStatus) DeepCopy() *TableStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TableStatus.
func (*TableStatus) DeepCopyInto ¶
func (in *TableStatus) DeepCopyInto(out *TableStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.