Documentation ¶
Index ¶
- func CfnGlobalTable_CFN_RESOURCE_TYPE_NAME() *string
- func CfnGlobalTable_IsCfnElement(x interface{}) *bool
- func CfnGlobalTable_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnGlobalTable_IsConstruct(x interface{}) *bool
- func CfnTable_CFN_RESOURCE_TYPE_NAME() *string
- func CfnTable_IsCfnElement(x interface{}) *bool
- func CfnTable_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnTable_IsConstruct(x interface{}) *bool
- func NewCfnGlobalTable_Override(c CfnGlobalTable, scope constructs.Construct, id *string, ...)
- func NewCfnTable_Override(c CfnTable, scope constructs.Construct, id *string, props *CfnTableProps)
- func NewTable_Override(t Table, scope constructs.Construct, id *string, props *TableProps)
- func Table_IsConstruct(x interface{}) *bool
- func Table_IsResource(construct constructs.IConstruct) *bool
- type Attribute
- type AttributeType
- type BillingMode
- type CfnGlobalTable
- type CfnGlobalTableProps
- type CfnGlobalTable_AttributeDefinitionProperty
- type CfnGlobalTable_CapacityAutoScalingSettingsProperty
- type CfnGlobalTable_ContributorInsightsSpecificationProperty
- type CfnGlobalTable_GlobalSecondaryIndexProperty
- type CfnGlobalTable_KeySchemaProperty
- type CfnGlobalTable_LocalSecondaryIndexProperty
- type CfnGlobalTable_PointInTimeRecoverySpecificationProperty
- type CfnGlobalTable_ProjectionProperty
- type CfnGlobalTable_ReadProvisionedThroughputSettingsProperty
- type CfnGlobalTable_ReplicaGlobalSecondaryIndexSpecificationProperty
- type CfnGlobalTable_ReplicaSSESpecificationProperty
- type CfnGlobalTable_ReplicaSpecificationProperty
- type CfnGlobalTable_SSESpecificationProperty
- type CfnGlobalTable_StreamSpecificationProperty
- type CfnGlobalTable_TargetTrackingScalingPolicyConfigurationProperty
- type CfnGlobalTable_TimeToLiveSpecificationProperty
- type CfnGlobalTable_WriteProvisionedThroughputSettingsProperty
- type CfnTable
- type CfnTableProps
- type CfnTable_AttributeDefinitionProperty
- type CfnTable_ContributorInsightsSpecificationProperty
- type CfnTable_GlobalSecondaryIndexProperty
- type CfnTable_KeySchemaProperty
- type CfnTable_KinesisStreamSpecificationProperty
- type CfnTable_LocalSecondaryIndexProperty
- type CfnTable_PointInTimeRecoverySpecificationProperty
- type CfnTable_ProjectionProperty
- type CfnTable_ProvisionedThroughputProperty
- type CfnTable_SSESpecificationProperty
- type CfnTable_StreamSpecificationProperty
- type CfnTable_TimeToLiveSpecificationProperty
- type EnableScalingProps
- type GlobalSecondaryIndexProps
- type IScalableTableAttribute
- type ITable
- type LocalSecondaryIndexProps
- type Operation
- type ProjectionType
- type SchemaOptions
- type SecondaryIndexProps
- type StreamViewType
- type SystemErrorsForOperationsMetricOptions
- type Table
- type TableAttributes
- type TableClass
- type TableEncryption
- type TableOptions
- type TableProps
- type UtilizationScalingProps
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnGlobalTable_CFN_RESOURCE_TYPE_NAME ¶
func CfnGlobalTable_CFN_RESOURCE_TYPE_NAME() *string
func CfnGlobalTable_IsCfnElement ¶
func CfnGlobalTable_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnGlobalTable_IsCfnResource ¶
func CfnGlobalTable_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnGlobalTable_IsConstruct ¶
func CfnGlobalTable_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func CfnTable_CFN_RESOURCE_TYPE_NAME ¶
func CfnTable_CFN_RESOURCE_TYPE_NAME() *string
func CfnTable_IsCfnElement ¶
func CfnTable_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnTable_IsCfnResource ¶
func CfnTable_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnTable_IsConstruct ¶
func CfnTable_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnGlobalTable_Override ¶
func NewCfnGlobalTable_Override(c CfnGlobalTable, scope constructs.Construct, id *string, props *CfnGlobalTableProps)
Create a new `AWS::DynamoDB::GlobalTable`.
func NewCfnTable_Override ¶
func NewCfnTable_Override(c CfnTable, scope constructs.Construct, id *string, props *CfnTableProps)
Create a new `AWS::DynamoDB::Table`.
func NewTable_Override ¶
func NewTable_Override(t Table, scope constructs.Construct, id *string, props *TableProps)
func Table_IsConstruct ¶
func Table_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func Table_IsResource ¶
func Table_IsResource(construct constructs.IConstruct) *bool
Check whether the given construct is a Resource.
Types ¶
type Attribute ¶
type Attribute struct { // The name of an attribute. Name *string `json:"name" yaml:"name"` // The data type of an attribute. Type AttributeType `json:"type" yaml:"type"` }
Represents an attribute for describing the key schema for the table and indexes.
TODO: EXAMPLE
type AttributeType ¶
type AttributeType string
Data types for attributes within a table.
TODO: EXAMPLE
const ( AttributeType_BINARY AttributeType = "BINARY" AttributeType_NUMBER AttributeType = "NUMBER" AttributeType_STRING AttributeType = "STRING" )
type BillingMode ¶
type BillingMode string
DynamoDB's Read/Write capacity modes.
TODO: EXAMPLE
const ( BillingMode_PAY_PER_REQUEST BillingMode = "PAY_PER_REQUEST" BillingMode_PROVISIONED BillingMode = "PROVISIONED" )
type CfnGlobalTable ¶
type CfnGlobalTable interface { awscdk.CfnResource awscdk.IInspectable AttrArn() *string AttributeDefinitions() interface{} SetAttributeDefinitions(val interface{}) AttrStreamArn() *string AttrTableId() *string BillingMode() *string SetBillingMode(val *string) CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string CreationStack() *[]*string GlobalSecondaryIndexes() interface{} SetGlobalSecondaryIndexes(val interface{}) KeySchema() interface{} SetKeySchema(val interface{}) LocalSecondaryIndexes() interface{} SetLocalSecondaryIndexes(val interface{}) LogicalId() *string Node() constructs.Node Ref() *string Replicas() interface{} SetReplicas(val interface{}) SseSpecification() interface{} SetSseSpecification(val interface{}) Stack() awscdk.Stack StreamSpecification() interface{} SetStreamSpecification(val interface{}) TableName() *string SetTableName(val *string) TimeToLiveSpecification() interface{} SetTimeToLiveSpecification(val interface{}) UpdatedProperites() *map[string]interface{} WriteProvisionedThroughputSettings() interface{} SetWriteProvisionedThroughputSettings(val interface{}) AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::DynamoDB::GlobalTable`.
The `AWS::DynamoDB::GlobalTable` resource enables you to create and manage a Version 2019.11.21 global table. This resource cannot be used to create or manage a Version 2017.11.29 global table.
> You cannot convert a resource of type `AWS::DynamoDB::Table` into a resource of type `AWS::DynamoDB::GlobalTable` by changing its type in your template. *Doing so might result in the deletion of your DynamoDB table.* > > You can instead use the GlobalTable resource to create a new table in a single Region. This will be billed the same as a single Region table. If you later update the stack to add other Regions then Global Tables pricing will apply.
You should be aware of the following behaviors when working with DynamoDB global tables.
- The IAM Principal executing the stack operation must have the permissions listed below in all regions where you plan to have a global table replica. The IAM Principal's permissions should not have restrictions based on IP source address. Some global tables operations (for example, adding a replica) are asynchronous, and require that the IAM Principal is valid until they complete. You should not delete the Principal (user or IAM role) until CloudFormation has finished updating your stack.
- `dynamodb:CreateTable` - `dynamodb:UpdateTable` - `dynamodb:DeleteTable` - `dynamodb:DescribeContinuousBackups` - `dynamodb:DescribeContributorInsights` - `dynamodb:DescribeTable` - `dynamodb:DescribeTableReplicaAutoScaling` - `dynamodb:DescribeTimeToLive` - `dynamodb:ListTables` - `dynamodb:UpdateTimeToLive` - `dynamodb:UpdateContributorInsights` - `dynamodb:UpdateContinuousBackups` - `dynamodb:ListTagsOfResource` - `dynamodb:TagResource` - `dynamodb:UntagResource` - `dynamodb:BatchWriteItem` - `dynamodb:CreateTableReplica` - `dynamodb:DeleteItem` - `dynamodb:DeleteTableReplica` - `dynamodb:DisableKinesisStreamingDestination` - `dynamodb:EnableKinesisStreamingDestination` - `dynamodb:GetItem` - `dynamodb:PutItem` - `dynamodb:Query` - `dynamodb:Scan` - `dynamodb:UpdateItem` - `dynamodb:DescribeTableReplicaAutoScaling` - `dynamodb:UpdateTableReplicaAutoScaling` - `iam:CreateServiceLinkedRole` - `kms:CreateGrant` - `kms:DescribeKey` - `application-autoscaling:DeleteScalingPolicy` - `application-autoscaling:DeleteScheduledAction` - `application-autoscaling:DeregisterScalableTarget` - `application-autoscaling:DescribeScalingPolicies` - `application-autoscaling:DescribeScalableTargets` - `application-autoscaling:PutScalingPolicy` - `application-autoscaling:PutScheduledAction` - `application-autoscaling:RegisterScalableTarget` - When using provisioned billing mode, CloudFormation will create an auto scaling policy on each of your replicas to control their write capacities. You must configure this policy using the `WriteProvisionedThroughputSettings` property. CloudFormation will ensure that all replicas have the same write capacity auto scaling property. You cannot directly specify a value for write capacity for a global table. - If your table uses provisioned capacity, you must configure auto scaling directly in the `AWS::DynamoDB::GlobalTable` resource. You should not configure additional auto scaling policies on any of the table replicas or global secondary indexes, either via API or via `AWS::ApplicationAutoScaling::ScalableTarget` or `AWS::ApplicationAutoScaling::ScalingPolicy` . Doing so might result in unexpected behavior and is unsupported. - In AWS CloudFormation , each global table is controlled by a single stack, in a single region, regardless of the number of replicas. When you deploy your template, CloudFormation will create/update all replicas as part of a single stack operation. You should not deploy the same `AWS::DynamoDB::GlobalTable` resource in multiple regions. Doing so will result in errors, and is unsupported. If you deploy your application template in multiple regions, you can use conditions to only create the resource in a single region. Alternatively, you can choose to define your `AWS::DynamoDB::GlobalTable` resources in a stack separate from your application stack, and make sure it is only deployed to a single region.
TODO: EXAMPLE
func NewCfnGlobalTable ¶
func NewCfnGlobalTable(scope constructs.Construct, id *string, props *CfnGlobalTableProps) CfnGlobalTable
Create a new `AWS::DynamoDB::GlobalTable`.
type CfnGlobalTableProps ¶
type CfnGlobalTableProps struct { // A list of attributes that describe the key schema for the global table and indexes. AttributeDefinitions interface{} `json:"attributeDefinitions" yaml:"attributeDefinitions"` // Specifies the attributes that make up the primary key for the table. // // The attributes in the `KeySchema` property must also be defined in the `AttributeDefinitions` property. KeySchema interface{} `json:"keySchema" yaml:"keySchema"` // Specifies the list of replicas for your global table. // // The list must contain at least one element, the region where the stack defining the global table is deployed. For example, if you define your table in a stack deployed to us-east-1, you must have an entry in `Replicas` with the region us-east-1. You cannot remove the replica in the stack region. // // > Adding a replica might take a few minutes for an empty table, or up to several hours for large tables. If you want to add or remove a replica, we recommend submitting an `UpdateStack` operation containing only that change. // > // > If you add or delete a replica during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new replica, you might need to manually delete the replica. // // You can create a new global table with as many replicas as needed. You can add or remove replicas after table creation, but you can only add or remove a single replica in each update. Replicas interface{} `json:"replicas" yaml:"replicas"` // Specifies how you are charged for read and write throughput and how you manage capacity. Valid values are:. // // - `PAY_PER_REQUEST` // - `PROVISIONED` // // All replicas in your global table will have the same billing mode. If you use `PROVISIONED` billing mode, you must provide an auto scaling configuration via the `WriteProvisionedThroughputSettings` property. The default value of this property is `PROVISIONED` . BillingMode *string `json:"billingMode" yaml:"billingMode"` // Global secondary indexes to be created on the global table. // // You can create up to 20 global secondary indexes. Each replica in your global table will have the same global secondary index settings. You can only create or delete one global secondary index in a single stack operation. // // Since the backfilling of an index could take a long time, CloudFormation does not wait for the index to become active. If a stack operation rolls back, CloudFormation might not delete an index that has been added. In that case, you will need to delete the index manually. GlobalSecondaryIndexes interface{} `json:"globalSecondaryIndexes" yaml:"globalSecondaryIndexes"` // Local secondary indexes to be created on the table. // // You can create up to five local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes. Each replica in your global table will have the same local secondary index settings. LocalSecondaryIndexes interface{} `json:"localSecondaryIndexes" yaml:"localSecondaryIndexes"` // Specifies the settings to enable server-side encryption. // // These settings will be applied to all replicas. If you plan to use customer-managed KMS keys, you must provide a key for each replica using the `ReplicaSpecification.ReplicaSSESpecification` property. SseSpecification interface{} `json:"sseSpecification" yaml:"sseSpecification"` // Specifies the streams settings on your global table. // // You must provide a value for this property if your global table contains more than one replica. You can only change the streams settings if your global table has only one replica. StreamSpecification interface{} `json:"streamSpecification" yaml:"streamSpecification"` // A name for the global table. // // If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID as the table name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) . // // > If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. TableName *string `json:"tableName" yaml:"tableName"` // Specifies the time to live (TTL) settings for the table. // // This setting will be applied to all replicas. TimeToLiveSpecification interface{} `json:"timeToLiveSpecification" yaml:"timeToLiveSpecification"` // Specifies an auto scaling policy for write capacity. // // This policy will be applied to all replicas. This setting must be specified if `BillingMode` is set to `PROVISIONED` . WriteProvisionedThroughputSettings interface{} `json:"writeProvisionedThroughputSettings" yaml:"writeProvisionedThroughputSettings"` }
Properties for defining a `CfnGlobalTable`.
TODO: EXAMPLE
type CfnGlobalTable_AttributeDefinitionProperty ¶
type CfnGlobalTable_AttributeDefinitionProperty struct { // A name for the attribute. AttributeName *string `json:"attributeName" yaml:"attributeName"` // The data type for the attribute, where:. // // - `S` - the attribute is of type String // - `N` - the attribute is of type Number // - `B` - the attribute is of type Binary AttributeType *string `json:"attributeType" yaml:"attributeType"` }
Represents an attribute for describing the key schema for the table and indexes.
TODO: EXAMPLE
type CfnGlobalTable_CapacityAutoScalingSettingsProperty ¶
type CfnGlobalTable_CapacityAutoScalingSettingsProperty struct { // The maximum provisioned capacity units for the global table. MaxCapacity *float64 `json:"maxCapacity" yaml:"maxCapacity"` // The minimum provisioned capacity units for the global table. MinCapacity *float64 `json:"minCapacity" yaml:"minCapacity"` // Defines a target tracking scaling policy. TargetTrackingScalingPolicyConfiguration interface{} `json:"targetTrackingScalingPolicyConfiguration" yaml:"targetTrackingScalingPolicyConfiguration"` // When switching billing mode from `PAY_PER_REQUEST` to `PROVISIONED` , DynamoDB requires you to specify read and write capacity unit values for the table and for each global secondary index. // // These values will be applied to all replicas. The table will use these provisioned values until CloudFormation creates the autoscaling policies you configured in your template. CloudFormation cannot determine what capacity the table and its global secondary indexes will require in this time period, since they are application-dependent. // // If you want to switch a table's billing mode from `PAY_PER_REQUEST` to `PROVISIONED` , you must specify a value for this property for each autoscaled resource. If you specify different values for the same resource in different regions, CloudFormation will use the highest value found in either the `SeedCapacity` or `ReadCapacityUnits` properties. For example, if your global secondary index `myGSI` has a `SeedCapacity` of 10 in us-east-1 and a fixed `ReadCapacityUnits` of 20 in eu-west-1, CloudFormation will initially set the read capacity for `myGSI` to 20. Note that if you disable `ScaleIn` for `myGSI` in us-east-1, its read capacity units might not be set back to 10. // // You must also specify a value for `SeedCapacity` when you plan to switch a table's billing mode from `PROVISIONED` to `PAY_PER_REQUEST` , because CloudFormation might need to roll back the operation (reverting the billing mode to `PROVISIONED` ) and this cannot succeed without specifying a value for `SeedCapacity` . SeedCapacity *float64 `json:"seedCapacity" yaml:"seedCapacity"` }
Configures a scalable target and an autoscaling policy for a table or global secondary index's read or write capacity.
TODO: EXAMPLE
type CfnGlobalTable_ContributorInsightsSpecificationProperty ¶
type CfnGlobalTable_ContributorInsightsSpecificationProperty struct {
// Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).
Enabled interface{} `json:"enabled" yaml:"enabled"`
}
Configures contributor insights settings for a replica or one of its indexes.
TODO: EXAMPLE
type CfnGlobalTable_GlobalSecondaryIndexProperty ¶
type CfnGlobalTable_GlobalSecondaryIndexProperty struct { // The name of the global secondary index. // // The name must be unique among all other indexes on this table. IndexName *string `json:"indexName" yaml:"indexName"` // The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: - `HASH` - partition key - `RANGE` - sort key > The partition key of an item is also known as its *hash attribute* . // // The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. // > // > The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. KeySchema interface{} `json:"keySchema" yaml:"keySchema"` // Represents attributes that are copied (projected) from the table into the global secondary index. // // These are in addition to the primary key attributes and index key attributes, which are automatically projected. Projection interface{} `json:"projection" yaml:"projection"` // Defines write capacity settings for the global secondary index. // // You must specify a value for this property if the table's `BillingMode` is `PROVISIONED` . All replicas will have the same write capacity settings for this global secondary index. WriteProvisionedThroughputSettings interface{} `json:"writeProvisionedThroughputSettings" yaml:"writeProvisionedThroughputSettings"` }
Allows you to specify a global secondary index for the global table.
The index will be defined on all replicas.
TODO: EXAMPLE
type CfnGlobalTable_KeySchemaProperty ¶
type CfnGlobalTable_KeySchemaProperty struct { // The name of a key attribute. AttributeName *string `json:"attributeName" yaml:"attributeName"` // The role that this key attribute will assume:. // // - `HASH` - partition key // - `RANGE` - sort key // // > The partition key of an item is also known as its *hash attribute* . The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. // > // > The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. KeyType *string `json:"keyType" yaml:"keyType"` }
Represents *a single element* of a key schema.
A key schema specifies the attributes that make up the primary key of a table, or the key attributes of an index.
A `KeySchemaElement` represents exactly one attribute of the primary key. For example, a simple primary key would be represented by one `KeySchemaElement` (for the partition key). A composite primary key would require one `KeySchemaElement` for the partition key, and another `KeySchemaElement` for the sort key.
A `KeySchemaElement` must be a scalar, top-level attribute (not a nested attribute). The data type must be one of String, Number, or Binary. The attribute cannot be nested within a List or a Map.
TODO: EXAMPLE
type CfnGlobalTable_LocalSecondaryIndexProperty ¶
type CfnGlobalTable_LocalSecondaryIndexProperty struct { // The name of the local secondary index. // // The name must be unique among all other indexes on this table. IndexName *string `json:"indexName" yaml:"indexName"` // The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types: - `HASH` - partition key - `RANGE` - sort key > The partition key of an item is also known as its *hash attribute* . // // The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. // > // > The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. KeySchema interface{} `json:"keySchema" yaml:"keySchema"` // Represents attributes that are copied (projected) from the table into the local secondary index. // // These are in addition to the primary key attributes and index key attributes, which are automatically projected. Projection interface{} `json:"projection" yaml:"projection"` }
Represents the properties of a local secondary index.
A local secondary index can only be created when its parent table is created.
TODO: EXAMPLE
type CfnGlobalTable_PointInTimeRecoverySpecificationProperty ¶
type CfnGlobalTable_PointInTimeRecoverySpecificationProperty struct {
// Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
PointInTimeRecoveryEnabled interface{} `json:"pointInTimeRecoveryEnabled" yaml:"pointInTimeRecoveryEnabled"`
}
Represents the settings used to enable point in time recovery.
TODO: EXAMPLE
type CfnGlobalTable_ProjectionProperty ¶
type CfnGlobalTable_ProjectionProperty struct { // Represents the non-key attribute names which will be projected into the index. // // For local secondary indexes, the total count of `NonKeyAttributes` summed across all of the local secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. NonKeyAttributes *[]*string `json:"nonKeyAttributes" yaml:"nonKeyAttributes"` // The set of attributes that are projected into the index:. // // - `KEYS_ONLY` - Only the index and primary keys are projected into the index. // - `INCLUDE` - In addition to the attributes described in `KEYS_ONLY` , the secondary index will include other non-key attributes that you specify. // - `ALL` - All of the table attributes are projected into the index. ProjectionType *string `json:"projectionType" yaml:"projectionType"` }
Represents attributes that are copied (projected) from the table into an index.
These are in addition to the primary key attributes and index key attributes, which are automatically projected.
TODO: EXAMPLE
type CfnGlobalTable_ReadProvisionedThroughputSettingsProperty ¶
type CfnGlobalTable_ReadProvisionedThroughputSettingsProperty struct { // Specifies auto scaling settings for the replica table or global secondary index. ReadCapacityAutoScalingSettings interface{} `json:"readCapacityAutoScalingSettings" yaml:"readCapacityAutoScalingSettings"` // Specifies a fixed read capacity for the replica table or global secondary index. ReadCapacityUnits *float64 `json:"readCapacityUnits" yaml:"readCapacityUnits"` }
Allows you to specify the read capacity settings for a replica table or a replica global secondary index when the `BillingMode` is set to `PROVISIONED` .
You must specify a value for either `ReadCapacityUnits` or `ReadCapacityAutoScalingSettings` , but not both. You can switch between fixed capacity and auto scaling.
TODO: EXAMPLE
type CfnGlobalTable_ReplicaGlobalSecondaryIndexSpecificationProperty ¶
type CfnGlobalTable_ReplicaGlobalSecondaryIndexSpecificationProperty struct { // The name of the global secondary index. // // The name must be unique among all other indexes on this table. IndexName *string `json:"indexName" yaml:"indexName"` // Updates the status for contributor insights for a specific table or index. // // CloudWatch Contributor Insights for DynamoDB graphs display the partition key and (if applicable) sort key of frequently accessed items and frequently throttled items in plaintext. If you require the use of AWS Key Management Service (KMS) to encrypt this table’s partition key and sort key data with an AWS managed key or customer managed key, you should not enable CloudWatch Contributor Insights for DynamoDB for this table. ContributorInsightsSpecification interface{} `json:"contributorInsightsSpecification" yaml:"contributorInsightsSpecification"` // Allows you to specify the read capacity settings for a replica global secondary index when the `BillingMode` is set to `PROVISIONED` . ReadProvisionedThroughputSettings interface{} `json:"readProvisionedThroughputSettings" yaml:"readProvisionedThroughputSettings"` }
Represents the properties of a global secondary index that can be set on a per-replica basis.
TODO: EXAMPLE
type CfnGlobalTable_ReplicaSSESpecificationProperty ¶
type CfnGlobalTable_ReplicaSSESpecificationProperty struct { // The AWS KMS key that should be used for the AWS KMS encryption. // // To specify a key, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB key `alias/aws/dynamodb` . KmsMasterKeyId *string `json:"kmsMasterKeyId" yaml:"kmsMasterKeyId"` }
Allows you to specify a KMS key identifier to be used for server-side encryption.
The key can be specified via ARN, key ID, or alias. The key must be created in the same region as the replica.
TODO: EXAMPLE
type CfnGlobalTable_ReplicaSpecificationProperty ¶
type CfnGlobalTable_ReplicaSpecificationProperty struct { // The region in which this replica exists. Region *string `json:"region" yaml:"region"` // The settings used to enable or disable CloudWatch Contributor Insights for the specified replica. // // When not specified, defaults to contributor insights disabled for the replica. ContributorInsightsSpecification interface{} `json:"contributorInsightsSpecification" yaml:"contributorInsightsSpecification"` // Defines additional settings for the global secondary indexes of this replica. GlobalSecondaryIndexes interface{} `json:"globalSecondaryIndexes" yaml:"globalSecondaryIndexes"` // The settings used to enable point in time recovery. // // When not specified, defaults to point in time recovery disabled for the replica. PointInTimeRecoverySpecification interface{} `json:"pointInTimeRecoverySpecification" yaml:"pointInTimeRecoverySpecification"` // Defines read capacity settings for the replica table. ReadProvisionedThroughputSettings interface{} `json:"readProvisionedThroughputSettings" yaml:"readProvisionedThroughputSettings"` // Allows you to specify a customer-managed key for the replica. // // When using customer-managed keys for server-side encryption, this property must have a value in all replicas. SseSpecification interface{} `json:"sseSpecification" yaml:"sseSpecification"` // The table class of the specified table. // // Valid values are `STANDARD` and `STANDARD_INFREQUENT_ACCESS` . TableClass *string `json:"tableClass" yaml:"tableClass"` // An array of key-value pairs to apply to this replica. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . Tags *[]*awscdk.CfnTag `json:"tags" yaml:"tags"` }
Defines settings specific to a single replica of a global table.
TODO: EXAMPLE
type CfnGlobalTable_SSESpecificationProperty ¶
type CfnGlobalTable_SSESpecificationProperty struct { // Indicates whether server-side encryption is performed using an AWS managed key or an AWS owned key. // // If disabled (false) or not specified, server-side encryption uses an AWS owned key. If enabled (true), the server-side encryption type is set to KMS and an AWS managed key is used ( AWS KMS charges apply). If you choose to use KMS encryption, you can also use customer managed KMS keys by specifying them in the `ReplicaSpecification.SSESpecification` object. You cannot mix AWS managed and customer managed KMS keys. SseEnabled interface{} `json:"sseEnabled" yaml:"sseEnabled"` // Server-side encryption type. The only supported value is:. // // - `KMS` - Server-side encryption that uses AWS Key Management Service . The key is stored in your account and is managed by AWS KMS ( AWS KMS charges apply). SseType *string `json:"sseType" yaml:"sseType"` }
Represents the settings used to enable server-side encryption.
TODO: EXAMPLE
type CfnGlobalTable_StreamSpecificationProperty ¶
type CfnGlobalTable_StreamSpecificationProperty struct { // When an item in the table is modified, `StreamViewType` determines what information is written to the stream for this table. // // Valid values for `StreamViewType` are: // // - `KEYS_ONLY` - Only the key attributes of the modified item are written to the stream. // - `NEW_IMAGE` - The entire item, as it appears after it was modified, is written to the stream. // - `OLD_IMAGE` - The entire item, as it appeared before it was modified, is written to the stream. // - `NEW_AND_OLD_IMAGES` - Both the new and the old item images of the item are written to the stream. StreamViewType *string `json:"streamViewType" yaml:"streamViewType"` }
Represents the DynamoDB Streams configuration for a table in DynamoDB.
You can only modify this value if your `AWS::DynamoDB::GlobalTable` contains only one entry in `Replicas` . You must specify a value for this property if your `AWS::DynamoDB::GlobalTable` contains more than one replica.
TODO: EXAMPLE
type CfnGlobalTable_TargetTrackingScalingPolicyConfigurationProperty ¶
type CfnGlobalTable_TargetTrackingScalingPolicyConfigurationProperty struct { // Defines a target value for the scaling policy. TargetValue *float64 `json:"targetValue" yaml:"targetValue"` // Indicates whether scale in by the target tracking scaling policy is disabled. // // The default value is `false` . DisableScaleIn interface{} `json:"disableScaleIn" yaml:"disableScaleIn"` // The amount of time, in seconds, after a scale-in activity completes before another scale-in activity can start. ScaleInCooldown *float64 `json:"scaleInCooldown" yaml:"scaleInCooldown"` // The amount of time, in seconds, after a scale-out activity completes before another scale-out activity can start. ScaleOutCooldown *float64 `json:"scaleOutCooldown" yaml:"scaleOutCooldown"` }
Defines a target tracking scaling policy.
TODO: EXAMPLE
type CfnGlobalTable_TimeToLiveSpecificationProperty ¶
type CfnGlobalTable_TimeToLiveSpecificationProperty struct { // Indicates whether TTL is to be enabled (true) or disabled (false) on the table. Enabled interface{} `json:"enabled" yaml:"enabled"` // The name of the attribute used to store the expiration time for items in the table. // // Currently, you cannot directly change the attribute name used to evaluate time to live. In order to do so, you must first disable time to live, and then re-enable it with the new attribute name. It can take up to one hour for changes to time to live to take effect. If you attempt to modify time to live within that time window, your stack operation might be delayed. AttributeName *string `json:"attributeName" yaml:"attributeName"` }
Represents the settings used to enable or disable Time to Live (TTL) for the specified table.
All replicas will have the same time to live configuration.
TODO: EXAMPLE
type CfnGlobalTable_WriteProvisionedThroughputSettingsProperty ¶
type CfnGlobalTable_WriteProvisionedThroughputSettingsProperty struct {
// Specifies auto scaling settings for the replica table or global secondary index.
WriteCapacityAutoScalingSettings interface{} `json:"writeCapacityAutoScalingSettings" yaml:"writeCapacityAutoScalingSettings"`
}
Specifies an auto scaling policy for write capacity.
This policy will be applied to all replicas. This setting must be specified if `BillingMode` is set to `PROVISIONED` .
TODO: EXAMPLE
type CfnTable ¶
type CfnTable interface { awscdk.CfnResource awscdk.IInspectable AttrArn() *string AttributeDefinitions() interface{} SetAttributeDefinitions(val interface{}) AttrStreamArn() *string BillingMode() *string SetBillingMode(val *string) CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string ContributorInsightsSpecification() interface{} SetContributorInsightsSpecification(val interface{}) CreationStack() *[]*string GlobalSecondaryIndexes() interface{} SetGlobalSecondaryIndexes(val interface{}) KeySchema() interface{} SetKeySchema(val interface{}) KinesisStreamSpecification() interface{} SetKinesisStreamSpecification(val interface{}) LocalSecondaryIndexes() interface{} SetLocalSecondaryIndexes(val interface{}) LogicalId() *string Node() constructs.Node PointInTimeRecoverySpecification() interface{} SetPointInTimeRecoverySpecification(val interface{}) ProvisionedThroughput() interface{} SetProvisionedThroughput(val interface{}) Ref() *string SseSpecification() interface{} SetSseSpecification(val interface{}) Stack() awscdk.Stack StreamSpecification() interface{} SetStreamSpecification(val interface{}) TableClass() *string SetTableClass(val *string) TableName() *string SetTableName(val *string) Tags() awscdk.TagManager TimeToLiveSpecification() interface{} SetTimeToLiveSpecification(val interface{}) UpdatedProperites() *map[string]interface{} AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::DynamoDB::Table`.
The `AWS::DynamoDB::Table` resource creates a DynamoDB table. For more information, see [CreateTable](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_CreateTable.html) in the *Amazon DynamoDB API Reference* .
You should be aware of the following behaviors when working with DynamoDB tables:
- AWS CloudFormation typically creates DynamoDB tables in parallel. However, if your template includes multiple DynamoDB tables with indexes, you must declare dependencies so that the tables are created sequentially. Amazon DynamoDB limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DynamoDB returns an error and the stack operation fails. For an example, see [DynamoDB Table with a DependsOn Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-examples-dependson) .
TODO: EXAMPLE
func NewCfnTable ¶
func NewCfnTable(scope constructs.Construct, id *string, props *CfnTableProps) CfnTable
Create a new `AWS::DynamoDB::Table`.
type CfnTableProps ¶
type CfnTableProps struct { // Specifies the attributes that make up the primary key for the table. // // The attributes in the `KeySchema` property must also be defined in the `AttributeDefinitions` property. KeySchema interface{} `json:"keySchema" yaml:"keySchema"` // A list of attributes that describe the key schema for the table and indexes. // // This property is required to create a DynamoDB table. // // Update requires: [Some interruptions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-some-interrupt) . Replacement if you edit an existing AttributeDefinition. AttributeDefinitions interface{} `json:"attributeDefinitions" yaml:"attributeDefinitions"` // Specify how you are charged for read and write throughput and how you manage capacity. // // Valid values include: // // - `PROVISIONED` - We recommend using `PROVISIONED` for predictable workloads. `PROVISIONED` sets the billing mode to [Provisioned Mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.ProvisionedThroughput.Manual) . // - `PAY_PER_REQUEST` - We recommend using `PAY_PER_REQUEST` for unpredictable workloads. `PAY_PER_REQUEST` sets the billing mode to [On-Demand Mode](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.ReadWriteCapacityMode.html#HowItWorks.OnDemand) . // // If not specified, the default is `PROVISIONED` . BillingMode *string `json:"billingMode" yaml:"billingMode"` // The settings used to enable or disable CloudWatch Contributor Insights for the specified table. ContributorInsightsSpecification interface{} `json:"contributorInsightsSpecification" yaml:"contributorInsightsSpecification"` // Global secondary indexes to be created on the table. You can create up to 20 global secondary indexes. // // > If you update a table to include a new global secondary index, AWS CloudFormation initiates the index creation and then proceeds with the stack update. AWS CloudFormation doesn't wait for the index to complete creation because the backfilling phase can take a long time, depending on the size of the table. You can't use the index or update the table until the index's status is `ACTIVE` . You can track its status by using the DynamoDB [DescribeTable](https://docs.aws.amazon.com/cli/latest/reference/dynamodb/describe-table.html) command. // > // > If you add or delete an index during an update, we recommend that you don't update any other resources. If your stack fails to update and is rolled back while adding a new index, you must manually delete the index. // > // > Updates are not supported. The following are exceptions: // > // > - If you update either the contributor insights specification or the provisioned throughput values of global secondary indexes, you can update the table without interruption. // > - You can delete or add one global secondary index without interruption. If you do both in the same update (for example, by changing the index's logical ID), the update fails. GlobalSecondaryIndexes interface{} `json:"globalSecondaryIndexes" yaml:"globalSecondaryIndexes"` // The Kinesis Data Streams configuration for the specified table. KinesisStreamSpecification interface{} `json:"kinesisStreamSpecification" yaml:"kinesisStreamSpecification"` // Local secondary indexes to be created on the table. // // You can create up to 5 local secondary indexes. Each index is scoped to a given hash key value. The size of each hash key can be up to 10 gigabytes. LocalSecondaryIndexes interface{} `json:"localSecondaryIndexes" yaml:"localSecondaryIndexes"` // The settings used to enable point in time recovery. PointInTimeRecoverySpecification interface{} `json:"pointInTimeRecoverySpecification" yaml:"pointInTimeRecoverySpecification"` // Throughput for the specified table, which consists of values for `ReadCapacityUnits` and `WriteCapacityUnits` . // // For more information about the contents of a provisioned throughput structure, see [Amazon DynamoDB Table ProvisionedThroughput](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html) . // // If you set `BillingMode` as `PROVISIONED` , you must specify this property. If you set `BillingMode` as `PAY_PER_REQUEST` , you cannot specify this property. ProvisionedThroughput interface{} `json:"provisionedThroughput" yaml:"provisionedThroughput"` // Specifies the settings to enable server-side encryption. SseSpecification interface{} `json:"sseSpecification" yaml:"sseSpecification"` // The settings for the DynamoDB table stream, which capture changes to items stored in the table. StreamSpecification interface{} `json:"streamSpecification" yaml:"streamSpecification"` // The table class of the new table. // // Valid values are `STANDARD` and `STANDARD_INFREQUENT_ACCESS` . TableClass *string `json:"tableClass" yaml:"tableClass"` // A name for the table. // // If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the table name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) . // // > If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name. TableName *string `json:"tableName" yaml:"tableName"` // An array of key-value pairs to apply to this resource. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . Tags *[]*awscdk.CfnTag `json:"tags" yaml:"tags"` // Specifies the Time to Live (TTL) settings for the table. // // > For detailed information about the limits in DynamoDB, see [Limits in Amazon DynamoDB](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the Amazon DynamoDB Developer Guide. TimeToLiveSpecification interface{} `json:"timeToLiveSpecification" yaml:"timeToLiveSpecification"` }
Properties for defining a `CfnTable`.
TODO: EXAMPLE
type CfnTable_AttributeDefinitionProperty ¶
type CfnTable_AttributeDefinitionProperty struct { // A name for the attribute. AttributeName *string `json:"attributeName" yaml:"attributeName"` // The data type for the attribute, where:. // // - `S` - the attribute is of type String // - `N` - the attribute is of type Number // - `B` - the attribute is of type Binary AttributeType *string `json:"attributeType" yaml:"attributeType"` }
Represents an attribute for describing the key schema for the table and indexes.
TODO: EXAMPLE
type CfnTable_ContributorInsightsSpecificationProperty ¶
type CfnTable_ContributorInsightsSpecificationProperty struct {
// Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).
Enabled interface{} `json:"enabled" yaml:"enabled"`
}
The settings used to enable or disable CloudWatch Contributor Insights.
TODO: EXAMPLE
type CfnTable_GlobalSecondaryIndexProperty ¶
type CfnTable_GlobalSecondaryIndexProperty struct { // The name of the global secondary index. // // The name must be unique among all other indexes on this table. IndexName *string `json:"indexName" yaml:"indexName"` // The complete key schema for a global secondary index, which consists of one or more pairs of attribute names and key types: - `HASH` - partition key - `RANGE` - sort key > The partition key of an item is also known as its *hash attribute* . // // The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. // > // > The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. KeySchema interface{} `json:"keySchema" yaml:"keySchema"` // Represents attributes that are copied (projected) from the table into the global secondary index. // // These are in addition to the primary key attributes and index key attributes, which are automatically projected. Projection interface{} `json:"projection" yaml:"projection"` // The settings used to enable or disable CloudWatch Contributor Insights for the specified global secondary index. ContributorInsightsSpecification interface{} `json:"contributorInsightsSpecification" yaml:"contributorInsightsSpecification"` // Represents the provisioned throughput settings for the specified global secondary index. // // For current minimum and maximum provisioned throughput values, see [Service, Account, and Table Quotas](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the *Amazon DynamoDB Developer Guide* . ProvisionedThroughput interface{} `json:"provisionedThroughput" yaml:"provisionedThroughput"` }
Represents the properties of a global secondary index.
TODO: EXAMPLE
type CfnTable_KeySchemaProperty ¶
type CfnTable_KeySchemaProperty struct { // The name of a key attribute. AttributeName *string `json:"attributeName" yaml:"attributeName"` // The role that this key attribute will assume:. // // - `HASH` - partition key // - `RANGE` - sort key // // > The partition key of an item is also known as its *hash attribute* . The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. // > // > The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. KeyType *string `json:"keyType" yaml:"keyType"` }
Represents *a single element* of a key schema.
A key schema specifies the attributes that make up the primary key of a table, or the key attributes of an index.
A `KeySchemaElement` represents exactly one attribute of the primary key. For example, a simple primary key would be represented by one `KeySchemaElement` (for the partition key). A composite primary key would require one `KeySchemaElement` for the partition key, and another `KeySchemaElement` for the sort key.
A `KeySchemaElement` must be a scalar, top-level attribute (not a nested attribute). The data type must be one of String, Number, or Binary. The attribute cannot be nested within a List or a Map.
TODO: EXAMPLE
type CfnTable_KinesisStreamSpecificationProperty ¶
type CfnTable_KinesisStreamSpecificationProperty struct { // The ARN for a specific Kinesis data stream. // // Length Constraints: Minimum length of 37. Maximum length of 1024. StreamArn *string `json:"streamArn" yaml:"streamArn"` }
The Kinesis Data Streams configuration for the specified table.
TODO: EXAMPLE
type CfnTable_LocalSecondaryIndexProperty ¶
type CfnTable_LocalSecondaryIndexProperty struct { // The name of the local secondary index. // // The name must be unique among all other indexes on this table. IndexName *string `json:"indexName" yaml:"indexName"` // The complete key schema for the local secondary index, consisting of one or more pairs of attribute names and key types: - `HASH` - partition key - `RANGE` - sort key > The partition key of an item is also known as its *hash attribute* . // // The term "hash attribute" derives from DynamoDB's usage of an internal hash function to evenly distribute data items across partitions, based on their partition key values. // > // > The sort key of an item is also known as its *range attribute* . The term "range attribute" derives from the way DynamoDB stores items with the same partition key physically close together, in sorted order by the sort key value. KeySchema interface{} `json:"keySchema" yaml:"keySchema"` // Represents attributes that are copied (projected) from the table into the local secondary index. // // These are in addition to the primary key attributes and index key attributes, which are automatically projected. Projection interface{} `json:"projection" yaml:"projection"` }
Represents the properties of a local secondary index.
A local secondary index can only be created when its parent table is created.
TODO: EXAMPLE
type CfnTable_PointInTimeRecoverySpecificationProperty ¶
type CfnTable_PointInTimeRecoverySpecificationProperty struct {
// Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
PointInTimeRecoveryEnabled interface{} `json:"pointInTimeRecoveryEnabled" yaml:"pointInTimeRecoveryEnabled"`
}
The settings used to enable point in time recovery.
TODO: EXAMPLE
type CfnTable_ProjectionProperty ¶
type CfnTable_ProjectionProperty struct { // Represents the non-key attribute names which will be projected into the index. // // For local secondary indexes, the total count of `NonKeyAttributes` summed across all of the local secondary indexes, must not exceed 20. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. NonKeyAttributes *[]*string `json:"nonKeyAttributes" yaml:"nonKeyAttributes"` // The set of attributes that are projected into the index:. // // - `KEYS_ONLY` - Only the index and primary keys are projected into the index. // - `INCLUDE` - In addition to the attributes described in `KEYS_ONLY` , the secondary index will include other non-key attributes that you specify. // - `ALL` - All of the table attributes are projected into the index. ProjectionType *string `json:"projectionType" yaml:"projectionType"` }
Represents attributes that are copied (projected) from the table into an index.
These are in addition to the primary key attributes and index key attributes, which are automatically projected.
TODO: EXAMPLE
type CfnTable_ProvisionedThroughputProperty ¶
type CfnTable_ProvisionedThroughputProperty struct { // The maximum number of strongly consistent reads consumed per second before DynamoDB returns a `ThrottlingException` . // // For more information, see [Specifying Read and Write Requirements](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput) in the *Amazon DynamoDB Developer Guide* . // // If read/write capacity mode is `PAY_PER_REQUEST` the value is set to 0. ReadCapacityUnits *float64 `json:"readCapacityUnits" yaml:"readCapacityUnits"` // The maximum number of writes consumed per second before DynamoDB returns a `ThrottlingException` . // // For more information, see [Specifying Read and Write Requirements](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput) in the *Amazon DynamoDB Developer Guide* . // // If read/write capacity mode is `PAY_PER_REQUEST` the value is set to 0. WriteCapacityUnits *float64 `json:"writeCapacityUnits" yaml:"writeCapacityUnits"` }
Throughput for the specified table, which consists of values for `ReadCapacityUnits` and `WriteCapacityUnits` .
For more information about the contents of a provisioned throughput structure, see [Amazon DynamoDB Table ProvisionedThroughput](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html) .
TODO: EXAMPLE
type CfnTable_SSESpecificationProperty ¶
type CfnTable_SSESpecificationProperty struct { // Indicates whether server-side encryption is done using an AWS managed key or an AWS owned key. // // If enabled (true), server-side encryption type is set to `KMS` and an AWS managed key is used ( AWS KMS charges apply). If disabled (false) or not specified, server-side encryption is set to AWS owned key. SseEnabled interface{} `json:"sseEnabled" yaml:"sseEnabled"` // The AWS KMS key that should be used for the AWS KMS encryption. // // To specify a key, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. Note that you should only provide this parameter if the key is different from the default DynamoDB key `alias/aws/dynamodb` . KmsMasterKeyId *string `json:"kmsMasterKeyId" yaml:"kmsMasterKeyId"` // Server-side encryption type. The only supported value is:. // // - `KMS` - Server-side encryption that uses AWS Key Management Service . The key is stored in your account and is managed by AWS KMS ( AWS KMS charges apply). SseType *string `json:"sseType" yaml:"sseType"` }
Represents the settings used to enable server-side encryption.
TODO: EXAMPLE
type CfnTable_StreamSpecificationProperty ¶
type CfnTable_StreamSpecificationProperty struct { // When an item in the table is modified, `StreamViewType` determines what information is written to the stream for this table. // // Valid values for `StreamViewType` are: // // - `KEYS_ONLY` - Only the key attributes of the modified item are written to the stream. // - `NEW_IMAGE` - The entire item, as it appears after it was modified, is written to the stream. // - `OLD_IMAGE` - The entire item, as it appeared before it was modified, is written to the stream. // - `NEW_AND_OLD_IMAGES` - Both the new and the old item images of the item are written to the stream. StreamViewType *string `json:"streamViewType" yaml:"streamViewType"` }
Represents the DynamoDB Streams configuration for a table in DynamoDB.
TODO: EXAMPLE
type CfnTable_TimeToLiveSpecificationProperty ¶
type CfnTable_TimeToLiveSpecificationProperty struct { // The name of the TTL attribute used to store the expiration time for items in the table. // // > To update this property, you must first disable TTL then enable TTL with the new attribute name. AttributeName *string `json:"attributeName" yaml:"attributeName"` // Indicates whether TTL is to be enabled (true) or disabled (false) on the table. Enabled interface{} `json:"enabled" yaml:"enabled"` }
Represents the settings used to enable or disable Time to Live (TTL) for the specified table.
TODO: EXAMPLE
type EnableScalingProps ¶
type EnableScalingProps struct { // Maximum capacity to scale to. MaxCapacity *float64 `json:"maxCapacity" yaml:"maxCapacity"` // Minimum capacity to scale to. MinCapacity *float64 `json:"minCapacity" yaml:"minCapacity"` }
Properties for enabling DynamoDB capacity scaling.
TODO: EXAMPLE
type GlobalSecondaryIndexProps ¶
type GlobalSecondaryIndexProps struct { // The name of the secondary index. IndexName *string `json:"indexName" yaml:"indexName"` // The non-key attributes that are projected into the secondary index. NonKeyAttributes *[]*string `json:"nonKeyAttributes" yaml:"nonKeyAttributes"` // The set of attributes that are projected into the secondary index. ProjectionType ProjectionType `json:"projectionType" yaml:"projectionType"` // Partition key attribute definition. PartitionKey *Attribute `json:"partitionKey" yaml:"partitionKey"` // Sort key attribute definition. SortKey *Attribute `json:"sortKey" yaml:"sortKey"` // The read capacity for the global secondary index. // // Can only be provided if table billingMode is Provisioned or undefined. ReadCapacity *float64 `json:"readCapacity" yaml:"readCapacity"` // The write capacity for the global secondary index. // // Can only be provided if table billingMode is Provisioned or undefined. WriteCapacity *float64 `json:"writeCapacity" yaml:"writeCapacity"` }
Properties for a global secondary index.
TODO: EXAMPLE
type IScalableTableAttribute ¶
type IScalableTableAttribute interface { // Add scheduled scaling for this scaling attribute. ScaleOnSchedule(id *string, actions *awsapplicationautoscaling.ScalingSchedule) // Scale out or in to keep utilization at a given level. ScaleOnUtilization(props *UtilizationScalingProps) }
Interface for scalable attributes.
type ITable ¶
type ITable interface { awscdk.IResource // Adds an IAM policy statement associated with this table to an IAM principal's policy. // // If `encryptionKey` is present, appropriate grants to the key needs to be added // separately using the `table.encryptionKey.grant*` methods. Grant(grantee awsiam.IGrantable, actions ...*string) awsiam.Grant // Permits all DynamoDB operations ("dynamodb:*") to an IAM principal. // // Appropriate grants will also be added to the customer-managed KMS key // if one was configured. GrantFullAccess(grantee awsiam.IGrantable) awsiam.Grant // Permits an IAM principal all data read operations from this table: BatchGetItem, GetRecords, GetShardIterator, Query, GetItem, Scan. // // Appropriate grants will also be added to the customer-managed KMS key // if one was configured. GrantReadData(grantee awsiam.IGrantable) awsiam.Grant // Permits an IAM principal to all data read/write operations to this table. // // BatchGetItem, GetRecords, GetShardIterator, Query, GetItem, Scan, // BatchWriteItem, PutItem, UpdateItem, DeleteItem // // Appropriate grants will also be added to the customer-managed KMS key // if one was configured. GrantReadWriteData(grantee awsiam.IGrantable) awsiam.Grant // Adds an IAM policy statement associated with this table's stream to an IAM principal's policy. // // If `encryptionKey` is present, appropriate grants to the key needs to be added // separately using the `table.encryptionKey.grant*` methods. GrantStream(grantee awsiam.IGrantable, actions ...*string) awsiam.Grant // Permits an IAM principal all stream data read operations for this table's stream: DescribeStream, GetRecords, GetShardIterator, ListStreams. // // Appropriate grants will also be added to the customer-managed KMS key // if one was configured. GrantStreamRead(grantee awsiam.IGrantable) awsiam.Grant // Permits an IAM Principal to list streams attached to current dynamodb table. GrantTableListStreams(grantee awsiam.IGrantable) awsiam.Grant // Permits an IAM principal all data write operations to this table: BatchWriteItem, PutItem, UpdateItem, DeleteItem. // // Appropriate grants will also be added to the customer-managed KMS key // if one was configured. GrantWriteData(grantee awsiam.IGrantable) awsiam.Grant // Metric for the number of Errors executing all Lambdas. Metric(metricName *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the conditional check failed requests. MetricConditionalCheckFailedRequests(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the consumed read capacity units. MetricConsumedReadCapacityUnits(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the consumed write capacity units. MetricConsumedWriteCapacityUnits(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the successful request latency. MetricSuccessfulRequestLatency(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the system errors this table. MetricSystemErrorsForOperations(props *SystemErrorsForOperationsMetricOptions) awscloudwatch.IMetric // Metric for throttled requests. MetricThrottledRequests(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Metric for the user errors. MetricUserErrors(props *awscloudwatch.MetricOptions) awscloudwatch.Metric // Optional KMS encryption key associated with this table. EncryptionKey() awskms.IKey // Arn of the dynamodb table. TableArn() *string // Table name of the dynamodb table. TableName() *string // ARN of the table's stream, if there is one. TableStreamArn() *string }
An interface that represents a DynamoDB Table - either created with the CDK, or an existing one.
func Table_FromTableArn ¶
Creates a Table construct that represents an external table via table arn.
func Table_FromTableAttributes ¶
func Table_FromTableAttributes(scope constructs.Construct, id *string, attrs *TableAttributes) ITable
Creates a Table construct that represents an external table.
func Table_FromTableName ¶
Creates a Table construct that represents an external table via table name.
type LocalSecondaryIndexProps ¶
type LocalSecondaryIndexProps struct { // The name of the secondary index. IndexName *string `json:"indexName" yaml:"indexName"` // The non-key attributes that are projected into the secondary index. NonKeyAttributes *[]*string `json:"nonKeyAttributes" yaml:"nonKeyAttributes"` // The set of attributes that are projected into the secondary index. ProjectionType ProjectionType `json:"projectionType" yaml:"projectionType"` // The attribute of a sort key for the local secondary index. SortKey *Attribute `json:"sortKey" yaml:"sortKey"` }
Properties for a local secondary index.
TODO: EXAMPLE
type Operation ¶
type Operation string
Supported DynamoDB table operations.
const ( Operation_GET_ITEM Operation = "GET_ITEM" Operation_BATCH_GET_ITEM Operation = "BATCH_GET_ITEM" Operation_SCAN Operation = "SCAN" Operation_QUERY Operation = "QUERY" Operation_GET_RECORDS Operation = "GET_RECORDS" Operation_PUT_ITEM Operation = "PUT_ITEM" Operation_DELETE_ITEM Operation = "DELETE_ITEM" Operation_UPDATE_ITEM Operation = "UPDATE_ITEM" Operation_BATCH_WRITE_ITEM Operation = "BATCH_WRITE_ITEM" Operation_TRANSACT_WRITE_ITEMS Operation = "TRANSACT_WRITE_ITEMS" Operation_TRANSACT_GET_ITEMS Operation = "TRANSACT_GET_ITEMS" Operation_EXECUTE_TRANSACTION Operation = "EXECUTE_TRANSACTION" Operation_BATCH_EXECUTE_STATEMENT Operation = "BATCH_EXECUTE_STATEMENT" Operation_EXECUTE_STATEMENT Operation = "EXECUTE_STATEMENT" )
type ProjectionType ¶
type ProjectionType string
The set of attributes that are projected into the index. See: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_Projection.html
const ( ProjectionType_KEYS_ONLY ProjectionType = "KEYS_ONLY" ProjectionType_INCLUDE ProjectionType = "INCLUDE" ProjectionType_ALL ProjectionType = "ALL" )
type SchemaOptions ¶
type SchemaOptions struct { // Partition key attribute definition. PartitionKey *Attribute `json:"partitionKey" yaml:"partitionKey"` // Sort key attribute definition. SortKey *Attribute `json:"sortKey" yaml:"sortKey"` }
Represents the table schema attributes.
TODO: EXAMPLE
type SecondaryIndexProps ¶
type SecondaryIndexProps struct { // The name of the secondary index. IndexName *string `json:"indexName" yaml:"indexName"` // The non-key attributes that are projected into the secondary index. NonKeyAttributes *[]*string `json:"nonKeyAttributes" yaml:"nonKeyAttributes"` // The set of attributes that are projected into the secondary index. ProjectionType ProjectionType `json:"projectionType" yaml:"projectionType"` }
Properties for a secondary index.
TODO: EXAMPLE
type StreamViewType ¶
type StreamViewType string
When an item in the table is modified, StreamViewType determines what information is written to the stream for this table. See: https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_StreamSpecification.html
const ( StreamViewType_NEW_IMAGE StreamViewType = "NEW_IMAGE" StreamViewType_OLD_IMAGE StreamViewType = "OLD_IMAGE" StreamViewType_NEW_AND_OLD_IMAGES StreamViewType = "NEW_AND_OLD_IMAGES" StreamViewType_KEYS_ONLY StreamViewType = "KEYS_ONLY" )
type SystemErrorsForOperationsMetricOptions ¶
type SystemErrorsForOperationsMetricOptions struct { // Account which this metric comes from. Account *string `json:"account" yaml:"account"` // The hex color code, prefixed with '#' (e.g. '#00ff00'), to use when this metric is rendered on a graph. The `Color` class has a set of standard colors that can be used here. Color *string `json:"color" yaml:"color"` // Dimensions of the metric. DimensionsMap *map[string]*string `json:"dimensionsMap" yaml:"dimensionsMap"` // Label for this metric when added to a Graph in a Dashboard. Label *string `json:"label" yaml:"label"` // The period over which the specified statistic is applied. Period awscdk.Duration `json:"period" yaml:"period"` // Region which this metric comes from. Region *string `json:"region" yaml:"region"` // What function to use for aggregating. // // Can be one of the following: // // - "Minimum" | "min" // - "Maximum" | "max" // - "Average" | "avg" // - "Sum" | "sum" // - "SampleCount | "n" // - "pNN.NN" Statistic *string `json:"statistic" yaml:"statistic"` // Unit used to filter the metric stream. // // Only refer to datums emitted to the metric stream with the given unit and // ignore all others. Only useful when datums are being emitted to the same // metric stream under different units. // // The default is to use all matric datums in the stream, regardless of unit, // which is recommended in nearly all cases. // // CloudWatch does not honor this property for graphs. Unit awscloudwatch.Unit `json:"unit" yaml:"unit"` // The operations to apply the metric to. Operations *[]Operation `json:"operations" yaml:"operations"` }
Options for configuring a system errors metric that considers multiple operations.
TODO: EXAMPLE
type Table ¶
type Table interface { awscdk.Resource ITable EncryptionKey() awskms.IKey Env() *awscdk.ResourceEnvironment HasIndex() *bool Node() constructs.Node PhysicalName() *string RegionalArns() *[]*string Stack() awscdk.Stack TableArn() *string TableName() *string TableStreamArn() *string AddGlobalSecondaryIndex(props *GlobalSecondaryIndexProps) AddLocalSecondaryIndex(props *LocalSecondaryIndexProps) ApplyRemovalPolicy(policy awscdk.RemovalPolicy) AutoScaleGlobalSecondaryIndexReadCapacity(indexName *string, props *EnableScalingProps) IScalableTableAttribute AutoScaleGlobalSecondaryIndexWriteCapacity(indexName *string, props *EnableScalingProps) IScalableTableAttribute AutoScaleReadCapacity(props *EnableScalingProps) IScalableTableAttribute AutoScaleWriteCapacity(props *EnableScalingProps) IScalableTableAttribute GeneratePhysicalName() *string GetResourceArnAttribute(arnAttr *string, arnComponents *awscdk.ArnComponents) *string GetResourceNameAttribute(nameAttr *string) *string Grant(grantee awsiam.IGrantable, actions ...*string) awsiam.Grant GrantFullAccess(grantee awsiam.IGrantable) awsiam.Grant GrantReadData(grantee awsiam.IGrantable) awsiam.Grant GrantReadWriteData(grantee awsiam.IGrantable) awsiam.Grant GrantStream(grantee awsiam.IGrantable, actions ...*string) awsiam.Grant GrantStreamRead(grantee awsiam.IGrantable) awsiam.Grant GrantTableListStreams(grantee awsiam.IGrantable) awsiam.Grant GrantWriteData(grantee awsiam.IGrantable) awsiam.Grant Metric(metricName *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricConditionalCheckFailedRequests(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricConsumedReadCapacityUnits(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricConsumedWriteCapacityUnits(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricSuccessfulRequestLatency(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricSystemErrorsForOperations(props *SystemErrorsForOperationsMetricOptions) awscloudwatch.IMetric MetricThrottledRequests(props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricThrottledRequestsForOperation(operation *string, props *awscloudwatch.MetricOptions) awscloudwatch.Metric MetricUserErrors(props *awscloudwatch.MetricOptions) awscloudwatch.Metric Schema(indexName *string) *SchemaOptions ToString() *string }
Provides a DynamoDB table.
TODO: EXAMPLE
func NewTable ¶
func NewTable(scope constructs.Construct, id *string, props *TableProps) Table
type TableAttributes ¶
type TableAttributes struct { // KMS encryption key, if this table uses a customer-managed encryption key. EncryptionKey awskms.IKey `json:"encryptionKey" yaml:"encryptionKey"` // The name of the global indexes set for this Table. // // Note that you need to set either this property, // or {@link localIndexes}, // if you want methods like grantReadData() // to grant permissions for indexes as well as the table itself. GlobalIndexes *[]*string `json:"globalIndexes" yaml:"globalIndexes"` // The name of the local indexes set for this Table. // // Note that you need to set either this property, // or {@link globalIndexes}, // if you want methods like grantReadData() // to grant permissions for indexes as well as the table itself. LocalIndexes *[]*string `json:"localIndexes" yaml:"localIndexes"` // The ARN of the dynamodb table. // // One of this, or {@link tableName}, is required. TableArn *string `json:"tableArn" yaml:"tableArn"` // The table name of the dynamodb table. // // One of this, or {@link tableArn}, is required. TableName *string `json:"tableName" yaml:"tableName"` // The ARN of the table's stream. TableStreamArn *string `json:"tableStreamArn" yaml:"tableStreamArn"` }
Reference to a dynamodb table.
TODO: EXAMPLE
type TableClass ¶ added in v2.11.0
type TableClass string
DynamoDB's table class.
TODO: EXAMPLE
See: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.TableClasses.html
const ( TableClass_STANDARD TableClass = "STANDARD" TableClass_STANDARD_INFREQUENT_ACCESS TableClass = "STANDARD_INFREQUENT_ACCESS" )
type TableEncryption ¶
type TableEncryption string
What kind of server-side encryption to apply to this table.
TODO: EXAMPLE
const ( TableEncryption_DEFAULT TableEncryption = "DEFAULT" TableEncryption_CUSTOMER_MANAGED TableEncryption = "CUSTOMER_MANAGED" TableEncryption_AWS_MANAGED TableEncryption = "AWS_MANAGED" )
type TableOptions ¶
type TableOptions struct { // Partition key attribute definition. PartitionKey *Attribute `json:"partitionKey" yaml:"partitionKey"` // Sort key attribute definition. SortKey *Attribute `json:"sortKey" yaml:"sortKey"` // Specify how you are charged for read and write throughput and how you manage capacity. BillingMode BillingMode `json:"billingMode" yaml:"billingMode"` // Whether CloudWatch contributor insights is enabled. ContributorInsightsEnabled *bool `json:"contributorInsightsEnabled" yaml:"contributorInsightsEnabled"` // Whether server-side encryption with an AWS managed customer master key is enabled. // // This property cannot be set if `serverSideEncryption` is set. // // > **NOTE**: if you set this to `CUSTOMER_MANAGED` and `encryptionKey` is not // > specified, the key that the Tablet generates for you will be created with // > default permissions. If you are using CDKv2, these permissions will be // > sufficient to enable the key for use with DynamoDB tables. If you are // > using CDKv1, make sure the feature flag // > `@aws-cdk/aws-kms:defaultKeyPolicies` is set to `true` in your `cdk.json`. Encryption TableEncryption `json:"encryption" yaml:"encryption"` // External KMS key to use for table encryption. // // This property can only be set if `encryption` is set to `TableEncryption.CUSTOMER_MANAGED`. EncryptionKey awskms.IKey `json:"encryptionKey" yaml:"encryptionKey"` // Whether point-in-time recovery is enabled. PointInTimeRecovery *bool `json:"pointInTimeRecovery" yaml:"pointInTimeRecovery"` // The read capacity for the table. // // Careful if you add Global Secondary Indexes, as // those will share the table's provisioned throughput. // // Can only be provided if billingMode is Provisioned. ReadCapacity *float64 `json:"readCapacity" yaml:"readCapacity"` // The removal policy to apply to the DynamoDB Table. RemovalPolicy awscdk.RemovalPolicy `json:"removalPolicy" yaml:"removalPolicy"` // Regions where replica tables will be created. ReplicationRegions *[]*string `json:"replicationRegions" yaml:"replicationRegions"` // The timeout for a table replication operation in a single region. ReplicationTimeout awscdk.Duration `json:"replicationTimeout" yaml:"replicationTimeout"` // When an item in the table is modified, StreamViewType determines what information is written to the stream for this table. Stream StreamViewType `json:"stream" yaml:"stream"` // Specify the table class. TableClass TableClass `json:"tableClass" yaml:"tableClass"` // The name of TTL attribute. TimeToLiveAttribute *string `json:"timeToLiveAttribute" yaml:"timeToLiveAttribute"` // Indicates whether CloudFormation stack waits for replication to finish. // // If set to false, the CloudFormation resource will mark the resource as // created and replication will be completed asynchronously. This property is // ignored if replicationRegions property is not set. // // DO NOT UNSET this property if adding/removing multiple replicationRegions // in one deployment, as CloudFormation only supports one region replication // at a time. CDK overcomes this limitation by waiting for replication to // finish before starting new replicationRegion. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-replicas // WaitForReplicationToFinish *bool `json:"waitForReplicationToFinish" yaml:"waitForReplicationToFinish"` // The write capacity for the table. // // Careful if you add Global Secondary Indexes, as // those will share the table's provisioned throughput. // // Can only be provided if billingMode is Provisioned. WriteCapacity *float64 `json:"writeCapacity" yaml:"writeCapacity"` }
Properties of a DynamoDB Table.
Use {@link TableProps} for all table properties
TODO: EXAMPLE
type TableProps ¶
type TableProps struct { // Partition key attribute definition. PartitionKey *Attribute `json:"partitionKey" yaml:"partitionKey"` // Sort key attribute definition. SortKey *Attribute `json:"sortKey" yaml:"sortKey"` // Specify how you are charged for read and write throughput and how you manage capacity. BillingMode BillingMode `json:"billingMode" yaml:"billingMode"` // Whether CloudWatch contributor insights is enabled. ContributorInsightsEnabled *bool `json:"contributorInsightsEnabled" yaml:"contributorInsightsEnabled"` // Whether server-side encryption with an AWS managed customer master key is enabled. // // This property cannot be set if `serverSideEncryption` is set. // // > **NOTE**: if you set this to `CUSTOMER_MANAGED` and `encryptionKey` is not // > specified, the key that the Tablet generates for you will be created with // > default permissions. If you are using CDKv2, these permissions will be // > sufficient to enable the key for use with DynamoDB tables. If you are // > using CDKv1, make sure the feature flag // > `@aws-cdk/aws-kms:defaultKeyPolicies` is set to `true` in your `cdk.json`. Encryption TableEncryption `json:"encryption" yaml:"encryption"` // External KMS key to use for table encryption. // // This property can only be set if `encryption` is set to `TableEncryption.CUSTOMER_MANAGED`. EncryptionKey awskms.IKey `json:"encryptionKey" yaml:"encryptionKey"` // Whether point-in-time recovery is enabled. PointInTimeRecovery *bool `json:"pointInTimeRecovery" yaml:"pointInTimeRecovery"` // The read capacity for the table. // // Careful if you add Global Secondary Indexes, as // those will share the table's provisioned throughput. // // Can only be provided if billingMode is Provisioned. ReadCapacity *float64 `json:"readCapacity" yaml:"readCapacity"` // The removal policy to apply to the DynamoDB Table. RemovalPolicy awscdk.RemovalPolicy `json:"removalPolicy" yaml:"removalPolicy"` // Regions where replica tables will be created. ReplicationRegions *[]*string `json:"replicationRegions" yaml:"replicationRegions"` // The timeout for a table replication operation in a single region. ReplicationTimeout awscdk.Duration `json:"replicationTimeout" yaml:"replicationTimeout"` // When an item in the table is modified, StreamViewType determines what information is written to the stream for this table. Stream StreamViewType `json:"stream" yaml:"stream"` // Specify the table class. TableClass TableClass `json:"tableClass" yaml:"tableClass"` // The name of TTL attribute. TimeToLiveAttribute *string `json:"timeToLiveAttribute" yaml:"timeToLiveAttribute"` // Indicates whether CloudFormation stack waits for replication to finish. // // If set to false, the CloudFormation resource will mark the resource as // created and replication will be completed asynchronously. This property is // ignored if replicationRegions property is not set. // // DO NOT UNSET this property if adding/removing multiple replicationRegions // in one deployment, as CloudFormation only supports one region replication // at a time. CDK overcomes this limitation by waiting for replication to // finish before starting new replicationRegion. // See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-globaltable.html#cfn-dynamodb-globaltable-replicas // WaitForReplicationToFinish *bool `json:"waitForReplicationToFinish" yaml:"waitForReplicationToFinish"` // The write capacity for the table. // // Careful if you add Global Secondary Indexes, as // those will share the table's provisioned throughput. // // Can only be provided if billingMode is Provisioned. WriteCapacity *float64 `json:"writeCapacity" yaml:"writeCapacity"` // Kinesis Data Stream to capture item-level changes for the table. KinesisStream awskinesis.IStream `json:"kinesisStream" yaml:"kinesisStream"` // Enforces a particular physical table name. TableName *string `json:"tableName" yaml:"tableName"` }
Properties for a DynamoDB Table.
TODO: EXAMPLE
type UtilizationScalingProps ¶
type UtilizationScalingProps struct { // Indicates whether scale in by the target tracking policy is disabled. // // If the value is true, scale in is disabled and the target tracking policy // won't remove capacity from the scalable resource. Otherwise, scale in is // enabled and the target tracking policy can remove capacity from the // scalable resource. DisableScaleIn *bool `json:"disableScaleIn" yaml:"disableScaleIn"` // A name for the scaling policy. PolicyName *string `json:"policyName" yaml:"policyName"` // Period after a scale in activity completes before another scale in activity can start. ScaleInCooldown awscdk.Duration `json:"scaleInCooldown" yaml:"scaleInCooldown"` // Period after a scale out activity completes before another scale out activity can start. ScaleOutCooldown awscdk.Duration `json:"scaleOutCooldown" yaml:"scaleOutCooldown"` // Target utilization percentage for the attribute. TargetUtilizationPercent *float64 `json:"targetUtilizationPercent" yaml:"targetUtilizationPercent"` }
Properties for enabling DynamoDB utilization tracking.
TODO: EXAMPLE