CfnSimpleTableMixinProps
- class aws_cdk.mixins_preview.aws_sam.mixins.CfnSimpleTableMixinProps(*, primary_key=None, provisioned_throughput=None, sse_specification=None, table_name=None, tags=None)
Bases:
objectProperties for CfnSimpleTablePropsMixin.
- Parameters:
primary_key (
Union[IResolvable,PrimaryKeyProperty,Dict[str,Any],None])provisioned_throughput (
Union[IResolvable,ProvisionedThroughputProperty,Dict[str,Any],None])sse_specification (
Union[IResolvable,SSESpecificationProperty,Dict[str,Any],None])table_name (
Optional[str])tags (
Optional[Mapping[str,str]])
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_sam import mixins as sam_mixins cfn_simple_table_mixin_props = sam_mixins.CfnSimpleTableMixinProps( primary_key=sam_mixins.CfnSimpleTablePropsMixin.PrimaryKeyProperty( name="name", type="type" ), provisioned_throughput=sam_mixins.CfnSimpleTablePropsMixin.ProvisionedThroughputProperty( read_capacity_units=123, write_capacity_units=123 ), sse_specification=sam_mixins.CfnSimpleTablePropsMixin.SSESpecificationProperty( sse_enabled=False ), table_name="tableName", tags={ "tags_key": "tags" } )
Attributes
- primary_key
-
- Type:
see
- provisioned_throughput
-
- Type:
see
- sse_specification
-
- Type:
see
- table_name
-
- Type:
see