Skip to content

Commit

Permalink
rename KMSMasterKeyArn -> KMSMasterKeyARN
Browse files Browse the repository at this point in the history
  • Loading branch information
guregu committed Jan 27, 2024
1 parent ef69352 commit 2b8cde0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion describetable.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ func newDescription(table *types.TableDescription) Description {
sseDesc.InaccessibleEncryptionDateTime = *table.SSEDescription.InaccessibleEncryptionDateTime
}
if table.SSEDescription.KMSMasterKeyArn != nil {
sseDesc.KMSMasterKeyArn = *table.SSEDescription.KMSMasterKeyArn
sseDesc.KMSMasterKeyARN = *table.SSEDescription.KMSMasterKeyArn
}
if table.SSEDescription.SSEType != "" {
sseDesc.SSEType = table.SSEDescription.SSEType
Expand Down
2 changes: 1 addition & 1 deletion sse.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const (

type SSEDescription struct {
InaccessibleEncryptionDateTime time.Time
KMSMasterKeyArn string
KMSMasterKeyARN string
SSEType types.SSEType
Status types.SSEStatus
}
Expand Down

0 comments on commit 2b8cde0

Please sign in to comment.