본문 바로가기

카테고리 없음

2020-05-01 10시 개발자 글 모음 | "Amazon Keyspaces for" 외 10개 이야기

필리핀을 사로잡고 싶다면 브이로그에 도전하라 by ITFIND


    [KISDI STAT Report Vol.20-08] 와이파이의 확산과 이용 특성 by ITFIND


      코로나19 영향 속 새롭게 떠오르는 中 가정용 프린터 시장 by ITFIND


        위치정보 산업 동향 보고서 2020년 4월 2호 by ITFIND


          [2020년 Vol.04 KISA Report-4월호] 코로나19 판데믹 시대에 새롭게 주목받는 스타트업 등 9편 by ITFIND


            일본 교육시장의 새로운 기회! "GIGA 스쿨 구상” by ITFIND


              Rider 2020.1이 출시되었습니다! by JetBrains 코리아

              • This entry was posted in Rider and tagged JetBrains Rider Rider
              • Bookmark the permalink


              WebStorm 학습 플러그인 소개 by JetBrains 코리아

              • This entry was posted in WebStorm and tagged Learning WebStorm 웹스톰 플러그인
              • Bookmark the permalink


              정보박사 5월 1일 저녁8시 ITQ시험개정 유튜브 실시간 방송 안내 by 정보박사


                [코드잇] Git에서 conflict(충돌) 해결하기 by 코드잇


                  Amazon Keyspaces for Apache Cassandra 정식 출시 (서울 리전 포함) by AWS Korea

                  • AWSTemplateFormatVersion: '2010-09-09' 설명: Amazon Keyspaces for Apache Cassandra 예제 Resources: BookstoreKeyspace: Type: AWS::Cassandra::Keyspace Properties: KeyspaceName: bookstore BooksTable: Type: AWS::Cassandra::Table Properties: TableName: books KeyspaceName: !Ref BookstoreKeyspace PartitionKeyColumns: - ColumnName: isbn ColumnType: text RegularColumns: - ColumnName: title ColumnType: text - ColumnName: author ColumnType: text - ColumnName: pages ColumnType: int - ColumnName: year_of_publication ColumnType: int Outputs: BookstoreKeyspaceName: Description: "Keyspace name" Value: !Ref BookstoreKeyspace # Or !Select [0
                  • AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Description: Sample Books API using Cassandra as database Globals: Function: Timeout: 30 Resources: BookstoreKeyspace: Type: AWS::Cassandra::Keyspace BooksTable: Type: AWS::Cassandra::Table Properties: KeyspaceName: !Ref BookstoreKeyspace PartitionKeyColumns: - ColumnName: isbn ColumnType: text RegularColumns: - ColumnName: title ColumnType: text - ColumnName: author ColumnType: text - ColumnName: pages ColumnType: int - ColumnName: year_of_publication ColumnType: int BooksFunction: Type: AWS::Serverless::Function Properties: CodeUri: BooksFunction Handler: books
                  • !Ref BooksTable]] # !Ref BooksTable returns "Keyspace|Table" - Effect: Allow Action: - cassandra:Modify Resource: - !Join - "" - - !Sub "arn:aws:cassandra:${AWS::Region}:${AWS::AccountId}:/keyspace/${BookstoreKeyspace}/table/" - !Select [1