/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include using namespace Aws::Utils::Json; using namespace Aws::Utils; namespace Aws { namespace SecurityHub { namespace Model { AwsBackupRecoveryPointDetails::AwsBackupRecoveryPointDetails() : m_backupSizeInBytes(0), m_backupSizeInBytesHasBeenSet(false), m_backupVaultArnHasBeenSet(false), m_backupVaultNameHasBeenSet(false), m_calculatedLifecycleHasBeenSet(false), m_completionDateHasBeenSet(false), m_createdByHasBeenSet(false), m_creationDateHasBeenSet(false), m_encryptionKeyArnHasBeenSet(false), m_iamRoleArnHasBeenSet(false), m_isEncrypted(false), m_isEncryptedHasBeenSet(false), m_lastRestoreTimeHasBeenSet(false), m_lifecycleHasBeenSet(false), m_recoveryPointArnHasBeenSet(false), m_resourceArnHasBeenSet(false), m_resourceTypeHasBeenSet(false), m_sourceBackupVaultArnHasBeenSet(false), m_statusHasBeenSet(false), m_statusMessageHasBeenSet(false), m_storageClassHasBeenSet(false) { } AwsBackupRecoveryPointDetails::AwsBackupRecoveryPointDetails(JsonView jsonValue) : m_backupSizeInBytes(0), m_backupSizeInBytesHasBeenSet(false), m_backupVaultArnHasBeenSet(false), m_backupVaultNameHasBeenSet(false), m_calculatedLifecycleHasBeenSet(false), m_completionDateHasBeenSet(false), m_createdByHasBeenSet(false), m_creationDateHasBeenSet(false), m_encryptionKeyArnHasBeenSet(false), m_iamRoleArnHasBeenSet(false), m_isEncrypted(false), m_isEncryptedHasBeenSet(false), m_lastRestoreTimeHasBeenSet(false), m_lifecycleHasBeenSet(false), m_recoveryPointArnHasBeenSet(false), m_resourceArnHasBeenSet(false), m_resourceTypeHasBeenSet(false), m_sourceBackupVaultArnHasBeenSet(false), m_statusHasBeenSet(false), m_statusMessageHasBeenSet(false), m_storageClassHasBeenSet(false) { *this = jsonValue; } AwsBackupRecoveryPointDetails& AwsBackupRecoveryPointDetails::operator =(JsonView jsonValue) { if(jsonValue.ValueExists("BackupSizeInBytes")) { m_backupSizeInBytes = jsonValue.GetInt64("BackupSizeInBytes"); m_backupSizeInBytesHasBeenSet = true; } if(jsonValue.ValueExists("BackupVaultArn")) { m_backupVaultArn = jsonValue.GetString("BackupVaultArn"); m_backupVaultArnHasBeenSet = true; } if(jsonValue.ValueExists("BackupVaultName")) { m_backupVaultName = jsonValue.GetString("BackupVaultName"); m_backupVaultNameHasBeenSet = true; } if(jsonValue.ValueExists("CalculatedLifecycle")) { m_calculatedLifecycle = jsonValue.GetObject("CalculatedLifecycle"); m_calculatedLifecycleHasBeenSet = true; } if(jsonValue.ValueExists("CompletionDate")) { m_completionDate = jsonValue.GetString("CompletionDate"); m_completionDateHasBeenSet = true; } if(jsonValue.ValueExists("CreatedBy")) { m_createdBy = jsonValue.GetObject("CreatedBy"); m_createdByHasBeenSet = true; } if(jsonValue.ValueExists("CreationDate")) { m_creationDate = jsonValue.GetString("CreationDate"); m_creationDateHasBeenSet = true; } if(jsonValue.ValueExists("EncryptionKeyArn")) { m_encryptionKeyArn = jsonValue.GetString("EncryptionKeyArn"); m_encryptionKeyArnHasBeenSet = true; } if(jsonValue.ValueExists("IamRoleArn")) { m_iamRoleArn = jsonValue.GetString("IamRoleArn"); m_iamRoleArnHasBeenSet = true; } if(jsonValue.ValueExists("IsEncrypted")) { m_isEncrypted = jsonValue.GetBool("IsEncrypted"); m_isEncryptedHasBeenSet = true; } if(jsonValue.ValueExists("LastRestoreTime")) { m_lastRestoreTime = jsonValue.GetString("LastRestoreTime"); m_lastRestoreTimeHasBeenSet = true; } if(jsonValue.ValueExists("Lifecycle")) { m_lifecycle = jsonValue.GetObject("Lifecycle"); m_lifecycleHasBeenSet = true; } if(jsonValue.ValueExists("RecoveryPointArn")) { m_recoveryPointArn = jsonValue.GetString("RecoveryPointArn"); m_recoveryPointArnHasBeenSet = true; } if(jsonValue.ValueExists("ResourceArn")) { m_resourceArn = jsonValue.GetString("ResourceArn"); m_resourceArnHasBeenSet = true; } if(jsonValue.ValueExists("ResourceType")) { m_resourceType = jsonValue.GetString("ResourceType"); m_resourceTypeHasBeenSet = true; } if(jsonValue.ValueExists("SourceBackupVaultArn")) { m_sourceBackupVaultArn = jsonValue.GetString("SourceBackupVaultArn"); m_sourceBackupVaultArnHasBeenSet = true; } if(jsonValue.ValueExists("Status")) { m_status = jsonValue.GetString("Status"); m_statusHasBeenSet = true; } if(jsonValue.ValueExists("StatusMessage")) { m_statusMessage = jsonValue.GetString("StatusMessage"); m_statusMessageHasBeenSet = true; } if(jsonValue.ValueExists("StorageClass")) { m_storageClass = jsonValue.GetString("StorageClass"); m_storageClassHasBeenSet = true; } return *this; } JsonValue AwsBackupRecoveryPointDetails::Jsonize() const { JsonValue payload; if(m_backupSizeInBytesHasBeenSet) { payload.WithInt64("BackupSizeInBytes", m_backupSizeInBytes); } if(m_backupVaultArnHasBeenSet) { payload.WithString("BackupVaultArn", m_backupVaultArn); } if(m_backupVaultNameHasBeenSet) { payload.WithString("BackupVaultName", m_backupVaultName); } if(m_calculatedLifecycleHasBeenSet) { payload.WithObject("CalculatedLifecycle", m_calculatedLifecycle.Jsonize()); } if(m_completionDateHasBeenSet) { payload.WithString("CompletionDate", m_completionDate); } if(m_createdByHasBeenSet) { payload.WithObject("CreatedBy", m_createdBy.Jsonize()); } if(m_creationDateHasBeenSet) { payload.WithString("CreationDate", m_creationDate); } if(m_encryptionKeyArnHasBeenSet) { payload.WithString("EncryptionKeyArn", m_encryptionKeyArn); } if(m_iamRoleArnHasBeenSet) { payload.WithString("IamRoleArn", m_iamRoleArn); } if(m_isEncryptedHasBeenSet) { payload.WithBool("IsEncrypted", m_isEncrypted); } if(m_lastRestoreTimeHasBeenSet) { payload.WithString("LastRestoreTime", m_lastRestoreTime); } if(m_lifecycleHasBeenSet) { payload.WithObject("Lifecycle", m_lifecycle.Jsonize()); } if(m_recoveryPointArnHasBeenSet) { payload.WithString("RecoveryPointArn", m_recoveryPointArn); } if(m_resourceArnHasBeenSet) { payload.WithString("ResourceArn", m_resourceArn); } if(m_resourceTypeHasBeenSet) { payload.WithString("ResourceType", m_resourceType); } if(m_sourceBackupVaultArnHasBeenSet) { payload.WithString("SourceBackupVaultArn", m_sourceBackupVaultArn); } if(m_statusHasBeenSet) { payload.WithString("Status", m_status); } if(m_statusMessageHasBeenSet) { payload.WithString("StatusMessage", m_statusMessage); } if(m_storageClassHasBeenSet) { payload.WithString("StorageClass", m_storageClass); } return payload; } } // namespace Model } // namespace SecurityHub } // namespace Aws