/* 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. */ export type Arn = string; /** * An example resource schema demonstrating some basic constructs and validation rules. */ export interface AwsLicensemanagerGrant { /** * Arn of the grant. */ GrantArn?: string; /** * Name for the created Grant. */ GrantName?: string; /** * License Arn for the grant. */ LicenseArn?: string; /** * Home region for the created grant. */ HomeRegion?: string; /** * The version of the grant. */ Version?: string; AllowedOperations?: string[]; Principals?: Arn[]; Status?: string; }