evalphobia/aws-sdk-go-wrapper

View on GitHub
dynamodb/type.go

Summary

Maintainability
C
1 day
Test Coverage

File type.go has 693 lines of code (exceeds 500 allowed). Consider refactoring.
Open

package dynamodb

import (
    "strconv"
    "time"
Severity: Minor
Found in dynamodb/type.go - About 6 hrs to fix

    Method AttributeValue.ToSDK has 59 lines of code (exceeds 50 allowed). Consider refactoring.
    Open

    func (r AttributeValue) ToSDK() *SDK.AttributeValue {
        o := SDK.AttributeValue{}
    
        switch {
        case len(r.Binary) != 0:
    Severity: Minor
    Found in dynamodb/type.go - About 1 hr to fix

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

      func NewBillingModeSummary(out *SDK.BillingModeSummary) BillingModeSummary {
          v := BillingModeSummary{}
          if out == nil {
              return v
          }
      Severity: Major
      Found in dynamodb/type.go and 3 other locations - About 45 mins to fix
      dynamodb/type.go on lines 145..158
      dynamodb/type.go on lines 476..489
      dynamodb/type_attribute_definition.go on lines 18..31

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

      func NewStreamSpecification(out *SDK.StreamSpecification) StreamSpecification {
          v := StreamSpecification{}
          if out == nil {
              return v
          }
      Severity: Major
      Found in dynamodb/type.go and 3 other locations - About 45 mins to fix
      dynamodb/type.go on lines 18..31
      dynamodb/type.go on lines 145..158
      dynamodb/type_attribute_definition.go on lines 18..31

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      func newCapacity(o *SDK.Capacity) Capacity {
          result := Capacity{}
          if o == nil {
              return result
          }
      Severity: Minor
      Found in dynamodb/type.go and 1 other location - About 45 mins to fix
      dynamodb/type.go on lines 440..456

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      func NewSSEDescription(out *SDK.SSEDescription) SSEDescription {
          v := SSEDescription{}
          if out == nil {
              return v
          }
      Severity: Minor
      Found in dynamodb/type.go and 1 other location - About 45 mins to fix
      dynamodb/type.go on lines 788..804

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 4 locations. Consider refactoring.
      Open

      func NewKeySchemaElement(out *SDK.KeySchemaElement) KeySchemaElement {
          v := KeySchemaElement{}
          if out == nil {
              return v
          }
      Severity: Major
      Found in dynamodb/type.go and 3 other locations - About 45 mins to fix
      dynamodb/type.go on lines 18..31
      dynamodb/type.go on lines 476..489
      dynamodb/type_attribute_definition.go on lines 18..31

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 113.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      exported method KeysAndAttributes.ToSDK should have comment or be unexported
      Open

      func (r KeysAndAttributes) ToSDK() *SDK.KeysAndAttributes {
      Severity: Minor
      Found in dynamodb/type.go by golint

      exported type KeysAndAttributes should have comment or be unexported
      Open

      type KeysAndAttributes struct {
      Severity: Minor
      Found in dynamodb/type.go by golint

      exported type Capacity should have comment or be unexported
      Open

      type Capacity struct {
      Severity: Minor
      Found in dynamodb/type.go by golint

      exported type AttributeValue should have comment or be unexported
      Open

      type AttributeValue struct {
      Severity: Minor
      Found in dynamodb/type.go by golint

      exported method AttributeValue.ToSDK should have comment or be unexported
      Open

      func (r AttributeValue) ToSDK() *SDK.AttributeValue {
      Severity: Minor
      Found in dynamodb/type.go by golint

      exported type ConsumedCapacity should have comment or be unexported
      Open

      type ConsumedCapacity struct {
      Severity: Minor
      Found in dynamodb/type.go by golint

      There are no issues that match your filters.

      Category
      Status