/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * The API Schema for AWS Route53 Recovery Readiness Cells. */ export interface AwsRoute53RecoveryreadinessCell { /** * The name of the cell to create. */ CellName?: string; /** * The Amazon Resource Name (ARN) of the cell. */ CellArn?: string; /** * A list of cell Amazon Resource Names (ARNs) contained within this cell, for use in nested cells. For example, Availability Zones within specific Regions. * * @maxItems 5 */ Cells?: | [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string]; /** * The readiness scope for the cell, which can be a cell Amazon Resource Name (ARN) or a recovery group ARN. This is a list but currently can have only one element. * * @maxItems 5 */ ParentReadinessScopes?: | [] | [string] | [string, string] | [string, string, string] | [string, string, string, string] | [string, string, string, string, string]; /** * A collection of tags associated with a resource */ Tags?: Tag[]; } export interface Tag { Key: string; Value: string; }