Modify Cluster
| cloudhsmv2_modify_cluster | R Documentation | 
Modifies CloudHSM cluster¶
Description¶
Modifies CloudHSM cluster.
Cross-account use: No. You cannot perform this operation on an CloudHSM cluster in a different Amazon Web Services account.
Usage¶
cloudhsmv2_modify_cluster(HsmType, BackupRetentionPolicy, ClusterId)
Arguments¶
| HsmType | The desired HSM type of the cluster. | 
| BackupRetentionPolicy | A policy that defines how the service retains backups. | 
| ClusterId | [required] The identifier (ID) of the cluster that you want to
modify. To find the cluster ID, use
 | 
Value¶
A list with the following syntax:
list(
  Cluster = list(
    BackupPolicy = "DEFAULT",
    BackupRetentionPolicy = list(
      Type = "DAYS",
      Value = "string"
    ),
    ClusterId = "string",
    CreateTimestamp = as.POSIXct(
      "2015-01-01"
    ),
    Hsms = list(
      list(
        AvailabilityZone = "string",
        ClusterId = "string",
        SubnetId = "string",
        EniId = "string",
        EniIp = "string",
        EniIpV6 = "string",
        HsmId = "string",
        HsmType = "string",
        State = "CREATE_IN_PROGRESS"|"ACTIVE"|"DEGRADED"|"DELETE_IN_PROGRESS"|"DELETED",
        StateMessage = "string"
      )
    ),
    HsmType = "string",
    HsmTypeRollbackExpiration = as.POSIXct(
      "2015-01-01"
    ),
    PreCoPassword = "string",
    SecurityGroup = "string",
    SourceBackupId = "string",
    State = "CREATE_IN_PROGRESS"|"UNINITIALIZED"|"INITIALIZE_IN_PROGRESS"|"INITIALIZED"|"ACTIVE"|"UPDATE_IN_PROGRESS"|"MODIFY_IN_PROGRESS"|"ROLLBACK_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"DELETED"|"DEGRADED",
    StateMessage = "string",
    SubnetMapping = list(
      "string"
    ),
    VpcId = "string",
    NetworkType = "IPV4"|"DUALSTACK",
    Certificates = list(
      ClusterCsr = "string",
      HsmCertificate = "string",
      AwsHardwareCertificate = "string",
      ManufacturerHardwareCertificate = "string",
      ClusterCertificate = "string"
    ),
    TagList = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    Mode = "FIPS"|"NON_FIPS"
  )
)
Request syntax¶
svc$modify_cluster(
  HsmType = "string",
  BackupRetentionPolicy = list(
    Type = "DAYS",
    Value = "string"
  ),
  ClusterId = "string"
)