Skip to content

updateCloudNativeCustomerSettings

Updates the cloud-native customer settings for the calling account and returns the updated values. Only the fields provided in the input are persisted; omitted fields are left unchanged.

Arguments

Argument Type Description
input (required) UpdateCloudNativeCustomerSettingsInput! Cloud-native customer settings to update; only fields that are provided are persisted, omitted fields are left unchanged.

Returns

UpdateCloudNativeCustomerSettingsReply!

Sample

mutation UpdateCloudNativeCustomerSettings($input: UpdateCloudNativeCustomerSettingsInput!) {
  updateCloudNativeCustomerSettings(input: $input) {
    isS3GlacierIrTierEnabled
  }
}
{
  "input": {}
}
{
  "data": {
    "updateCloudNativeCustomerSettings": {
      "isS3GlacierIrTierEnabled": true
    }
  }
}