AWS Fundamentals Logo
AWS Fundamentals
AWS::Cassandra::Type

Cassandra Type

Resource schema for AWS::Cassandra::Type

Properties

3 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
Fields
Array<Field>
RequiredCreate-only
KeyspaceName
string
RequiredCreate-only
TypeName
string
RequiredCreate-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
DirectParentTypesArray<string>List of parent User-Defined Types that directly reference the User-Defined Type in their fields.
DirectReferringTablesArray<string>List of Tables that directly reference the User-Defined Type in their columns.
KeyspaceArnstringARN of the Keyspace which contains the User-Defined Type.
LastModifiedTimestampnumberTimestamp of the last time the User-Defined Type's meta data was modified.
MaxNestingDepthintegerMaximum nesting depth of the User-Defined Type across the field types.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Cassandra::Type

Resources:
  MyResource:
    Type: AWS::Cassandra::Type
    Properties:
      KeyspaceName: "my-keyspacename"
      TypeName: "my-typename"
      Fields: []

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

cassandra:Createcassandra:Select

read

cassandra:Select

delete

cassandra:Dropcassandra:Select

list

cassandra:Select

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceCassandra
Properties8
Required3
TaggingNot supported
Primary IDKeyspaceName

Supported Operations

CreateReadDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

KeyspaceNameTypeNameFields

Related Resources

External Links