
[![npm version](https://badge.fury.io/js/wolkenkratzer.svg)](https://badge.fury.io/js/wolkenkratzer)
[![Build Status](https://travis-ci.org/arminhammer/wolkenkratzer.svg?branch=master)](https://travis-ci.org/arminhammer/wolkenkratzer)
[![Coverage Status](https://coveralls.io/repos/github/arminhammer/wolkenkratzer/badge.svg?branch=master)](https://coveralls.io/github/arminhammer/wolkenkratzer?branch=master)
[![Issue Count](https://codeclimate.com/github/arminhammer/wolkenkratzer/badges/issue_count.svg)](https://codeclimate.com/github/arminhammer/wolkenkratzer)
[![DeepScan Grade](https://deepscan.io/api/projects/1062/branches/2159/badge/grade.svg)](https://deepscan.io/dashboard/#view=project&pid=1062&bid=2159)

# Welcome to Wolkenkratzer!

Wolkenkratzer is a Javascript library that allows you to programmatically generate AWS CloudFormation templates. It can import and modify existing templates, create
templates based off of existing resources in AWS, and output templates in JSON and Yaml.

## CloudFormation Resource support

The library uses the CloudFormation Resource Specification to achieve 100% feature parity with CloudFormation. The specification is parsed by Wolkenkratzer at runtime, so adding support for new Cloudformation resources only requires updating the spec file.

In Wolkenkratzer, Templates are always immutable objects. When you call one of the methods in the Template API, it will return a new and immutable Template object. This allows you to chain multiple API calls together in a row. The following code shows how this works in practice:

```javascript
const { Template, Output, S3, Ref } = require('wolkenkratzer');

const t = Template()
  .add(S3.Bucket('Bucket'))
  .add(Output('BucketName', { Value: Ref('Bucket') }));

console.log(JSON.stringify(t.build(), null, 2));
```

Results in:

```json
{
  "AWSTemplateFormatVersion": "2010-09-09",
  "Resources": {
    "Bucket": {
      "Type": "AWS::S3::Bucket",
      "Properties": {}
    }
  },
  "Outputs": {
    "BucketName": {
      "Value": {
        "Ref": "Bucket"
      }
    }
  }
}
```

Calling `javascript Template()` returns an empty Template object. The line `javascript .add(S3.Bucket('Bucket'))` returns a new Template object with an S3 Bucket, and the `javascript .add(Output('BucketName', { Value: Ref('Bucket') }));`adds an output block.

When adding resources to the template, you can optionally have an Output block and (string) Parameters created automatically in one call:

```javascript
const { Template, S3 } = require('wolkenkratzer');

let t = Template().add(S3.Bucket('Bucket'), {
  Output: true,
  Parameters: ['BucketName'],
});

console.log(JSON.stringify(t.build(), null, 2));
```

Result:

```json
{
  "AWSTemplateFormatVersion": "2010-09-09",
  "Resources": {
    "Bucket": {
      "Type": "AWS::S3::Bucket",
      "Properties": {
        "BucketName": { "Ref": "BucketS3BucketParam" }
      }
    }
  },
  "Parameters": {
    "BucketS3BucketParam": {
      "Type": "String"
    }
  },
  "Outputs": {
    "BucketS3BucketOutput": {
      "Value": {
        "Ref": "Bucket"
      },
      "Export": {
        "Name": {
          "Fn::Sub": "${AWS::StackName}-S3-Bucket-Bucket"
        }
      }
    }
  }
}
```

Wolkenkratzer will also do (rudimentary) template type validation, throwing an error if an incorrect value is provided.

# Examples

Please see the examples/ folder for real and tested examples on how to use the library.

# API



## Index

### Functions

* [Condition](#condition)
* [CreationPolicy](#creationpolicy)
* [CustomResource](#customresource)
* [DeletionPolicy](#deletionpolicy)
* [DependsOn](#dependson)
* [Description](#description)
* [FnAnd](#fnand)
* [FnBase64](#fnbase64)
* [FnEquals](#fnequals)
* [FnFindInMap](#fnfindinmap)
* [FnGetAZs](#fngetazs)
* [FnGetAtt](#fngetatt)
* [FnIf](#fnif)
* [FnImportValue](#fnimportvalue)
* [FnJoin](#fnjoin)
* [FnNot](#fnnot)
* [FnOr](#fnor)
* [FnSelect](#fnselect)
* [FnSplit](#fnsplit)
* [FnSub](#fnsub)
* [Mapping](#mapping)
* [Output](#output)
* [Parameter](#parameter)
* [Ref](#ref)
* [Resource](#resource)
* [ResourceMetadata](#resourcemetadata)
* [Service](#service)
* [Template](#template)
* [UpdatePolicy](#updatepolicy)
* [buildInlineLambda](#buildinlinelambda)
* [buildInlineLambdaTemplate](#buildinlinelambdatemplate)
* [buildIntrinsic](#buildintrinsic)
* [buildLambda](#buildlambda)
* [buildLambdaTemplate](#buildlambdatemplate)
* [buildZipLambda](#buildziplambda)
* [buildZipLambdaTemplate](#buildziplambdatemplate)
* [getAMIMap](#getamimap)
* [getInstanceTypeList](#getinstancetypelist)
* [getInstanceTypeMap](#getinstancetypemap)
* [getInstanceTypeNameList](#getinstancetypenamelist)
* [getRegions](#getregions)


### Object literals

* [ApiGateway](#apigateway)
* [ApplicationAutoScaling](#applicationautoscaling)
* [Athena](#athena)
* [AutoScaling](#autoscaling)
* [Batch](#batch)
* [CertificateManager](#certificatemanager)
* [Cloud9](#cloud9)
* [CloudFormation](#cloudformation)
* [CloudFront](#cloudfront)
* [CloudWatch](#cloudwatch)
* [CodeBuild](#codebuild)
* [CodeCommit](#codecommit)
* [CodeDeploy](#codedeploy)
* [CodePipeline](#codepipeline)
* [Cognito](#cognito)
* [Config](#config)
* [DAX](#dax)
* [DMS](#dms)
* [DataPipeline](#datapipeline)
* [DirectoryService](#directoryservice)
* [DynamoDB](#dynamodb)
* [EFS](#efs)
* [EMR](#emr)
* [ElastiCache](#elasticache)
* [ElasticBeanstalk](#elasticbeanstalk)
* [ElasticLoadBalancing](#elasticloadbalancing)
* [ElasticLoadBalancingV2](#elasticloadbalancingv2)
* [Elasticsearch](#elasticsearch)
* [Events](#events)
* [GameLift](#gamelift)
* [Glue](#glue)
* [GuardDuty](#guardduty)
* [Inspector](#inspector)
* [IoT](#iot)
* [KMS](#kms)
* [KinesisAnalytics](#kinesisanalytics)
* [KinesisFirehose](#kinesisfirehose)
* [Logs](#logs)
* [OpsWorks](#opsworks)
* [Pseudo](#pseudo)
* [RDS](#rds)
* [Redshift](#redshift)
* [SDB](#sdb)
* [SSM](#ssm)
* [ServiceDiscovery](#servicediscovery)
* [StepFunctions](#stepfunctions)
* [Transform](#transform)
* [WAF](#waf)
* [WAFRegional](#wafregional)
* [WorkSpaces](#workspaces)



---
# Functions
<a id="condition"></a>

###  Condition

► **Condition**(name: *`string`*, conditionFn: *`IFnAnd`⎮`IFnEquals`⎮`IFnIf`⎮`IFnNot`⎮`IFnOr`*): `ICondition`



*Defined in [elements/condition.ts:10](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/elements/condition.ts#L10)*



Create a Condition object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| conditionFn | `IFnAnd`⎮`IFnEquals`⎮`IFnIf`⎮`IFnNot`⎮`IFnOr`   |  - |





**Returns:** `ICondition`





___

<a id="creationpolicy"></a>

###  CreationPolicy

► **CreationPolicy**(resource: *`string`*, content: *`any`*): `ICreationPolicy`



*Defined in [attributes/creationpolicy.ts:3](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/attributes/creationpolicy.ts#L3)*



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| resource | `string`   |  - |
| content | `any`   |  - |





**Returns:** `ICreationPolicy`





___

<a id="customresource"></a>

###  CustomResource

► **CustomResource**(name: *`string`*, properties: *`any`*, options: *`any`*): `IResource`



*Defined in [elements/resource.ts:33](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/elements/resource.ts#L33)*



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| properties | `any`   |  - |
| options | `any`   |  - |





**Returns:** `IResource`





___

<a id="deletionpolicy"></a>

###  DeletionPolicy

► **DeletionPolicy**(resource: *`string`*, content: *"Delete"⎮"Retain"⎮"Snapshot"*): `IDeletionPolicy`



*Defined in [attributes/deletionpolicy.ts:3](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/attributes/deletionpolicy.ts#L3)*



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| resource | `string`   |  - |
| content | "Delete"⎮"Retain"⎮"Snapshot"   |  - |





**Returns:** `IDeletionPolicy`





___

<a id="dependson"></a>

###  DependsOn

► **DependsOn**(resource: *`string`*, content: *`string`⎮`string`[]*): `IDependsOn`



*Defined in [attributes/dependson.ts:3](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/attributes/dependson.ts#L3)*



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| resource | `string`   |  - |
| content | `string`⎮`string`[]   |  - |





**Returns:** `IDependsOn`





___

<a id="description"></a>

###  Description

► **Description**(content: *`string`*): `IDescription`



*Defined in [elements/description.ts:7](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/elements/description.ts#L7)*



Set the Description of a template


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| content | `string`   |  - |





**Returns:** `IDescription`





___

<a id="fnand"></a>

###  FnAnd

► **FnAnd**(one: *`Conditional`*, two: *`Conditional`*): `IFnAnd`



*Defined in [intrinsic.ts:28](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L28)*



Returns an Fn::And object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| one | `Conditional`   |  - |
| two | `Conditional`   |  - |





**Returns:** `IFnAnd`





___

<a id="fnbase64"></a>

###  FnBase64

► **FnBase64**(input: *`string`*): `IFnBase64`



*Defined in [intrinsic.ts:130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L130)*



Returns an Fn::Base64 object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| input | `string`   |  - |





**Returns:** `IFnBase64`





___

<a id="fnequals"></a>

###  FnEquals

► **FnEquals**(one: *`Conditional`*, two: *`Conditional`*): `IFnEquals`



*Defined in [intrinsic.ts:114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L114)*



Returns an Fn::Equals object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| one | `Conditional`   |  - |
| two | `Conditional`   |  - |





**Returns:** `IFnEquals`





___

<a id="fnfindinmap"></a>

###  FnFindInMap

► **FnFindInMap**(mapName: *`string`*, topLevelKey: *`string`*, secondLevelKey: *`string`*): `IFnFindInMap`



*Defined in [intrinsic.ts:140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L140)*



Returns an Fn::FindInMap object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| mapName | `string`   |  - |
| topLevelKey | `string`   |  - |
| secondLevelKey | `string`   |  - |





**Returns:** `IFnFindInMap`





___

<a id="fngetazs"></a>

###  FnGetAZs

► **FnGetAZs**(region: *`string`⎮`IRef`*): `IFnGetAZs`



*Defined in [intrinsic.ts:155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L155)*



Returns an Fn::GetAZs object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| region | `string`⎮`IRef`   |  - |





**Returns:** `IFnGetAZs`





___

<a id="fngetatt"></a>

###  FnGetAtt

► **FnGetAtt**(target: *`IResource`⎮`string`*, attr: *`string`*): `IFnGetAtt`



*Defined in [intrinsic.ts:85](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L85)*



Returns an Fn::GetAtt object that references another element in the template


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| target | `IResource`⎮`string`   |  - |
| attr | `string`   |  - |





**Returns:** `IFnGetAtt`





___

<a id="fnif"></a>

###  FnIf

► **FnIf**(items: *`Array`.<`string`⎮`IIntrinsic`>*): `IFnIf`



*Defined in [intrinsic.ts:64](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L64)*



Returns an Fn::If object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| items | `Array`.<`string`⎮`IIntrinsic`>   |  - |





**Returns:** `IFnIf`





___

<a id="fnimportvalue"></a>

###  FnImportValue

► **FnImportValue**(value: *`string`⎮`IFnBase64`⎮`IFnFindInMap`⎮`IFnIf`⎮`IFnJoin`⎮`IFnSelect`⎮`IFnSplit`⎮`IFnSub`⎮`IRef`*): `IFnImportValue`



*Defined in [intrinsic.ts:216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L216)*



Returns an Fn::ImportValue object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| value | `string`⎮`IFnBase64`⎮`IFnFindInMap`⎮`IFnIf`⎮`IFnJoin`⎮`IFnSelect`⎮`IFnSplit`⎮`IFnSub`⎮`IRef`   |  - |





**Returns:** `IFnImportValue`





___

<a id="fnjoin"></a>

###  FnJoin

► **FnJoin**(delimiter: *`string`*, values: *`Array`.<`string`⎮`IFnGetAtt`⎮`IRef`>⎮`IFnGetAtt`*): `IFnJoin`



*Defined in [intrinsic.ts:96](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L96)*



Returns an Fn::Join object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| delimiter | `string`   |  - |
| values | `Array`.<`string`⎮`IFnGetAtt`⎮`IRef`>⎮`IFnGetAtt`   |  - |





**Returns:** `IFnJoin`





___

<a id="fnnot"></a>

###  FnNot

► **FnNot**(items: *`Array`.<`string`⎮`IIntrinsic`>*): `IFnNot`



*Defined in [intrinsic.ts:56](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L56)*



Returns an Fn::Not object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| items | `Array`.<`string`⎮`IIntrinsic`>   |  - |





**Returns:** `IFnNot`





___

<a id="fnor"></a>

###  FnOr

► **FnOr**(items: *`Array`.<`string`⎮`IIntrinsic`>*): `IFnOr`



*Defined in [intrinsic.ts:48](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L48)*



Returns an Fn::Or object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| items | `Array`.<`string`⎮`IIntrinsic`>   |  - |





**Returns:** `IFnOr`





___

<a id="fnselect"></a>

###  FnSelect

► **FnSelect**(index: *`string`⎮`number`*, list: *`Array`.<`string`⎮`IFnFindInMap`⎮`IFnGetAtt`⎮`IFnGetAZs`⎮`IFnIf`⎮`IFnSplit`⎮`IRef`>*): `IFnSelect`



*Defined in [intrinsic.ts:167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L167)*



Returns an Fn::Select object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| index | `string`⎮`number`   |  - |
| list | `Array`.<`string`⎮`IFnFindInMap`⎮`IFnGetAtt`⎮`IFnGetAZs`⎮`IFnIf`⎮`IFnSplit`⎮`IRef`>   |  - |





**Returns:** `IFnSelect`





___

<a id="fnsplit"></a>

###  FnSplit

► **FnSplit**(delimiter: *`string`*, value: *`string`*): `IFnSplit`



*Defined in [intrinsic.ts:237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L237)*



Returns an Fn::Split object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| delimiter | `string`   |  - |
| value | `string`   |  - |





**Returns:** `IFnSplit`





___

<a id="fnsub"></a>

###  FnSub

► **FnSub**(input: *`string`*): `IFnSub`



*Defined in [intrinsic.ts:122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L122)*



Returns an Fn::Sub object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| input | `string`   |  - |





**Returns:** `IFnSub`





___

<a id="mapping"></a>

###  Mapping

► **Mapping**(name: *`string`*, subName: *`string`*, body: *`object`*): `IMapping`



*Defined in [elements/mapping.ts:9](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/elements/mapping.ts#L9)*



Create a Mapping object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| subName | `string`   |  - |
| body | `object`   |  - |





**Returns:** `IMapping`





___

<a id="output"></a>

###  Output

► **Output**(name: *`string`*, properties: *`IOutputProperties`*): `IOutput`



*Defined in [elements/output.ts:10](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/elements/output.ts#L10)*



Creatr an Output object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| properties | `IOutputProperties`   |  - |





**Returns:** `IOutput`





___

<a id="parameter"></a>

###  Parameter

► **Parameter**(name: *`string`*, properties: *`IParameterProperties`*): `IParameter`



*Defined in [elements/parameter.ts:8](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/elements/parameter.ts#L8)*



Create a Parameter object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| properties | `IParameterProperties`   |  - |





**Returns:** `IParameter`





___

<a id="ref"></a>

###  Ref

► **Ref**(target: *`IResource`⎮`IParameter`⎮`string`*): `IRef`



*Defined in [intrinsic.ts:72](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L72)*



Returns a Ref object that references another element in the template


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| target | `IResource`⎮`IParameter`⎮`string`   |  - |





**Returns:** `IRef`





___

<a id="resource"></a>

###  Resource

► **Resource**(name: *`string`*, properties: *`any`*, options: *`any`*): `IResource`



*Defined in [elements/resource.ts:9](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/elements/resource.ts#L9)*



Create a Resource object


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| properties | `any`   |  - |
| options | `any`   |  - |





**Returns:** `IResource`





___

<a id="resourcemetadata"></a>

###  ResourceMetadata

► **ResourceMetadata**(resource: *`string`*, content: *`any`*): `IResourceMetadata`



*Defined in [attributes/metadata.ts:3](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/attributes/metadata.ts#L3)*



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| resource | `string`   |  - |
| content | `any`   |  - |





**Returns:** `IResourceMetadata`





___

<a id="service"></a>

###  Service

► **Service**(json: *`any`*): `IService`



*Defined in [service.ts:8](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/service.ts#L8)*



Return a Service object to create Resources and Attributes


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| json | `any`   |  - |





**Returns:** `IService`





___

<a id="template"></a>

###  Template

► **Template**(): `ITemplate`



*Defined in [template/index.ts:36](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/template/index.ts#L36)*



Returns a new Template object.
*__member__*: Template





**Returns:** `ITemplate`
ITemplate






___

<a id="updatepolicy"></a>

###  UpdatePolicy

► **UpdatePolicy**(resource: *`string`*, content: *`any`*): `IUpdatePolicy`



*Defined in [attributes/updatepolicy.ts:3](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/attributes/updatepolicy.ts#L3)*



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| resource | `string`   |  - |
| content | `any`   |  - |





**Returns:** `IUpdatePolicy`





___

<a id="buildinlinelambda"></a>

###  buildInlineLambda

► **buildInlineLambda**(__namedParameters: *`object`*): `Promise`.<`IResource`>



*Defined in [macros/lambda.macro.ts:159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/lambda.macro.ts#L159)*



Create an inline Lambda function


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| __namedParameters | `object`   |  - |





**Returns:** `Promise`.<`IResource`>





___

<a id="buildinlinelambdatemplate"></a>

###  buildInlineLambdaTemplate

► **buildInlineLambdaTemplate**(__namedParameters: *`object`*): `Promise`.<`ITemplate`>



*Defined in [macros/lambda.macro.ts:138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/lambda.macro.ts#L138)*



Create an inline Lambda function from a folder or source file


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| __namedParameters | `object`   |  - |





**Returns:** `Promise`.<`ITemplate`>





___

<a id="buildintrinsic"></a>

###  buildIntrinsic

► **buildIntrinsic**(input: *`any`*): `any`



*Defined in [intrinsic.ts:183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/intrinsic.ts#L183)*



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| input | `any`   |  - |





**Returns:** `any`





___

<a id="buildlambda"></a>

###  buildLambda

► **buildLambda**(__namedParameters: *`object`*): `Promise`.<`Object`>



*Defined in [macros/lambda.macro.ts:302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/lambda.macro.ts#L302)*



Create a Lambda function from a folder or source file


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| __namedParameters | `object`   |  - |





**Returns:** `Promise`.<`Object`>





___

<a id="buildlambdatemplate"></a>

###  buildLambdaTemplate

► **buildLambdaTemplate**(__namedParameters: *`object`*): `Promise`.<`Object`>



*Defined in [macros/lambda.macro.ts:459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/lambda.macro.ts#L459)*



Create a Lambda function from a folder or source file


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| __namedParameters | `object`   |  - |





**Returns:** `Promise`.<`Object`>





___

<a id="buildziplambda"></a>

###  buildZipLambda

► **buildZipLambda**(__namedParameters: *`object`*): `Promise`.<`IZipLambdaResult`>



*Defined in [macros/lambda.macro.ts:278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/lambda.macro.ts#L278)*



Create a Lambda function from a folder or source file


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| __namedParameters | `object`   |  - |





**Returns:** `Promise`.<`IZipLambdaResult`>





___

<a id="buildziplambdatemplate"></a>

###  buildZipLambdaTemplate

► **buildZipLambdaTemplate**(__namedParameters: *`object`*): `Promise`.<`IZipLambdaTemplateResult`>



*Defined in [macros/lambda.macro.ts:410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/lambda.macro.ts#L410)*



Create a Lambda function from a folder or source file


**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| __namedParameters | `object`   |  - |





**Returns:** `Promise`.<`IZipLambdaTemplateResult`>





___

<a id="getamimap"></a>

###  getAMIMap

► **getAMIMap**(filters: *`any`*, regions: *`any`*, aws: *`any`*): `Bluebird`.<`any`>



*Defined in [macros/ec2meta.macro.ts:78](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/ec2meta.macro.ts#L78)*



Returns an AMI Map that can be added to a Mapping.
*__memberof__*: module:Macro



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| filters | `any`   |  - |
| regions | `any`   |  - |
| aws | `any`   |  - |





**Returns:** `Bluebird`.<`any`>







___

<a id="getinstancetypelist"></a>

###  getInstanceTypeList

► **getInstanceTypeList**(): `any`



*Defined in [macros/ec2meta.macro.ts:15](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/ec2meta.macro.ts#L15)*



Returns an array of all instance types and details.
*__memberof__*: module:Macro





**Returns:** `any`







___

<a id="getinstancetypemap"></a>

###  getInstanceTypeMap

► **getInstanceTypeMap**(): `any`



*Defined in [macros/ec2meta.macro.ts:37](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/ec2meta.macro.ts#L37)*



Returns a map of all instance types and details.
*__memberof__*: module:Macro





**Returns:** `any`







___

<a id="getinstancetypenamelist"></a>

###  getInstanceTypeNameList

► **getInstanceTypeNameList**(): `string`[]



*Defined in [macros/ec2meta.macro.ts:24](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/ec2meta.macro.ts#L24)*



Returns an array of just the instance type names available in AWS.
*__memberof__*: module:Macro





**Returns:** `string`[]







___

<a id="getregions"></a>

###  getRegions

► **getRegions**(): `string`[]



*Defined in [macros/ec2meta.macro.ts:50](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/macros/ec2meta.macro.ts#L50)*



Returns an array of the names of all regions in AWS.
*__memberof__*: module:Macro





**Returns:** `string`[]







___


<a id="apigateway"></a>

## Object literal: ApiGateway


<a id="apigateway.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L702)*




<a id="apigateway.models.apistage"></a>

###  ApiStage

** ApiStage**:  *`object`* 

*Defined in [spec/spec.ts:1115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1115)*




<a id="apigateway.models.apistage.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-apistage.html"

*Defined in [spec/spec.ts:1116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1116)*





___
<a id="apigateway.models.apistage.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::UsagePlan.ApiStage"

*Defined in [spec/spec.ts:1131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1131)*





___
<a id="apigateway.models.apistage.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1117)*




<a id="apigateway.models.apistage.properties.apiid"></a>

###  ApiId

** ApiId**:  *`object`* 

*Defined in [spec/spec.ts:1118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1118)*




<a id="apigateway.models.apistage.properties.apiid.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-apistage.html#cfn-apigateway-usageplan-apistage-apiid"

*Defined in [spec/spec.ts:1119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1119)*





___
<a id="apigateway.models.apistage.properties.apiid.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1120)*





___
<a id="apigateway.models.apistage.properties.apiid.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1121)*





___
<a id="apigateway.models.apistage.properties.apiid.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1122)*





___

___
<a id="apigateway.models.apistage.properties.stage"></a>

###  Stage

** Stage**:  *`object`* 

*Defined in [spec/spec.ts:1124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1124)*




<a id="apigateway.models.apistage.properties.stage.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-apistage.html#cfn-apigateway-usageplan-apistage-stage"

*Defined in [spec/spec.ts:1125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1125)*





___
<a id="apigateway.models.apistage.properties.stage.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1126)*





___
<a id="apigateway.models.apistage.properties.stage.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1127)*





___
<a id="apigateway.models.apistage.properties.stage.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1128)*





___

___

___

___
<a id="apigateway.models.endpointconfiguration"></a>

###  EndpointConfiguration

** EndpointConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L923)*




<a id="apigateway.models.endpointconfiguration.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-endpointconfiguration.html"

*Defined in [spec/spec.ts:924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L924)*





___
<a id="apigateway.models.endpointconfiguration.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::RestApi.EndpointConfiguration"

*Defined in [spec/spec.ts:935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L935)*





___
<a id="apigateway.models.endpointconfiguration.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L925)*




<a id="apigateway.models.endpointconfiguration.properties-1.types"></a>

###  Types

** Types**:  *`object`* 

*Defined in [spec/spec.ts:926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L926)*




<a id="apigateway.models.endpointconfiguration.properties-1.types.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-endpointconfiguration.html#cfn-apigateway-restapi-endpointconfiguration-types"

*Defined in [spec/spec.ts:927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L927)*





___
<a id="apigateway.models.endpointconfiguration.properties-1.types.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L928)*





___
<a id="apigateway.models.endpointconfiguration.properties-1.types.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L929)*





___
<a id="apigateway.models.endpointconfiguration.properties-1.types.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L930)*





___
<a id="apigateway.models.endpointconfiguration.properties-1.types.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L931)*





___
<a id="apigateway.models.endpointconfiguration.properties-1.types.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L932)*





___

___

___

___
<a id="apigateway.models.integration"></a>

###  Integration

** Integration**:  *`object`* 

*Defined in [spec/spec.ts:937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L937)*




<a id="apigateway.models.integration.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html"

*Defined in [spec/spec.ts:938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L938)*





___
<a id="apigateway.models.integration.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Method.Integration"

*Defined in [spec/spec.ts:1015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1015)*





___
<a id="apigateway.models.integration.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L939)*




<a id="apigateway.models.integration.properties-2.cachekeyparameters"></a>

###  CacheKeyParameters

** CacheKeyParameters**:  *`object`* 

*Defined in [spec/spec.ts:940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L940)*




<a id="apigateway.models.integration.properties-2.cachekeyparameters.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachekeyparameters"

*Defined in [spec/spec.ts:941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L941)*





___
<a id="apigateway.models.integration.properties-2.cachekeyparameters.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L942)*





___
<a id="apigateway.models.integration.properties-2.cachekeyparameters.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L943)*





___
<a id="apigateway.models.integration.properties-2.cachekeyparameters.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L944)*





___
<a id="apigateway.models.integration.properties-2.cachekeyparameters.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L945)*





___
<a id="apigateway.models.integration.properties-2.cachekeyparameters.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L946)*





___

___
<a id="apigateway.models.integration.properties-2.cachenamespace"></a>

###  CacheNamespace

** CacheNamespace**:  *`object`* 

*Defined in [spec/spec.ts:948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L948)*




<a id="apigateway.models.integration.properties-2.cachenamespace.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-cachenamespace"

*Defined in [spec/spec.ts:949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L949)*





___
<a id="apigateway.models.integration.properties-2.cachenamespace.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L950)*





___
<a id="apigateway.models.integration.properties-2.cachenamespace.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L951)*





___
<a id="apigateway.models.integration.properties-2.cachenamespace.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L952)*





___

___
<a id="apigateway.models.integration.properties-2.contenthandling"></a>

###  ContentHandling

** ContentHandling**:  *`object`* 

*Defined in [spec/spec.ts:954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L954)*




<a id="apigateway.models.integration.properties-2.contenthandling.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-contenthandling"

*Defined in [spec/spec.ts:955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L955)*





___
<a id="apigateway.models.integration.properties-2.contenthandling.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L956)*





___
<a id="apigateway.models.integration.properties-2.contenthandling.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L957)*





___
<a id="apigateway.models.integration.properties-2.contenthandling.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L958)*





___

___
<a id="apigateway.models.integration.properties-2.credentials"></a>

###  Credentials

** Credentials**:  *`object`* 

*Defined in [spec/spec.ts:960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L960)*




<a id="apigateway.models.integration.properties-2.credentials.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-credentials"

*Defined in [spec/spec.ts:961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L961)*





___
<a id="apigateway.models.integration.properties-2.credentials.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L962)*





___
<a id="apigateway.models.integration.properties-2.credentials.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L963)*





___
<a id="apigateway.models.integration.properties-2.credentials.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L964)*





___

___
<a id="apigateway.models.integration.properties-2.integrationhttpmethod"></a>

###  IntegrationHttpMethod

** IntegrationHttpMethod**:  *`object`* 

*Defined in [spec/spec.ts:966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L966)*




<a id="apigateway.models.integration.properties-2.integrationhttpmethod.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationhttpmethod"

*Defined in [spec/spec.ts:967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L967)*





___
<a id="apigateway.models.integration.properties-2.integrationhttpmethod.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L968)*





___
<a id="apigateway.models.integration.properties-2.integrationhttpmethod.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L969)*





___
<a id="apigateway.models.integration.properties-2.integrationhttpmethod.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L970)*





___

___
<a id="apigateway.models.integration.properties-2.integrationresponses"></a>

###  IntegrationResponses

** IntegrationResponses**:  *`object`* 

*Defined in [spec/spec.ts:972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L972)*




<a id="apigateway.models.integration.properties-2.integrationresponses.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-integrationresponses"

*Defined in [spec/spec.ts:973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L973)*





___
<a id="apigateway.models.integration.properties-2.integrationresponses.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L974)*





___
<a id="apigateway.models.integration.properties-2.integrationresponses.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "IntegrationResponse"

*Defined in [spec/spec.ts:975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L975)*





___
<a id="apigateway.models.integration.properties-2.integrationresponses.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L976)*





___
<a id="apigateway.models.integration.properties-2.integrationresponses.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L977)*





___
<a id="apigateway.models.integration.properties-2.integrationresponses.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L978)*





___

___
<a id="apigateway.models.integration.properties-2.passthroughbehavior"></a>

###  PassthroughBehavior

** PassthroughBehavior**:  *`object`* 

*Defined in [spec/spec.ts:980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L980)*




<a id="apigateway.models.integration.properties-2.passthroughbehavior.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-passthroughbehavior"

*Defined in [spec/spec.ts:981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L981)*





___
<a id="apigateway.models.integration.properties-2.passthroughbehavior.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L982)*





___
<a id="apigateway.models.integration.properties-2.passthroughbehavior.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L983)*





___
<a id="apigateway.models.integration.properties-2.passthroughbehavior.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L984)*





___

___
<a id="apigateway.models.integration.properties-2.requestparameters"></a>

###  RequestParameters

** RequestParameters**:  *`object`* 

*Defined in [spec/spec.ts:986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L986)*




<a id="apigateway.models.integration.properties-2.requestparameters.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-requestparameters"

*Defined in [spec/spec.ts:987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L987)*





___
<a id="apigateway.models.integration.properties-2.requestparameters.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L988)*





___
<a id="apigateway.models.integration.properties-2.requestparameters.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L989)*





___
<a id="apigateway.models.integration.properties-2.requestparameters.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L990)*





___
<a id="apigateway.models.integration.properties-2.requestparameters.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L991)*





___
<a id="apigateway.models.integration.properties-2.requestparameters.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L992)*





___

___
<a id="apigateway.models.integration.properties-2.requesttemplates"></a>

###  RequestTemplates

** RequestTemplates**:  *`object`* 

*Defined in [spec/spec.ts:994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L994)*




<a id="apigateway.models.integration.properties-2.requesttemplates.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-requesttemplates"

*Defined in [spec/spec.ts:995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L995)*





___
<a id="apigateway.models.integration.properties-2.requesttemplates.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L996)*





___
<a id="apigateway.models.integration.properties-2.requesttemplates.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L997)*





___
<a id="apigateway.models.integration.properties-2.requesttemplates.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L998)*





___
<a id="apigateway.models.integration.properties-2.requesttemplates.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L999)*





___
<a id="apigateway.models.integration.properties-2.requesttemplates.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1000)*





___

___
<a id="apigateway.models.integration.properties-2.type-5"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:1002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1002)*




<a id="apigateway.models.integration.properties-2.type-5.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-type"

*Defined in [spec/spec.ts:1003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1003)*





___
<a id="apigateway.models.integration.properties-2.type-5.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1004)*





___
<a id="apigateway.models.integration.properties-2.type-5.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1005)*





___
<a id="apigateway.models.integration.properties-2.type-5.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1006)*





___

___
<a id="apigateway.models.integration.properties-2.uri"></a>

###  Uri

** Uri**:  *`object`* 

*Defined in [spec/spec.ts:1008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1008)*




<a id="apigateway.models.integration.properties-2.uri.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration.html#cfn-apigateway-method-integration-uri"

*Defined in [spec/spec.ts:1009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1009)*





___
<a id="apigateway.models.integration.properties-2.uri.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1010)*





___
<a id="apigateway.models.integration.properties-2.uri.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1011)*





___
<a id="apigateway.models.integration.properties-2.uri.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1012)*





___

___

___

___
<a id="apigateway.models.integrationresponse"></a>

###  IntegrationResponse

** IntegrationResponse**:  *`object`* 

*Defined in [spec/spec.ts:1017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1017)*




<a id="apigateway.models.integrationresponse.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration-integrationresponse.html"

*Defined in [spec/spec.ts:1018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1018)*





___
<a id="apigateway.models.integrationresponse.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Method.IntegrationResponse"

*Defined in [spec/spec.ts:1055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1055)*





___
<a id="apigateway.models.integrationresponse.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1019)*




<a id="apigateway.models.integrationresponse.properties-3.contenthandling-1"></a>

###  ContentHandling

** ContentHandling**:  *`object`* 

*Defined in [spec/spec.ts:1020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1020)*




<a id="apigateway.models.integrationresponse.properties-3.contenthandling-1.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration-integrationresponse.html#cfn-apigateway-method-integrationresponse-contenthandling"

*Defined in [spec/spec.ts:1021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1021)*





___
<a id="apigateway.models.integrationresponse.properties-3.contenthandling-1.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1022)*





___
<a id="apigateway.models.integrationresponse.properties-3.contenthandling-1.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1023)*





___
<a id="apigateway.models.integrationresponse.properties-3.contenthandling-1.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1024)*





___

___
<a id="apigateway.models.integrationresponse.properties-3.responseparameters"></a>

###  ResponseParameters

** ResponseParameters**:  *`object`* 

*Defined in [spec/spec.ts:1026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1026)*




<a id="apigateway.models.integrationresponse.properties-3.responseparameters.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration-integrationresponse.html#cfn-apigateway-method-integration-integrationresponse-responseparameters"

*Defined in [spec/spec.ts:1027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1027)*





___
<a id="apigateway.models.integrationresponse.properties-3.responseparameters.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1028)*





___
<a id="apigateway.models.integrationresponse.properties-3.responseparameters.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1029)*





___
<a id="apigateway.models.integrationresponse.properties-3.responseparameters.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1030)*





___
<a id="apigateway.models.integrationresponse.properties-3.responseparameters.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:1031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1031)*





___
<a id="apigateway.models.integrationresponse.properties-3.responseparameters.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1032)*





___

___
<a id="apigateway.models.integrationresponse.properties-3.responsetemplates"></a>

###  ResponseTemplates

** ResponseTemplates**:  *`object`* 

*Defined in [spec/spec.ts:1034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1034)*




<a id="apigateway.models.integrationresponse.properties-3.responsetemplates.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration-integrationresponse.html#cfn-apigateway-method-integration-integrationresponse-responsetemplates"

*Defined in [spec/spec.ts:1035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1035)*





___
<a id="apigateway.models.integrationresponse.properties-3.responsetemplates.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1036)*





___
<a id="apigateway.models.integrationresponse.properties-3.responsetemplates.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1037)*





___
<a id="apigateway.models.integrationresponse.properties-3.responsetemplates.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1038)*





___
<a id="apigateway.models.integrationresponse.properties-3.responsetemplates.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:1039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1039)*





___
<a id="apigateway.models.integrationresponse.properties-3.responsetemplates.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1040)*





___

___
<a id="apigateway.models.integrationresponse.properties-3.selectionpattern"></a>

###  SelectionPattern

** SelectionPattern**:  *`object`* 

*Defined in [spec/spec.ts:1042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1042)*




<a id="apigateway.models.integrationresponse.properties-3.selectionpattern.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration-integrationresponse.html#cfn-apigateway-method-integration-integrationresponse-selectionpattern"

*Defined in [spec/spec.ts:1043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1043)*





___
<a id="apigateway.models.integrationresponse.properties-3.selectionpattern.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1044)*





___
<a id="apigateway.models.integrationresponse.properties-3.selectionpattern.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1045)*





___
<a id="apigateway.models.integrationresponse.properties-3.selectionpattern.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1046)*





___

___
<a id="apigateway.models.integrationresponse.properties-3.statuscode"></a>

###  StatusCode

** StatusCode**:  *`object`* 

*Defined in [spec/spec.ts:1048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1048)*




<a id="apigateway.models.integrationresponse.properties-3.statuscode.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-integration-integrationresponse.html#cfn-apigateway-method-integration-integrationresponse-statuscode"

*Defined in [spec/spec.ts:1049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1049)*





___
<a id="apigateway.models.integrationresponse.properties-3.statuscode.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1050)*





___
<a id="apigateway.models.integrationresponse.properties-3.statuscode.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1051)*





___
<a id="apigateway.models.integrationresponse.properties-3.statuscode.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1052)*





___

___

___

___
<a id="apigateway.models.location"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L887)*




<a id="apigateway.models.location.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html"

*Defined in [spec/spec.ts:888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L888)*





___
<a id="apigateway.models.location.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::DocumentationPart.Location"

*Defined in [spec/spec.ts:921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L921)*





___
<a id="apigateway.models.location.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L889)*




<a id="apigateway.models.location.properties-4.method"></a>

###  Method

** Method**:  *`object`* 

*Defined in [spec/spec.ts:890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L890)*




<a id="apigateway.models.location.properties-4.method.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-method"

*Defined in [spec/spec.ts:891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L891)*





___
<a id="apigateway.models.location.properties-4.method.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L892)*





___
<a id="apigateway.models.location.properties-4.method.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L893)*





___
<a id="apigateway.models.location.properties-4.method.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L894)*





___

___
<a id="apigateway.models.location.properties-4.name-5"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L896)*




<a id="apigateway.models.location.properties-4.name-5.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-name"

*Defined in [spec/spec.ts:897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L897)*





___
<a id="apigateway.models.location.properties-4.name-5.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L898)*





___
<a id="apigateway.models.location.properties-4.name-5.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L899)*





___
<a id="apigateway.models.location.properties-4.name-5.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L900)*





___

___
<a id="apigateway.models.location.properties-4.path"></a>

###  Path

** Path**:  *`object`* 

*Defined in [spec/spec.ts:902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L902)*




<a id="apigateway.models.location.properties-4.path.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-path"

*Defined in [spec/spec.ts:903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L903)*





___
<a id="apigateway.models.location.properties-4.path.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L904)*





___
<a id="apigateway.models.location.properties-4.path.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L905)*





___
<a id="apigateway.models.location.properties-4.path.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L906)*





___

___
<a id="apigateway.models.location.properties-4.statuscode-1"></a>

###  StatusCode

** StatusCode**:  *`object`* 

*Defined in [spec/spec.ts:908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L908)*




<a id="apigateway.models.location.properties-4.statuscode-1.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-statuscode"

*Defined in [spec/spec.ts:909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L909)*





___
<a id="apigateway.models.location.properties-4.statuscode-1.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L910)*





___
<a id="apigateway.models.location.properties-4.statuscode-1.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L911)*





___
<a id="apigateway.models.location.properties-4.statuscode-1.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L912)*





___

___
<a id="apigateway.models.location.properties-4.type-8"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L914)*




<a id="apigateway.models.location.properties-4.type-8.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-documentationpart-location.html#cfn-apigateway-documentationpart-location-type"

*Defined in [spec/spec.ts:915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L915)*





___
<a id="apigateway.models.location.properties-4.type-8.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L916)*





___
<a id="apigateway.models.location.properties-4.type-8.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L917)*





___
<a id="apigateway.models.location.properties-4.type-8.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L918)*





___

___

___

___
<a id="apigateway.models.methodresponse"></a>

###  MethodResponse

** MethodResponse**:  *`object`* 

*Defined in [spec/spec.ts:1057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1057)*




<a id="apigateway.models.methodresponse.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-methodresponse.html"

*Defined in [spec/spec.ts:1058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1058)*





___
<a id="apigateway.models.methodresponse.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Method.MethodResponse"

*Defined in [spec/spec.ts:1083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1083)*





___
<a id="apigateway.models.methodresponse.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1059)*




<a id="apigateway.models.methodresponse.properties-5.responsemodels"></a>

###  ResponseModels

** ResponseModels**:  *`object`* 

*Defined in [spec/spec.ts:1060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1060)*




<a id="apigateway.models.methodresponse.properties-5.responsemodels.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-methodresponse.html#cfn-apigateway-method-methodresponse-responsemodels"

*Defined in [spec/spec.ts:1061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1061)*





___
<a id="apigateway.models.methodresponse.properties-5.responsemodels.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1062)*





___
<a id="apigateway.models.methodresponse.properties-5.responsemodels.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1063)*





___
<a id="apigateway.models.methodresponse.properties-5.responsemodels.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1064)*





___
<a id="apigateway.models.methodresponse.properties-5.responsemodels.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:1065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1065)*





___
<a id="apigateway.models.methodresponse.properties-5.responsemodels.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1066)*





___

___
<a id="apigateway.models.methodresponse.properties-5.responseparameters-1"></a>

###  ResponseParameters

** ResponseParameters**:  *`object`* 

*Defined in [spec/spec.ts:1068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1068)*




<a id="apigateway.models.methodresponse.properties-5.responseparameters-1.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-methodresponse.html#cfn-apigateway-method-methodresponse-responseparameters"

*Defined in [spec/spec.ts:1069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1069)*





___
<a id="apigateway.models.methodresponse.properties-5.responseparameters-1.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1070)*





___
<a id="apigateway.models.methodresponse.properties-5.responseparameters-1.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:1071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1071)*





___
<a id="apigateway.models.methodresponse.properties-5.responseparameters-1.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1072)*





___
<a id="apigateway.models.methodresponse.properties-5.responseparameters-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:1073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1073)*





___
<a id="apigateway.models.methodresponse.properties-5.responseparameters-1.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1074)*





___

___
<a id="apigateway.models.methodresponse.properties-5.statuscode-2"></a>

###  StatusCode

** StatusCode**:  *`object`* 

*Defined in [spec/spec.ts:1076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1076)*




<a id="apigateway.models.methodresponse.properties-5.statuscode-2.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-method-methodresponse.html#cfn-apigateway-method-methodresponse-statuscode"

*Defined in [spec/spec.ts:1077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1077)*





___
<a id="apigateway.models.methodresponse.properties-5.statuscode-2.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1078)*





___
<a id="apigateway.models.methodresponse.properties-5.statuscode-2.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1079)*





___
<a id="apigateway.models.methodresponse.properties-5.statuscode-2.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1080)*





___

___

___

___
<a id="apigateway.models.methodsetting"></a>

###  MethodSetting

** MethodSetting**:  *`object`* 

*Defined in [spec/spec.ts:721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L721)*




<a id="apigateway.models.methodsetting.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html"

*Defined in [spec/spec.ts:722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L722)*





___
<a id="apigateway.models.methodsetting.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Stage.MethodSetting"

*Defined in [spec/spec.ts:785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L785)*





___
<a id="apigateway.models.methodsetting.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L723)*




<a id="apigateway.models.methodsetting.properties-6.cachedataencrypted"></a>

###  CacheDataEncrypted

** CacheDataEncrypted**:  *`object`* 

*Defined in [spec/spec.ts:724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L724)*




<a id="apigateway.models.methodsetting.properties-6.cachedataencrypted.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-cachedataencrypted"

*Defined in [spec/spec.ts:725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L725)*





___
<a id="apigateway.models.methodsetting.properties-6.cachedataencrypted.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L726)*





___
<a id="apigateway.models.methodsetting.properties-6.cachedataencrypted.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L727)*





___
<a id="apigateway.models.methodsetting.properties-6.cachedataencrypted.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L728)*





___

___
<a id="apigateway.models.methodsetting.properties-6.cachettlinseconds"></a>

###  CacheTtlInSeconds

** CacheTtlInSeconds**:  *`object`* 

*Defined in [spec/spec.ts:730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L730)*




<a id="apigateway.models.methodsetting.properties-6.cachettlinseconds.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-cachettlinseconds"

*Defined in [spec/spec.ts:731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L731)*





___
<a id="apigateway.models.methodsetting.properties-6.cachettlinseconds.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L732)*





___
<a id="apigateway.models.methodsetting.properties-6.cachettlinseconds.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L733)*





___
<a id="apigateway.models.methodsetting.properties-6.cachettlinseconds.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L734)*





___

___
<a id="apigateway.models.methodsetting.properties-6.cachingenabled"></a>

###  CachingEnabled

** CachingEnabled**:  *`object`* 

*Defined in [spec/spec.ts:736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L736)*




<a id="apigateway.models.methodsetting.properties-6.cachingenabled.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-cachingenabled"

*Defined in [spec/spec.ts:737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L737)*





___
<a id="apigateway.models.methodsetting.properties-6.cachingenabled.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L738)*





___
<a id="apigateway.models.methodsetting.properties-6.cachingenabled.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L739)*





___
<a id="apigateway.models.methodsetting.properties-6.cachingenabled.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L740)*





___

___
<a id="apigateway.models.methodsetting.properties-6.datatraceenabled"></a>

###  DataTraceEnabled

** DataTraceEnabled**:  *`object`* 

*Defined in [spec/spec.ts:742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L742)*




<a id="apigateway.models.methodsetting.properties-6.datatraceenabled.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-datatraceenabled"

*Defined in [spec/spec.ts:743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L743)*





___
<a id="apigateway.models.methodsetting.properties-6.datatraceenabled.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L744)*





___
<a id="apigateway.models.methodsetting.properties-6.datatraceenabled.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L745)*





___
<a id="apigateway.models.methodsetting.properties-6.datatraceenabled.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L746)*





___

___
<a id="apigateway.models.methodsetting.properties-6.httpmethod"></a>

###  HttpMethod

** HttpMethod**:  *`object`* 

*Defined in [spec/spec.ts:748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L748)*




<a id="apigateway.models.methodsetting.properties-6.httpmethod.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-httpmethod"

*Defined in [spec/spec.ts:749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L749)*





___
<a id="apigateway.models.methodsetting.properties-6.httpmethod.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L750)*





___
<a id="apigateway.models.methodsetting.properties-6.httpmethod.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L751)*





___
<a id="apigateway.models.methodsetting.properties-6.httpmethod.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L752)*





___

___
<a id="apigateway.models.methodsetting.properties-6.logginglevel"></a>

###  LoggingLevel

** LoggingLevel**:  *`object`* 

*Defined in [spec/spec.ts:754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L754)*




<a id="apigateway.models.methodsetting.properties-6.logginglevel.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-logginglevel"

*Defined in [spec/spec.ts:755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L755)*





___
<a id="apigateway.models.methodsetting.properties-6.logginglevel.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L756)*





___
<a id="apigateway.models.methodsetting.properties-6.logginglevel.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L757)*





___
<a id="apigateway.models.methodsetting.properties-6.logginglevel.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L758)*





___

___
<a id="apigateway.models.methodsetting.properties-6.metricsenabled"></a>

###  MetricsEnabled

** MetricsEnabled**:  *`object`* 

*Defined in [spec/spec.ts:760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L760)*




<a id="apigateway.models.methodsetting.properties-6.metricsenabled.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-metricsenabled"

*Defined in [spec/spec.ts:761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L761)*





___
<a id="apigateway.models.methodsetting.properties-6.metricsenabled.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L762)*





___
<a id="apigateway.models.methodsetting.properties-6.metricsenabled.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L763)*





___
<a id="apigateway.models.methodsetting.properties-6.metricsenabled.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L764)*





___

___
<a id="apigateway.models.methodsetting.properties-6.resourcepath"></a>

###  ResourcePath

** ResourcePath**:  *`object`* 

*Defined in [spec/spec.ts:766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L766)*




<a id="apigateway.models.methodsetting.properties-6.resourcepath.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-resourcepath"

*Defined in [spec/spec.ts:767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L767)*





___
<a id="apigateway.models.methodsetting.properties-6.resourcepath.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L768)*





___
<a id="apigateway.models.methodsetting.properties-6.resourcepath.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L769)*





___
<a id="apigateway.models.methodsetting.properties-6.resourcepath.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L770)*





___

___
<a id="apigateway.models.methodsetting.properties-6.throttlingburstlimit"></a>

###  ThrottlingBurstLimit

** ThrottlingBurstLimit**:  *`object`* 

*Defined in [spec/spec.ts:772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L772)*




<a id="apigateway.models.methodsetting.properties-6.throttlingburstlimit.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-throttlingburstlimit"

*Defined in [spec/spec.ts:773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L773)*





___
<a id="apigateway.models.methodsetting.properties-6.throttlingburstlimit.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L774)*





___
<a id="apigateway.models.methodsetting.properties-6.throttlingburstlimit.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L775)*





___
<a id="apigateway.models.methodsetting.properties-6.throttlingburstlimit.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L776)*





___

___
<a id="apigateway.models.methodsetting.properties-6.throttlingratelimit"></a>

###  ThrottlingRateLimit

** ThrottlingRateLimit**:  *`object`* 

*Defined in [spec/spec.ts:778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L778)*




<a id="apigateway.models.methodsetting.properties-6.throttlingratelimit.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apitgateway-stage-methodsetting.html#cfn-apigateway-stage-methodsetting-throttlingratelimit"

*Defined in [spec/spec.ts:779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L779)*





___
<a id="apigateway.models.methodsetting.properties-6.throttlingratelimit.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L780)*





___
<a id="apigateway.models.methodsetting.properties-6.throttlingratelimit.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L781)*





___
<a id="apigateway.models.methodsetting.properties-6.throttlingratelimit.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L782)*





___

___

___

___
<a id="apigateway.models.quotasettings"></a>

###  QuotaSettings

** QuotaSettings**:  *`object`* 

*Defined in [spec/spec.ts:1133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1133)*




<a id="apigateway.models.quotasettings.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html"

*Defined in [spec/spec.ts:1134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1134)*





___
<a id="apigateway.models.quotasettings.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::UsagePlan.QuotaSettings"

*Defined in [spec/spec.ts:1155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1155)*





___
<a id="apigateway.models.quotasettings.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1135)*




<a id="apigateway.models.quotasettings.properties-7.limit"></a>

###  Limit

** Limit**:  *`object`* 

*Defined in [spec/spec.ts:1136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1136)*




<a id="apigateway.models.quotasettings.properties-7.limit.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-limit"

*Defined in [spec/spec.ts:1137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1137)*





___
<a id="apigateway.models.quotasettings.properties-7.limit.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1138)*





___
<a id="apigateway.models.quotasettings.properties-7.limit.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1139)*





___
<a id="apigateway.models.quotasettings.properties-7.limit.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1140)*





___

___
<a id="apigateway.models.quotasettings.properties-7.offset"></a>

###  Offset

** Offset**:  *`object`* 

*Defined in [spec/spec.ts:1142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1142)*




<a id="apigateway.models.quotasettings.properties-7.offset.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-offset"

*Defined in [spec/spec.ts:1143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1143)*





___
<a id="apigateway.models.quotasettings.properties-7.offset.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1144)*





___
<a id="apigateway.models.quotasettings.properties-7.offset.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1145)*





___
<a id="apigateway.models.quotasettings.properties-7.offset.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1146)*





___

___
<a id="apigateway.models.quotasettings.properties-7.period"></a>

###  Period

** Period**:  *`object`* 

*Defined in [spec/spec.ts:1148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1148)*




<a id="apigateway.models.quotasettings.properties-7.period.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-quotasettings.html#cfn-apigateway-usageplan-quotasettings-period"

*Defined in [spec/spec.ts:1149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1149)*





___
<a id="apigateway.models.quotasettings.properties-7.period.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1150)*





___
<a id="apigateway.models.quotasettings.properties-7.period.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1151)*





___
<a id="apigateway.models.quotasettings.properties-7.period.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1152)*





___

___

___

___
<a id="apigateway.models.s3location"></a>

###  S3Location

** S3Location**:  *`object`* 

*Defined in [spec/spec.ts:1085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1085)*




<a id="apigateway.models.s3location.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html"

*Defined in [spec/spec.ts:1086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1086)*





___
<a id="apigateway.models.s3location.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::RestApi.S3Location"

*Defined in [spec/spec.ts:1113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1113)*





___
<a id="apigateway.models.s3location.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1087)*




<a id="apigateway.models.s3location.properties-8.bucket"></a>

###  Bucket

** Bucket**:  *`object`* 

*Defined in [spec/spec.ts:1088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1088)*




<a id="apigateway.models.s3location.properties-8.bucket.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-bucket"

*Defined in [spec/spec.ts:1089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1089)*





___
<a id="apigateway.models.s3location.properties-8.bucket.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1090)*





___
<a id="apigateway.models.s3location.properties-8.bucket.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1091)*





___
<a id="apigateway.models.s3location.properties-8.bucket.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1092)*





___

___
<a id="apigateway.models.s3location.properties-8.etag"></a>

###  ETag

** ETag**:  *`object`* 

*Defined in [spec/spec.ts:1094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1094)*




<a id="apigateway.models.s3location.properties-8.etag.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-etag"

*Defined in [spec/spec.ts:1095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1095)*





___
<a id="apigateway.models.s3location.properties-8.etag.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1096)*





___
<a id="apigateway.models.s3location.properties-8.etag.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1097)*





___
<a id="apigateway.models.s3location.properties-8.etag.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1098)*





___

___
<a id="apigateway.models.s3location.properties-8.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:1100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1100)*




<a id="apigateway.models.s3location.properties-8.key.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-key"

*Defined in [spec/spec.ts:1101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1101)*





___
<a id="apigateway.models.s3location.properties-8.key.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1102)*





___
<a id="apigateway.models.s3location.properties-8.key.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1103)*





___
<a id="apigateway.models.s3location.properties-8.key.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1104)*





___

___
<a id="apigateway.models.s3location.properties-8.version"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:1106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1106)*




<a id="apigateway.models.s3location.properties-8.version.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-restapi-s3location.html#cfn-apigateway-restapi-s3location-version"

*Defined in [spec/spec.ts:1107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1107)*





___
<a id="apigateway.models.s3location.properties-8.version.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1108)*





___
<a id="apigateway.models.s3location.properties-8.version.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1109)*





___
<a id="apigateway.models.s3location.properties-8.version.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1110)*





___

___

___

___
<a id="apigateway.models.stagedescription"></a>

###  StageDescription

** StageDescription**:  *`object`* 

*Defined in [spec/spec.ts:787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L787)*




<a id="apigateway.models.stagedescription.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html"

*Defined in [spec/spec.ts:788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L788)*





___
<a id="apigateway.models.stagedescription.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Deployment.StageDescription"

*Defined in [spec/spec.ts:885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L885)*





___
<a id="apigateway.models.stagedescription.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L789)*




<a id="apigateway.models.stagedescription.properties-9.cacheclusterenabled"></a>

###  CacheClusterEnabled

** CacheClusterEnabled**:  *`object`* 

*Defined in [spec/spec.ts:790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L790)*




<a id="apigateway.models.stagedescription.properties-9.cacheclusterenabled.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclusterenabled"

*Defined in [spec/spec.ts:791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L791)*





___
<a id="apigateway.models.stagedescription.properties-9.cacheclusterenabled.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L792)*





___
<a id="apigateway.models.stagedescription.properties-9.cacheclusterenabled.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L793)*





___
<a id="apigateway.models.stagedescription.properties-9.cacheclusterenabled.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L794)*





___

___
<a id="apigateway.models.stagedescription.properties-9.cacheclustersize"></a>

###  CacheClusterSize

** CacheClusterSize**:  *`object`* 

*Defined in [spec/spec.ts:796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L796)*




<a id="apigateway.models.stagedescription.properties-9.cacheclustersize.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cacheclustersize"

*Defined in [spec/spec.ts:797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L797)*





___
<a id="apigateway.models.stagedescription.properties-9.cacheclustersize.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L798)*





___
<a id="apigateway.models.stagedescription.properties-9.cacheclustersize.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L799)*





___
<a id="apigateway.models.stagedescription.properties-9.cacheclustersize.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L800)*





___

___
<a id="apigateway.models.stagedescription.properties-9.cachedataencrypted-1"></a>

###  CacheDataEncrypted

** CacheDataEncrypted**:  *`object`* 

*Defined in [spec/spec.ts:802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L802)*




<a id="apigateway.models.stagedescription.properties-9.cachedataencrypted-1.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachedataencrypted"

*Defined in [spec/spec.ts:803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L803)*





___
<a id="apigateway.models.stagedescription.properties-9.cachedataencrypted-1.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L804)*





___
<a id="apigateway.models.stagedescription.properties-9.cachedataencrypted-1.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L805)*





___
<a id="apigateway.models.stagedescription.properties-9.cachedataencrypted-1.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L806)*





___

___
<a id="apigateway.models.stagedescription.properties-9.cachettlinseconds-1"></a>

###  CacheTtlInSeconds

** CacheTtlInSeconds**:  *`object`* 

*Defined in [spec/spec.ts:808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L808)*




<a id="apigateway.models.stagedescription.properties-9.cachettlinseconds-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachettlinseconds"

*Defined in [spec/spec.ts:809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L809)*





___
<a id="apigateway.models.stagedescription.properties-9.cachettlinseconds-1.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L810)*





___
<a id="apigateway.models.stagedescription.properties-9.cachettlinseconds-1.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L811)*





___
<a id="apigateway.models.stagedescription.properties-9.cachettlinseconds-1.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L812)*





___

___
<a id="apigateway.models.stagedescription.properties-9.cachingenabled-1"></a>

###  CachingEnabled

** CachingEnabled**:  *`object`* 

*Defined in [spec/spec.ts:814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L814)*




<a id="apigateway.models.stagedescription.properties-9.cachingenabled-1.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-cachingenabled"

*Defined in [spec/spec.ts:815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L815)*





___
<a id="apigateway.models.stagedescription.properties-9.cachingenabled-1.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L816)*





___
<a id="apigateway.models.stagedescription.properties-9.cachingenabled-1.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L817)*





___
<a id="apigateway.models.stagedescription.properties-9.cachingenabled-1.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L818)*





___

___
<a id="apigateway.models.stagedescription.properties-9.clientcertificateid"></a>

###  ClientCertificateId

** ClientCertificateId**:  *`object`* 

*Defined in [spec/spec.ts:820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L820)*




<a id="apigateway.models.stagedescription.properties-9.clientcertificateid.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-clientcertificateid"

*Defined in [spec/spec.ts:821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L821)*





___
<a id="apigateway.models.stagedescription.properties-9.clientcertificateid.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L822)*





___
<a id="apigateway.models.stagedescription.properties-9.clientcertificateid.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L823)*





___
<a id="apigateway.models.stagedescription.properties-9.clientcertificateid.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L824)*





___

___
<a id="apigateway.models.stagedescription.properties-9.datatraceenabled-1"></a>

###  DataTraceEnabled

** DataTraceEnabled**:  *`object`* 

*Defined in [spec/spec.ts:826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L826)*




<a id="apigateway.models.stagedescription.properties-9.datatraceenabled-1.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-datatraceenabled"

*Defined in [spec/spec.ts:827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L827)*





___
<a id="apigateway.models.stagedescription.properties-9.datatraceenabled-1.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L828)*





___
<a id="apigateway.models.stagedescription.properties-9.datatraceenabled-1.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L829)*





___
<a id="apigateway.models.stagedescription.properties-9.datatraceenabled-1.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L830)*





___

___
<a id="apigateway.models.stagedescription.properties-9.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L832)*




<a id="apigateway.models.stagedescription.properties-9.description.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-description"

*Defined in [spec/spec.ts:833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L833)*





___
<a id="apigateway.models.stagedescription.properties-9.description.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L834)*





___
<a id="apigateway.models.stagedescription.properties-9.description.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L835)*





___
<a id="apigateway.models.stagedescription.properties-9.description.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L836)*





___

___
<a id="apigateway.models.stagedescription.properties-9.documentationversion"></a>

###  DocumentationVersion

** DocumentationVersion**:  *`object`* 

*Defined in [spec/spec.ts:838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L838)*




<a id="apigateway.models.stagedescription.properties-9.documentationversion.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-documentationversion"

*Defined in [spec/spec.ts:839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L839)*





___
<a id="apigateway.models.stagedescription.properties-9.documentationversion.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L840)*





___
<a id="apigateway.models.stagedescription.properties-9.documentationversion.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L841)*





___
<a id="apigateway.models.stagedescription.properties-9.documentationversion.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L842)*





___

___
<a id="apigateway.models.stagedescription.properties-9.logginglevel-1"></a>

###  LoggingLevel

** LoggingLevel**:  *`object`* 

*Defined in [spec/spec.ts:844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L844)*




<a id="apigateway.models.stagedescription.properties-9.logginglevel-1.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-logginglevel"

*Defined in [spec/spec.ts:845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L845)*





___
<a id="apigateway.models.stagedescription.properties-9.logginglevel-1.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L846)*





___
<a id="apigateway.models.stagedescription.properties-9.logginglevel-1.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L847)*





___
<a id="apigateway.models.stagedescription.properties-9.logginglevel-1.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L848)*





___

___
<a id="apigateway.models.stagedescription.properties-9.methodsettings"></a>

###  MethodSettings

** MethodSettings**:  *`object`* 

*Defined in [spec/spec.ts:850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L850)*




<a id="apigateway.models.stagedescription.properties-9.methodsettings.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-methodsettings"

*Defined in [spec/spec.ts:851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L851)*





___
<a id="apigateway.models.stagedescription.properties-9.methodsettings.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L852)*





___
<a id="apigateway.models.stagedescription.properties-9.methodsettings.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MethodSetting"

*Defined in [spec/spec.ts:853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L853)*





___
<a id="apigateway.models.stagedescription.properties-9.methodsettings.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L854)*





___
<a id="apigateway.models.stagedescription.properties-9.methodsettings.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L855)*





___
<a id="apigateway.models.stagedescription.properties-9.methodsettings.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L856)*





___

___
<a id="apigateway.models.stagedescription.properties-9.metricsenabled-1"></a>

###  MetricsEnabled

** MetricsEnabled**:  *`object`* 

*Defined in [spec/spec.ts:858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L858)*




<a id="apigateway.models.stagedescription.properties-9.metricsenabled-1.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-metricsenabled"

*Defined in [spec/spec.ts:859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L859)*





___
<a id="apigateway.models.stagedescription.properties-9.metricsenabled-1.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L860)*





___
<a id="apigateway.models.stagedescription.properties-9.metricsenabled-1.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L861)*





___
<a id="apigateway.models.stagedescription.properties-9.metricsenabled-1.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L862)*





___

___
<a id="apigateway.models.stagedescription.properties-9.throttlingburstlimit-1"></a>

###  ThrottlingBurstLimit

** ThrottlingBurstLimit**:  *`object`* 

*Defined in [spec/spec.ts:864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L864)*




<a id="apigateway.models.stagedescription.properties-9.throttlingburstlimit-1.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingburstlimit"

*Defined in [spec/spec.ts:865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L865)*





___
<a id="apigateway.models.stagedescription.properties-9.throttlingburstlimit-1.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L866)*





___
<a id="apigateway.models.stagedescription.properties-9.throttlingburstlimit-1.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L867)*





___
<a id="apigateway.models.stagedescription.properties-9.throttlingburstlimit-1.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L868)*





___

___
<a id="apigateway.models.stagedescription.properties-9.throttlingratelimit-1"></a>

###  ThrottlingRateLimit

** ThrottlingRateLimit**:  *`object`* 

*Defined in [spec/spec.ts:870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L870)*




<a id="apigateway.models.stagedescription.properties-9.throttlingratelimit-1.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-throttlingratelimit"

*Defined in [spec/spec.ts:871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L871)*





___
<a id="apigateway.models.stagedescription.properties-9.throttlingratelimit-1.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L872)*





___
<a id="apigateway.models.stagedescription.properties-9.throttlingratelimit-1.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L873)*





___
<a id="apigateway.models.stagedescription.properties-9.throttlingratelimit-1.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L874)*





___

___
<a id="apigateway.models.stagedescription.properties-9.variables"></a>

###  Variables

** Variables**:  *`object`* 

*Defined in [spec/spec.ts:876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L876)*




<a id="apigateway.models.stagedescription.properties-9.variables.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-deployment-stagedescription.html#cfn-apigateway-deployment-stagedescription-variables"

*Defined in [spec/spec.ts:877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L877)*





___
<a id="apigateway.models.stagedescription.properties-9.variables.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L878)*





___
<a id="apigateway.models.stagedescription.properties-9.variables.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L879)*





___
<a id="apigateway.models.stagedescription.properties-9.variables.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L880)*





___
<a id="apigateway.models.stagedescription.properties-9.variables.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L881)*





___
<a id="apigateway.models.stagedescription.properties-9.variables.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L882)*





___

___

___

___
<a id="apigateway.models.stagekey"></a>

###  StageKey

** StageKey**:  *`object`* 

*Defined in [spec/spec.ts:703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L703)*




<a id="apigateway.models.stagekey.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-apikey-stagekey.html"

*Defined in [spec/spec.ts:704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L704)*





___
<a id="apigateway.models.stagekey.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::ApiKey.StageKey"

*Defined in [spec/spec.ts:719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L719)*





___
<a id="apigateway.models.stagekey.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L705)*




<a id="apigateway.models.stagekey.properties-10.restapiid"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L706)*




<a id="apigateway.models.stagekey.properties-10.restapiid.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-apikey-stagekey.html#cfn-apigateway-apikey-stagekey-restapiid"

*Defined in [spec/spec.ts:707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L707)*





___
<a id="apigateway.models.stagekey.properties-10.restapiid.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L708)*





___
<a id="apigateway.models.stagekey.properties-10.restapiid.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L709)*





___
<a id="apigateway.models.stagekey.properties-10.restapiid.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L710)*





___

___
<a id="apigateway.models.stagekey.properties-10.stagename"></a>

###  StageName

** StageName**:  *`object`* 

*Defined in [spec/spec.ts:712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L712)*




<a id="apigateway.models.stagekey.properties-10.stagename.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-apikey-stagekey.html#cfn-apigateway-apikey-stagekey-stagename"

*Defined in [spec/spec.ts:713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L713)*





___
<a id="apigateway.models.stagekey.properties-10.stagename.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L714)*





___
<a id="apigateway.models.stagekey.properties-10.stagename.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L715)*





___
<a id="apigateway.models.stagekey.properties-10.stagename.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L716)*





___

___

___

___
<a id="apigateway.models.throttlesettings"></a>

###  ThrottleSettings

** ThrottleSettings**:  *`object`* 

*Defined in [spec/spec.ts:1157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1157)*




<a id="apigateway.models.throttlesettings.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html"

*Defined in [spec/spec.ts:1158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1158)*





___
<a id="apigateway.models.throttlesettings.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::UsagePlan.ThrottleSettings"

*Defined in [spec/spec.ts:1173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1173)*





___
<a id="apigateway.models.throttlesettings.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1159)*




<a id="apigateway.models.throttlesettings.properties-11.burstlimit"></a>

###  BurstLimit

** BurstLimit**:  *`object`* 

*Defined in [spec/spec.ts:1160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1160)*




<a id="apigateway.models.throttlesettings.properties-11.burstlimit.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-burstlimit"

*Defined in [spec/spec.ts:1161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1161)*





___
<a id="apigateway.models.throttlesettings.properties-11.burstlimit.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1162)*





___
<a id="apigateway.models.throttlesettings.properties-11.burstlimit.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1163)*





___
<a id="apigateway.models.throttlesettings.properties-11.burstlimit.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1164)*





___

___
<a id="apigateway.models.throttlesettings.properties-11.ratelimit"></a>

###  RateLimit

** RateLimit**:  *`object`* 

*Defined in [spec/spec.ts:1166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1166)*




<a id="apigateway.models.throttlesettings.properties-11.ratelimit.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-usageplan-throttlesettings.html#cfn-apigateway-usageplan-throttlesettings-ratelimit"

*Defined in [spec/spec.ts:1167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1167)*





___
<a id="apigateway.models.throttlesettings.properties-11.ratelimit.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:1168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1168)*





___
<a id="apigateway.models.throttlesettings.properties-11.ratelimit.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1169)*





___
<a id="apigateway.models.throttlesettings.properties-11.ratelimit.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1170)*





___

___

___

___

___
<a id="apigateway.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:5](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5)*




<a id="apigateway.resources.account"></a>

###  Account

** Account**:  *`object`* 

*Defined in [spec/spec.ts:6](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6)*




<a id="apigateway.resources.account.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html"

*Defined in [spec/spec.ts:7](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7)*





___
<a id="apigateway.resources.account.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Account"

*Defined in [spec/spec.ts:16](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16)*





___
<a id="apigateway.resources.account.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:8](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L8)*




<a id="apigateway.resources.account.properties-12.cloudwatchrolearn"></a>

###  CloudWatchRoleArn

** CloudWatchRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:9](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L9)*




<a id="apigateway.resources.account.properties-12.cloudwatchrolearn.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-account.html#cfn-apigateway-account-cloudwatchrolearn"

*Defined in [spec/spec.ts:10](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10)*





___
<a id="apigateway.resources.account.properties-12.cloudwatchrolearn.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11)*





___
<a id="apigateway.resources.account.properties-12.cloudwatchrolearn.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12)*





___
<a id="apigateway.resources.account.properties-12.cloudwatchrolearn.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13)*





___

___

___

___
<a id="apigateway.resources.apikey"></a>

###  ApiKey

** ApiKey**:  *`object`* 

*Defined in [spec/spec.ts:18](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18)*




<a id="apigateway.resources.apikey.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html"

*Defined in [spec/spec.ts:19](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19)*





___
<a id="apigateway.resources.apikey.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::ApiKey"

*Defined in [spec/spec.ts:60](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L60)*





___
<a id="apigateway.resources.apikey.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:20](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L20)*




<a id="apigateway.resources.apikey.properties-13.customerid"></a>

###  CustomerId

** CustomerId**:  *`object`* 

*Defined in [spec/spec.ts:21](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21)*




<a id="apigateway.resources.apikey.properties-13.customerid.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-customerid"

*Defined in [spec/spec.ts:22](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22)*





___
<a id="apigateway.resources.apikey.properties-13.customerid.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23)*





___
<a id="apigateway.resources.apikey.properties-13.customerid.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:24](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L24)*





___
<a id="apigateway.resources.apikey.properties-13.customerid.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:25](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L25)*





___

___
<a id="apigateway.resources.apikey.properties-13.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:27](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L27)*




<a id="apigateway.resources.apikey.properties-13.description-1.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-description"

*Defined in [spec/spec.ts:28](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L28)*





___
<a id="apigateway.resources.apikey.properties-13.description-1.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:29](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L29)*





___
<a id="apigateway.resources.apikey.properties-13.description-1.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:30](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L30)*





___
<a id="apigateway.resources.apikey.properties-13.description-1.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:31](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L31)*





___

___
<a id="apigateway.resources.apikey.properties-13.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:33](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L33)*




<a id="apigateway.resources.apikey.properties-13.enabled.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-enabled"

*Defined in [spec/spec.ts:34](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L34)*





___
<a id="apigateway.resources.apikey.properties-13.enabled.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:35](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L35)*





___
<a id="apigateway.resources.apikey.properties-13.enabled.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:36](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L36)*





___
<a id="apigateway.resources.apikey.properties-13.enabled.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:37](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L37)*





___

___
<a id="apigateway.resources.apikey.properties-13.generatedistinctid"></a>

###  GenerateDistinctId

** GenerateDistinctId**:  *`object`* 

*Defined in [spec/spec.ts:39](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L39)*




<a id="apigateway.resources.apikey.properties-13.generatedistinctid.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-generatedistinctid"

*Defined in [spec/spec.ts:40](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L40)*





___
<a id="apigateway.resources.apikey.properties-13.generatedistinctid.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:41](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L41)*





___
<a id="apigateway.resources.apikey.properties-13.generatedistinctid.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:42](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L42)*





___
<a id="apigateway.resources.apikey.properties-13.generatedistinctid.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:43](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L43)*





___

___
<a id="apigateway.resources.apikey.properties-13.name-15"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:45](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L45)*




<a id="apigateway.resources.apikey.properties-13.name-15.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-name"

*Defined in [spec/spec.ts:46](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L46)*





___
<a id="apigateway.resources.apikey.properties-13.name-15.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:47](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L47)*





___
<a id="apigateway.resources.apikey.properties-13.name-15.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:48](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L48)*





___
<a id="apigateway.resources.apikey.properties-13.name-15.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:49](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L49)*





___

___
<a id="apigateway.resources.apikey.properties-13.stagekeys"></a>

###  StageKeys

** StageKeys**:  *`object`* 

*Defined in [spec/spec.ts:51](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L51)*




<a id="apigateway.resources.apikey.properties-13.stagekeys.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-apikey.html#cfn-apigateway-apikey-stagekeys"

*Defined in [spec/spec.ts:52](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L52)*





___
<a id="apigateway.resources.apikey.properties-13.stagekeys.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:53](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L53)*





___
<a id="apigateway.resources.apikey.properties-13.stagekeys.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "StageKey"

*Defined in [spec/spec.ts:54](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L54)*





___
<a id="apigateway.resources.apikey.properties-13.stagekeys.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:55](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L55)*





___
<a id="apigateway.resources.apikey.properties-13.stagekeys.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:56](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L56)*





___
<a id="apigateway.resources.apikey.properties-13.stagekeys.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:57](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L57)*





___

___

___

___
<a id="apigateway.resources.authorizer"></a>

###  Authorizer

** Authorizer**:  *`object`* 

*Defined in [spec/spec.ts:62](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L62)*




<a id="apigateway.resources.authorizer.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html"

*Defined in [spec/spec.ts:63](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L63)*





___
<a id="apigateway.resources.authorizer.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Authorizer"

*Defined in [spec/spec.ts:128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L128)*





___
<a id="apigateway.resources.authorizer.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:64](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L64)*




<a id="apigateway.resources.authorizer.properties-14.authtype"></a>

###  AuthType

** AuthType**:  *`object`* 

*Defined in [spec/spec.ts:65](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L65)*




<a id="apigateway.resources.authorizer.properties-14.authtype.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authtype"

*Defined in [spec/spec.ts:66](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L66)*





___
<a id="apigateway.resources.authorizer.properties-14.authtype.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:67](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L67)*





___
<a id="apigateway.resources.authorizer.properties-14.authtype.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:68](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L68)*





___
<a id="apigateway.resources.authorizer.properties-14.authtype.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:69](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L69)*





___

___
<a id="apigateway.resources.authorizer.properties-14.authorizercredentials"></a>

###  AuthorizerCredentials

** AuthorizerCredentials**:  *`object`* 

*Defined in [spec/spec.ts:71](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L71)*




<a id="apigateway.resources.authorizer.properties-14.authorizercredentials.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizercredentials"

*Defined in [spec/spec.ts:72](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L72)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizercredentials.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:73](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L73)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizercredentials.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:74](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L74)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizercredentials.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:75](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L75)*





___

___
<a id="apigateway.resources.authorizer.properties-14.authorizerresultttlinseconds"></a>

###  AuthorizerResultTtlInSeconds

** AuthorizerResultTtlInSeconds**:  *`object`* 

*Defined in [spec/spec.ts:77](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L77)*




<a id="apigateway.resources.authorizer.properties-14.authorizerresultttlinseconds.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizerresultttlinseconds"

*Defined in [spec/spec.ts:78](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L78)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizerresultttlinseconds.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:79](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L79)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizerresultttlinseconds.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:80](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L80)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizerresultttlinseconds.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:81](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L81)*





___

___
<a id="apigateway.resources.authorizer.properties-14.authorizeruri"></a>

###  AuthorizerUri

** AuthorizerUri**:  *`object`* 

*Defined in [spec/spec.ts:83](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L83)*




<a id="apigateway.resources.authorizer.properties-14.authorizeruri.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-authorizeruri"

*Defined in [spec/spec.ts:84](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L84)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizeruri.primitivetype-61"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:85](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L85)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizeruri.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:86](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L86)*





___
<a id="apigateway.resources.authorizer.properties-14.authorizeruri.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:87](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L87)*





___

___
<a id="apigateway.resources.authorizer.properties-14.identitysource"></a>

###  IdentitySource

** IdentitySource**:  *`object`* 

*Defined in [spec/spec.ts:89](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L89)*




<a id="apigateway.resources.authorizer.properties-14.identitysource.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identitysource"

*Defined in [spec/spec.ts:90](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L90)*





___
<a id="apigateway.resources.authorizer.properties-14.identitysource.primitivetype-62"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:91](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L91)*





___
<a id="apigateway.resources.authorizer.properties-14.identitysource.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:92](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L92)*





___
<a id="apigateway.resources.authorizer.properties-14.identitysource.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:93](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L93)*





___

___
<a id="apigateway.resources.authorizer.properties-14.identityvalidationexpression"></a>

###  IdentityValidationExpression

** IdentityValidationExpression**:  *`object`* 

*Defined in [spec/spec.ts:95](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L95)*




<a id="apigateway.resources.authorizer.properties-14.identityvalidationexpression.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-identityvalidationexpression"

*Defined in [spec/spec.ts:96](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L96)*





___
<a id="apigateway.resources.authorizer.properties-14.identityvalidationexpression.primitivetype-63"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:97](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L97)*





___
<a id="apigateway.resources.authorizer.properties-14.identityvalidationexpression.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:98](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L98)*





___
<a id="apigateway.resources.authorizer.properties-14.identityvalidationexpression.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:99](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L99)*





___

___
<a id="apigateway.resources.authorizer.properties-14.name-17"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L101)*




<a id="apigateway.resources.authorizer.properties-14.name-17.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-name"

*Defined in [spec/spec.ts:102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L102)*





___
<a id="apigateway.resources.authorizer.properties-14.name-17.primitivetype-64"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L103)*





___
<a id="apigateway.resources.authorizer.properties-14.name-17.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L104)*





___
<a id="apigateway.resources.authorizer.properties-14.name-17.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L105)*





___

___
<a id="apigateway.resources.authorizer.properties-14.providerarns"></a>

###  ProviderARNs

** ProviderARNs**:  *`object`* 

*Defined in [spec/spec.ts:107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L107)*




<a id="apigateway.resources.authorizer.properties-14.providerarns.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-providerarns"

*Defined in [spec/spec.ts:108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L108)*





___
<a id="apigateway.resources.authorizer.properties-14.providerarns.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L109)*





___
<a id="apigateway.resources.authorizer.properties-14.providerarns.primitiveitemtype-9"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L110)*





___
<a id="apigateway.resources.authorizer.properties-14.providerarns.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L111)*





___
<a id="apigateway.resources.authorizer.properties-14.providerarns.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L112)*





___
<a id="apigateway.resources.authorizer.properties-14.providerarns.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L113)*





___

___
<a id="apigateway.resources.authorizer.properties-14.restapiid-1"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L115)*




<a id="apigateway.resources.authorizer.properties-14.restapiid-1.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-restapiid"

*Defined in [spec/spec.ts:116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L116)*





___
<a id="apigateway.resources.authorizer.properties-14.restapiid-1.primitivetype-65"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L117)*





___
<a id="apigateway.resources.authorizer.properties-14.restapiid-1.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L118)*





___
<a id="apigateway.resources.authorizer.properties-14.restapiid-1.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L119)*





___

___
<a id="apigateway.resources.authorizer.properties-14.type-15"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L121)*




<a id="apigateway.resources.authorizer.properties-14.type-15.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-authorizer.html#cfn-apigateway-authorizer-type"

*Defined in [spec/spec.ts:122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L122)*





___
<a id="apigateway.resources.authorizer.properties-14.type-15.primitivetype-66"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L123)*





___
<a id="apigateway.resources.authorizer.properties-14.type-15.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L124)*





___
<a id="apigateway.resources.authorizer.properties-14.type-15.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L125)*





___

___

___

___
<a id="apigateway.resources.basepathmapping"></a>

###  BasePathMapping

** BasePathMapping**:  *`object`* 

*Defined in [spec/spec.ts:130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L130)*




<a id="apigateway.resources.basepathmapping.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html"

*Defined in [spec/spec.ts:131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L131)*





___
<a id="apigateway.resources.basepathmapping.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::BasePathMapping"

*Defined in [spec/spec.ts:158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L158)*





___
<a id="apigateway.resources.basepathmapping.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L132)*




<a id="apigateway.resources.basepathmapping.properties-15.basepath"></a>

###  BasePath

** BasePath**:  *`object`* 

*Defined in [spec/spec.ts:133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L133)*




<a id="apigateway.resources.basepathmapping.properties-15.basepath.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-basepath"

*Defined in [spec/spec.ts:134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L134)*





___
<a id="apigateway.resources.basepathmapping.properties-15.basepath.primitivetype-67"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L135)*





___
<a id="apigateway.resources.basepathmapping.properties-15.basepath.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L136)*





___
<a id="apigateway.resources.basepathmapping.properties-15.basepath.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L137)*





___

___
<a id="apigateway.resources.basepathmapping.properties-15.domainname"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L139)*




<a id="apigateway.resources.basepathmapping.properties-15.domainname.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-domainname"

*Defined in [spec/spec.ts:140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L140)*





___
<a id="apigateway.resources.basepathmapping.properties-15.domainname.primitivetype-68"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L141)*





___
<a id="apigateway.resources.basepathmapping.properties-15.domainname.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L142)*





___
<a id="apigateway.resources.basepathmapping.properties-15.domainname.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L143)*





___

___
<a id="apigateway.resources.basepathmapping.properties-15.restapiid-2"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L145)*




<a id="apigateway.resources.basepathmapping.properties-15.restapiid-2.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-restapiid"

*Defined in [spec/spec.ts:146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L146)*





___
<a id="apigateway.resources.basepathmapping.properties-15.restapiid-2.primitivetype-69"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L147)*





___
<a id="apigateway.resources.basepathmapping.properties-15.restapiid-2.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L148)*





___
<a id="apigateway.resources.basepathmapping.properties-15.restapiid-2.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L149)*





___

___
<a id="apigateway.resources.basepathmapping.properties-15.stage-1"></a>

###  Stage

** Stage**:  *`object`* 

*Defined in [spec/spec.ts:151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L151)*




<a id="apigateway.resources.basepathmapping.properties-15.stage-1.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-basepathmapping.html#cfn-apigateway-basepathmapping-stage"

*Defined in [spec/spec.ts:152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L152)*





___
<a id="apigateway.resources.basepathmapping.properties-15.stage-1.primitivetype-70"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L153)*





___
<a id="apigateway.resources.basepathmapping.properties-15.stage-1.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L154)*





___
<a id="apigateway.resources.basepathmapping.properties-15.stage-1.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L155)*





___

___

___

___
<a id="apigateway.resources.clientcertificate"></a>

###  ClientCertificate

** ClientCertificate**:  *`object`* 

*Defined in [spec/spec.ts:160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L160)*




<a id="apigateway.resources.clientcertificate.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html"

*Defined in [spec/spec.ts:161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L161)*





___
<a id="apigateway.resources.clientcertificate.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::ClientCertificate"

*Defined in [spec/spec.ts:170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L170)*





___
<a id="apigateway.resources.clientcertificate.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L162)*




<a id="apigateway.resources.clientcertificate.properties-16.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L163)*




<a id="apigateway.resources.clientcertificate.properties-16.description-2.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-clientcertificate.html#cfn-apigateway-clientcertificate-description"

*Defined in [spec/spec.ts:164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L164)*





___
<a id="apigateway.resources.clientcertificate.properties-16.description-2.primitivetype-71"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L165)*





___
<a id="apigateway.resources.clientcertificate.properties-16.description-2.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L166)*





___
<a id="apigateway.resources.clientcertificate.properties-16.description-2.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L167)*





___

___

___

___
<a id="apigateway.resources.deployment"></a>

###  Deployment

** Deployment**:  *`object`* 

*Defined in [spec/spec.ts:172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L172)*




<a id="apigateway.resources.deployment.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html"

*Defined in [spec/spec.ts:173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L173)*





___
<a id="apigateway.resources.deployment.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Deployment"

*Defined in [spec/spec.ts:200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L200)*





___
<a id="apigateway.resources.deployment.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L174)*




<a id="apigateway.resources.deployment.properties-17.description-3"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L175)*




<a id="apigateway.resources.deployment.properties-17.description-3.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-description"

*Defined in [spec/spec.ts:176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L176)*





___
<a id="apigateway.resources.deployment.properties-17.description-3.primitivetype-72"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L177)*





___
<a id="apigateway.resources.deployment.properties-17.description-3.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L178)*





___
<a id="apigateway.resources.deployment.properties-17.description-3.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L179)*





___

___
<a id="apigateway.resources.deployment.properties-17.restapiid-3"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L181)*




<a id="apigateway.resources.deployment.properties-17.restapiid-3.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-restapiid"

*Defined in [spec/spec.ts:182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L182)*





___
<a id="apigateway.resources.deployment.properties-17.restapiid-3.primitivetype-73"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L183)*





___
<a id="apigateway.resources.deployment.properties-17.restapiid-3.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L184)*





___
<a id="apigateway.resources.deployment.properties-17.restapiid-3.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L185)*





___

___
<a id="apigateway.resources.deployment.properties-17.stagedescription-1"></a>

###  StageDescription

** StageDescription**:  *`object`* 

*Defined in [spec/spec.ts:187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L187)*




<a id="apigateway.resources.deployment.properties-17.stagedescription-1.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagedescription"

*Defined in [spec/spec.ts:188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L188)*





___
<a id="apigateway.resources.deployment.properties-17.stagedescription-1.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L189)*





___
<a id="apigateway.resources.deployment.properties-17.stagedescription-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "StageDescription"

*Defined in [spec/spec.ts:190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L190)*





___
<a id="apigateway.resources.deployment.properties-17.stagedescription-1.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L191)*





___

___
<a id="apigateway.resources.deployment.properties-17.stagename-1"></a>

###  StageName

** StageName**:  *`object`* 

*Defined in [spec/spec.ts:193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L193)*




<a id="apigateway.resources.deployment.properties-17.stagename-1.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-deployment.html#cfn-apigateway-deployment-stagename"

*Defined in [spec/spec.ts:194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L194)*





___
<a id="apigateway.resources.deployment.properties-17.stagename-1.primitivetype-74"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L195)*





___
<a id="apigateway.resources.deployment.properties-17.stagename-1.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L196)*





___
<a id="apigateway.resources.deployment.properties-17.stagename-1.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L197)*





___

___

___

___
<a id="apigateway.resources.documentationpart"></a>

###  DocumentationPart

** DocumentationPart**:  *`object`* 

*Defined in [spec/spec.ts:202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L202)*




<a id="apigateway.resources.documentationpart.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html"

*Defined in [spec/spec.ts:203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L203)*





___
<a id="apigateway.resources.documentationpart.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::DocumentationPart"

*Defined in [spec/spec.ts:224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L224)*





___
<a id="apigateway.resources.documentationpart.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L204)*




<a id="apigateway.resources.documentationpart.properties-18.location-1"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L205)*




<a id="apigateway.resources.documentationpart.properties-18.location-1.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-location"

*Defined in [spec/spec.ts:206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L206)*





___
<a id="apigateway.resources.documentationpart.properties-18.location-1.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L207)*





___
<a id="apigateway.resources.documentationpart.properties-18.location-1.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "Location"

*Defined in [spec/spec.ts:208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L208)*





___
<a id="apigateway.resources.documentationpart.properties-18.location-1.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L209)*





___

___
<a id="apigateway.resources.documentationpart.properties-18.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L211)*




<a id="apigateway.resources.documentationpart.properties-18.properties-19.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-properties"

*Defined in [spec/spec.ts:212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L212)*





___
<a id="apigateway.resources.documentationpart.properties-18.properties-19.primitivetype-75"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L213)*





___
<a id="apigateway.resources.documentationpart.properties-18.properties-19.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L214)*





___
<a id="apigateway.resources.documentationpart.properties-18.properties-19.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L215)*





___

___
<a id="apigateway.resources.documentationpart.properties-18.restapiid-4"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L217)*




<a id="apigateway.resources.documentationpart.properties-18.restapiid-4.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationpart.html#cfn-apigateway-documentationpart-restapiid"

*Defined in [spec/spec.ts:218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L218)*





___
<a id="apigateway.resources.documentationpart.properties-18.restapiid-4.primitivetype-76"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L219)*





___
<a id="apigateway.resources.documentationpart.properties-18.restapiid-4.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L220)*





___
<a id="apigateway.resources.documentationpart.properties-18.restapiid-4.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L221)*





___

___

___

___
<a id="apigateway.resources.documentationversion-1"></a>

###  DocumentationVersion

** DocumentationVersion**:  *`object`* 

*Defined in [spec/spec.ts:226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L226)*




<a id="apigateway.resources.documentationversion-1.documentation-111"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html"

*Defined in [spec/spec.ts:227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L227)*





___
<a id="apigateway.resources.documentationversion-1.name-22"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::DocumentationVersion"

*Defined in [spec/spec.ts:248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L248)*





___
<a id="apigateway.resources.documentationversion-1.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L228)*




<a id="apigateway.resources.documentationversion-1.properties-20.description-4"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L229)*




<a id="apigateway.resources.documentationversion-1.properties-20.description-4.documentation-112"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description"

*Defined in [spec/spec.ts:230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L230)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.description-4.primitivetype-77"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L231)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.description-4.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L232)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.description-4.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L233)*





___

___
<a id="apigateway.resources.documentationversion-1.properties-20.documentationversion-2"></a>

###  DocumentationVersion

** DocumentationVersion**:  *`object`* 

*Defined in [spec/spec.ts:235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L235)*




<a id="apigateway.resources.documentationversion-1.properties-20.documentationversion-2.documentation-113"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion"

*Defined in [spec/spec.ts:236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L236)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.documentationversion-2.primitivetype-78"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L237)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.documentationversion-2.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L238)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.documentationversion-2.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L239)*





___

___
<a id="apigateway.resources.documentationversion-1.properties-20.restapiid-5"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L241)*




<a id="apigateway.resources.documentationversion-1.properties-20.restapiid-5.documentation-114"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid"

*Defined in [spec/spec.ts:242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L242)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.restapiid-5.primitivetype-79"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L243)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.restapiid-5.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L244)*





___
<a id="apigateway.resources.documentationversion-1.properties-20.restapiid-5.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L245)*





___

___

___

___
<a id="apigateway.resources.domainname-1"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L250)*




<a id="apigateway.resources.domainname-1.documentation-115"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html"

*Defined in [spec/spec.ts:251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L251)*





___
<a id="apigateway.resources.domainname-1.name-23"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::DomainName"

*Defined in [spec/spec.ts:278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L278)*





___
<a id="apigateway.resources.domainname-1.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L252)*




<a id="apigateway.resources.domainname-1.properties-21.certificatearn"></a>

###  CertificateArn

** CertificateArn**:  *`object`* 

*Defined in [spec/spec.ts:253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L253)*




<a id="apigateway.resources.domainname-1.properties-21.certificatearn.documentation-116"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn"

*Defined in [spec/spec.ts:254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L254)*





___
<a id="apigateway.resources.domainname-1.properties-21.certificatearn.primitivetype-80"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L255)*





___
<a id="apigateway.resources.domainname-1.properties-21.certificatearn.required-95"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L256)*





___
<a id="apigateway.resources.domainname-1.properties-21.certificatearn.updatetype-95"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L257)*





___

___
<a id="apigateway.resources.domainname-1.properties-21.domainname-2"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L259)*




<a id="apigateway.resources.domainname-1.properties-21.domainname-2.documentation-117"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname"

*Defined in [spec/spec.ts:260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L260)*





___
<a id="apigateway.resources.domainname-1.properties-21.domainname-2.primitivetype-81"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L261)*





___
<a id="apigateway.resources.domainname-1.properties-21.domainname-2.required-96"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L262)*





___
<a id="apigateway.resources.domainname-1.properties-21.domainname-2.updatetype-96"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L263)*





___

___
<a id="apigateway.resources.domainname-1.properties-21.endpointconfiguration-1"></a>

###  EndpointConfiguration

** EndpointConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L265)*




<a id="apigateway.resources.domainname-1.properties-21.endpointconfiguration-1.documentation-118"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-endpointconfiguration"

*Defined in [spec/spec.ts:266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L266)*





___
<a id="apigateway.resources.domainname-1.properties-21.endpointconfiguration-1.required-97"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L267)*





___
<a id="apigateway.resources.domainname-1.properties-21.endpointconfiguration-1.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "EndpointConfiguration"

*Defined in [spec/spec.ts:268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L268)*





___
<a id="apigateway.resources.domainname-1.properties-21.endpointconfiguration-1.updatetype-97"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L269)*





___

___
<a id="apigateway.resources.domainname-1.properties-21.regionalcertificatearn"></a>

###  RegionalCertificateArn

** RegionalCertificateArn**:  *`object`* 

*Defined in [spec/spec.ts:271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L271)*




<a id="apigateway.resources.domainname-1.properties-21.regionalcertificatearn.documentation-119"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn"

*Defined in [spec/spec.ts:272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L272)*





___
<a id="apigateway.resources.domainname-1.properties-21.regionalcertificatearn.primitivetype-82"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L273)*





___
<a id="apigateway.resources.domainname-1.properties-21.regionalcertificatearn.required-98"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L274)*





___
<a id="apigateway.resources.domainname-1.properties-21.regionalcertificatearn.updatetype-98"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L275)*





___

___

___

___
<a id="apigateway.resources.gatewayresponse"></a>

###  GatewayResponse

** GatewayResponse**:  *`object`* 

*Defined in [spec/spec.ts:280](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L280)*




<a id="apigateway.resources.gatewayresponse.documentation-120"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html"

*Defined in [spec/spec.ts:281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L281)*





___
<a id="apigateway.resources.gatewayresponse.name-24"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::GatewayResponse"

*Defined in [spec/spec.ts:318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L318)*





___
<a id="apigateway.resources.gatewayresponse.properties-22"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L282)*




<a id="apigateway.resources.gatewayresponse.properties-22.responseparameters-2"></a>

###  ResponseParameters

** ResponseParameters**:  *`object`* 

*Defined in [spec/spec.ts:283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L283)*




<a id="apigateway.resources.gatewayresponse.properties-22.responseparameters-2.documentation-121"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responseparameters"

*Defined in [spec/spec.ts:284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L284)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responseparameters-2.duplicatesallowed-13"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L285)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responseparameters-2.primitiveitemtype-10"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L286)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responseparameters-2.required-99"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L287)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responseparameters-2.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L288)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responseparameters-2.updatetype-99"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L289)*





___

___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetemplates-1"></a>

###  ResponseTemplates

** ResponseTemplates**:  *`object`* 

*Defined in [spec/spec.ts:291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L291)*




<a id="apigateway.resources.gatewayresponse.properties-22.responsetemplates-1.documentation-122"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetemplates"

*Defined in [spec/spec.ts:292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L292)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetemplates-1.duplicatesallowed-14"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L293)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetemplates-1.primitiveitemtype-11"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L294)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetemplates-1.required-100"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L295)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetemplates-1.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L296)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetemplates-1.updatetype-100"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L297)*





___

___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetype"></a>

###  ResponseType

** ResponseType**:  *`object`* 

*Defined in [spec/spec.ts:299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L299)*




<a id="apigateway.resources.gatewayresponse.properties-22.responsetype.documentation-123"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-responsetype"

*Defined in [spec/spec.ts:300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L300)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetype.primitivetype-83"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L301)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetype.required-101"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L302)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.responsetype.updatetype-101"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L303)*





___

___
<a id="apigateway.resources.gatewayresponse.properties-22.restapiid-6"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L305)*




<a id="apigateway.resources.gatewayresponse.properties-22.restapiid-6.documentation-124"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-restapiid"

*Defined in [spec/spec.ts:306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L306)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.restapiid-6.primitivetype-84"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L307)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.restapiid-6.required-102"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L308)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.restapiid-6.updatetype-102"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L309)*





___

___
<a id="apigateway.resources.gatewayresponse.properties-22.statuscode-3"></a>

###  StatusCode

** StatusCode**:  *`object`* 

*Defined in [spec/spec.ts:311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L311)*




<a id="apigateway.resources.gatewayresponse.properties-22.statuscode-3.documentation-125"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html#cfn-apigateway-gatewayresponse-statuscode"

*Defined in [spec/spec.ts:312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L312)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.statuscode-3.primitivetype-85"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L313)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.statuscode-3.required-103"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L314)*





___
<a id="apigateway.resources.gatewayresponse.properties-22.statuscode-3.updatetype-103"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L315)*





___

___

___

___
<a id="apigateway.resources.method-1"></a>

###  Method

** Method**:  *`object`* 

*Defined in [spec/spec.ts:320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L320)*




<a id="apigateway.resources.method-1.documentation-126"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html"

*Defined in [spec/spec.ts:321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L321)*





___
<a id="apigateway.resources.method-1.name-25"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Method"

*Defined in [spec/spec.ts:402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L402)*





___
<a id="apigateway.resources.method-1.properties-23"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L322)*




<a id="apigateway.resources.method-1.properties-23.apikeyrequired"></a>

###  ApiKeyRequired

** ApiKeyRequired**:  *`object`* 

*Defined in [spec/spec.ts:323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L323)*




<a id="apigateway.resources.method-1.properties-23.apikeyrequired.documentation-127"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-apikeyrequired"

*Defined in [spec/spec.ts:324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L324)*





___
<a id="apigateway.resources.method-1.properties-23.apikeyrequired.primitivetype-86"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L325)*





___
<a id="apigateway.resources.method-1.properties-23.apikeyrequired.required-104"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L326)*





___
<a id="apigateway.resources.method-1.properties-23.apikeyrequired.updatetype-104"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L327)*





___

___
<a id="apigateway.resources.method-1.properties-23.authorizationtype"></a>

###  AuthorizationType

** AuthorizationType**:  *`object`* 

*Defined in [spec/spec.ts:329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L329)*




<a id="apigateway.resources.method-1.properties-23.authorizationtype.documentation-128"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizationtype"

*Defined in [spec/spec.ts:330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L330)*





___
<a id="apigateway.resources.method-1.properties-23.authorizationtype.primitivetype-87"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L331)*





___
<a id="apigateway.resources.method-1.properties-23.authorizationtype.required-105"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L332)*





___
<a id="apigateway.resources.method-1.properties-23.authorizationtype.updatetype-105"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L333)*





___

___
<a id="apigateway.resources.method-1.properties-23.authorizerid"></a>

###  AuthorizerId

** AuthorizerId**:  *`object`* 

*Defined in [spec/spec.ts:335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L335)*




<a id="apigateway.resources.method-1.properties-23.authorizerid.documentation-129"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-authorizerid"

*Defined in [spec/spec.ts:336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L336)*





___
<a id="apigateway.resources.method-1.properties-23.authorizerid.primitivetype-88"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L337)*





___
<a id="apigateway.resources.method-1.properties-23.authorizerid.required-106"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L338)*





___
<a id="apigateway.resources.method-1.properties-23.authorizerid.updatetype-106"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L339)*





___

___
<a id="apigateway.resources.method-1.properties-23.httpmethod-1"></a>

###  HttpMethod

** HttpMethod**:  *`object`* 

*Defined in [spec/spec.ts:341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L341)*




<a id="apigateway.resources.method-1.properties-23.httpmethod-1.documentation-130"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-httpmethod"

*Defined in [spec/spec.ts:342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L342)*





___
<a id="apigateway.resources.method-1.properties-23.httpmethod-1.primitivetype-89"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L343)*





___
<a id="apigateway.resources.method-1.properties-23.httpmethod-1.required-107"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L344)*





___
<a id="apigateway.resources.method-1.properties-23.httpmethod-1.updatetype-107"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L345)*





___

___
<a id="apigateway.resources.method-1.properties-23.integration-1"></a>

###  Integration

** Integration**:  *`object`* 

*Defined in [spec/spec.ts:347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L347)*




<a id="apigateway.resources.method-1.properties-23.integration-1.documentation-131"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-integration"

*Defined in [spec/spec.ts:348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L348)*





___
<a id="apigateway.resources.method-1.properties-23.integration-1.required-108"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L349)*





___
<a id="apigateway.resources.method-1.properties-23.integration-1.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "Integration"

*Defined in [spec/spec.ts:350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L350)*





___
<a id="apigateway.resources.method-1.properties-23.integration-1.updatetype-108"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L351)*





___

___
<a id="apigateway.resources.method-1.properties-23.methodresponses"></a>

###  MethodResponses

** MethodResponses**:  *`object`* 

*Defined in [spec/spec.ts:353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L353)*




<a id="apigateway.resources.method-1.properties-23.methodresponses.documentation-132"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-methodresponses"

*Defined in [spec/spec.ts:354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L354)*





___
<a id="apigateway.resources.method-1.properties-23.methodresponses.duplicatesallowed-15"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L355)*





___
<a id="apigateway.resources.method-1.properties-23.methodresponses.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MethodResponse"

*Defined in [spec/spec.ts:356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L356)*





___
<a id="apigateway.resources.method-1.properties-23.methodresponses.required-109"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L357)*





___
<a id="apigateway.resources.method-1.properties-23.methodresponses.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L358)*





___
<a id="apigateway.resources.method-1.properties-23.methodresponses.updatetype-109"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L359)*





___

___
<a id="apigateway.resources.method-1.properties-23.operationname"></a>

###  OperationName

** OperationName**:  *`object`* 

*Defined in [spec/spec.ts:361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L361)*




<a id="apigateway.resources.method-1.properties-23.operationname.documentation-133"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-operationname"

*Defined in [spec/spec.ts:362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L362)*





___
<a id="apigateway.resources.method-1.properties-23.operationname.primitivetype-90"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L363)*





___
<a id="apigateway.resources.method-1.properties-23.operationname.required-110"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L364)*





___
<a id="apigateway.resources.method-1.properties-23.operationname.updatetype-110"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L365)*





___

___
<a id="apigateway.resources.method-1.properties-23.requestmodels"></a>

###  RequestModels

** RequestModels**:  *`object`* 

*Defined in [spec/spec.ts:367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L367)*




<a id="apigateway.resources.method-1.properties-23.requestmodels.documentation-134"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestmodels"

*Defined in [spec/spec.ts:368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L368)*





___
<a id="apigateway.resources.method-1.properties-23.requestmodels.duplicatesallowed-16"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L369)*





___
<a id="apigateway.resources.method-1.properties-23.requestmodels.primitiveitemtype-12"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L370)*





___
<a id="apigateway.resources.method-1.properties-23.requestmodels.required-111"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L371)*





___
<a id="apigateway.resources.method-1.properties-23.requestmodels.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L372)*





___
<a id="apigateway.resources.method-1.properties-23.requestmodels.updatetype-111"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L373)*





___

___
<a id="apigateway.resources.method-1.properties-23.requestparameters-1"></a>

###  RequestParameters

** RequestParameters**:  *`object`* 

*Defined in [spec/spec.ts:375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L375)*




<a id="apigateway.resources.method-1.properties-23.requestparameters-1.documentation-135"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestparameters"

*Defined in [spec/spec.ts:376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L376)*





___
<a id="apigateway.resources.method-1.properties-23.requestparameters-1.duplicatesallowed-17"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L377)*





___
<a id="apigateway.resources.method-1.properties-23.requestparameters-1.primitiveitemtype-13"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L378)*





___
<a id="apigateway.resources.method-1.properties-23.requestparameters-1.required-112"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L379)*





___
<a id="apigateway.resources.method-1.properties-23.requestparameters-1.type-24"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L380)*





___
<a id="apigateway.resources.method-1.properties-23.requestparameters-1.updatetype-112"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L381)*





___

___
<a id="apigateway.resources.method-1.properties-23.requestvalidatorid"></a>

###  RequestValidatorId

** RequestValidatorId**:  *`object`* 

*Defined in [spec/spec.ts:383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L383)*




<a id="apigateway.resources.method-1.properties-23.requestvalidatorid.documentation-136"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-requestvalidatorid"

*Defined in [spec/spec.ts:384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L384)*





___
<a id="apigateway.resources.method-1.properties-23.requestvalidatorid.primitivetype-91"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L385)*





___
<a id="apigateway.resources.method-1.properties-23.requestvalidatorid.required-113"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L386)*





___
<a id="apigateway.resources.method-1.properties-23.requestvalidatorid.updatetype-113"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L387)*





___

___
<a id="apigateway.resources.method-1.properties-23.resourceid"></a>

###  ResourceId

** ResourceId**:  *`object`* 

*Defined in [spec/spec.ts:389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L389)*




<a id="apigateway.resources.method-1.properties-23.resourceid.documentation-137"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-resourceid"

*Defined in [spec/spec.ts:390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L390)*





___
<a id="apigateway.resources.method-1.properties-23.resourceid.primitivetype-92"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L391)*





___
<a id="apigateway.resources.method-1.properties-23.resourceid.required-114"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L392)*





___
<a id="apigateway.resources.method-1.properties-23.resourceid.updatetype-114"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L393)*





___

___
<a id="apigateway.resources.method-1.properties-23.restapiid-7"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L395)*




<a id="apigateway.resources.method-1.properties-23.restapiid-7.documentation-138"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-method.html#cfn-apigateway-method-restapiid"

*Defined in [spec/spec.ts:396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L396)*





___
<a id="apigateway.resources.method-1.properties-23.restapiid-7.primitivetype-93"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L397)*





___
<a id="apigateway.resources.method-1.properties-23.restapiid-7.required-115"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L398)*





___
<a id="apigateway.resources.method-1.properties-23.restapiid-7.updatetype-115"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L399)*





___

___

___

___
<a id="apigateway.resources.model"></a>

###  Model

** Model**:  *`object`* 

*Defined in [spec/spec.ts:404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L404)*




<a id="apigateway.resources.model.documentation-139"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html"

*Defined in [spec/spec.ts:405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L405)*





___
<a id="apigateway.resources.model.name-26"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Model"

*Defined in [spec/spec.ts:438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L438)*





___
<a id="apigateway.resources.model.properties-24"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L406)*




<a id="apigateway.resources.model.properties-24.contenttype"></a>

###  ContentType

** ContentType**:  *`object`* 

*Defined in [spec/spec.ts:407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L407)*




<a id="apigateway.resources.model.properties-24.contenttype.documentation-140"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-contenttype"

*Defined in [spec/spec.ts:408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L408)*





___
<a id="apigateway.resources.model.properties-24.contenttype.primitivetype-94"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L409)*





___
<a id="apigateway.resources.model.properties-24.contenttype.required-116"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L410)*





___
<a id="apigateway.resources.model.properties-24.contenttype.updatetype-116"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L411)*





___

___
<a id="apigateway.resources.model.properties-24.description-5"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L413)*




<a id="apigateway.resources.model.properties-24.description-5.documentation-141"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-description"

*Defined in [spec/spec.ts:414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L414)*





___
<a id="apigateway.resources.model.properties-24.description-5.primitivetype-95"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L415)*





___
<a id="apigateway.resources.model.properties-24.description-5.required-117"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L416)*





___
<a id="apigateway.resources.model.properties-24.description-5.updatetype-117"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L417)*





___

___
<a id="apigateway.resources.model.properties-24.name-27"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L419)*




<a id="apigateway.resources.model.properties-24.name-27.documentation-142"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-name"

*Defined in [spec/spec.ts:420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L420)*





___
<a id="apigateway.resources.model.properties-24.name-27.primitivetype-96"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L421)*





___
<a id="apigateway.resources.model.properties-24.name-27.required-118"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L422)*





___
<a id="apigateway.resources.model.properties-24.name-27.updatetype-118"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L423)*





___

___
<a id="apigateway.resources.model.properties-24.restapiid-8"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L425)*




<a id="apigateway.resources.model.properties-24.restapiid-8.documentation-143"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-restapiid"

*Defined in [spec/spec.ts:426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L426)*





___
<a id="apigateway.resources.model.properties-24.restapiid-8.primitivetype-97"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L427)*





___
<a id="apigateway.resources.model.properties-24.restapiid-8.required-119"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L428)*





___
<a id="apigateway.resources.model.properties-24.restapiid-8.updatetype-119"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L429)*





___

___
<a id="apigateway.resources.model.properties-24.schema"></a>

###  Schema

** Schema**:  *`object`* 

*Defined in [spec/spec.ts:431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L431)*




<a id="apigateway.resources.model.properties-24.schema.documentation-144"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-model.html#cfn-apigateway-model-schema"

*Defined in [spec/spec.ts:432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L432)*





___
<a id="apigateway.resources.model.properties-24.schema.primitivetype-98"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L433)*





___
<a id="apigateway.resources.model.properties-24.schema.required-120"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L434)*





___
<a id="apigateway.resources.model.properties-24.schema.updatetype-120"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L435)*





___

___

___

___
<a id="apigateway.resources.requestvalidator"></a>

###  RequestValidator

** RequestValidator**:  *`object`* 

*Defined in [spec/spec.ts:440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L440)*




<a id="apigateway.resources.requestvalidator.documentation-145"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html"

*Defined in [spec/spec.ts:441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L441)*





___
<a id="apigateway.resources.requestvalidator.name-28"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::RequestValidator"

*Defined in [spec/spec.ts:468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L468)*





___
<a id="apigateway.resources.requestvalidator.properties-25"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L442)*




<a id="apigateway.resources.requestvalidator.properties-25.name-29"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L443)*




<a id="apigateway.resources.requestvalidator.properties-25.name-29.documentation-146"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-name"

*Defined in [spec/spec.ts:444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L444)*





___
<a id="apigateway.resources.requestvalidator.properties-25.name-29.primitivetype-99"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L445)*





___
<a id="apigateway.resources.requestvalidator.properties-25.name-29.required-121"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L446)*





___
<a id="apigateway.resources.requestvalidator.properties-25.name-29.updatetype-121"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L447)*





___

___
<a id="apigateway.resources.requestvalidator.properties-25.restapiid-9"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L449)*




<a id="apigateway.resources.requestvalidator.properties-25.restapiid-9.documentation-147"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-restapiid"

*Defined in [spec/spec.ts:450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L450)*





___
<a id="apigateway.resources.requestvalidator.properties-25.restapiid-9.primitivetype-100"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L451)*





___
<a id="apigateway.resources.requestvalidator.properties-25.restapiid-9.required-122"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L452)*





___
<a id="apigateway.resources.requestvalidator.properties-25.restapiid-9.updatetype-122"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L453)*





___

___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestbody"></a>

###  ValidateRequestBody

** ValidateRequestBody**:  *`object`* 

*Defined in [spec/spec.ts:455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L455)*




<a id="apigateway.resources.requestvalidator.properties-25.validaterequestbody.documentation-148"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestbody"

*Defined in [spec/spec.ts:456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L456)*





___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestbody.primitivetype-101"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L457)*





___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestbody.required-123"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L458)*





___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestbody.updatetype-123"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L459)*





___

___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestparameters"></a>

###  ValidateRequestParameters

** ValidateRequestParameters**:  *`object`* 

*Defined in [spec/spec.ts:461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L461)*




<a id="apigateway.resources.requestvalidator.properties-25.validaterequestparameters.documentation-149"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-requestvalidator.html#cfn-apigateway-requestvalidator-validaterequestparameters"

*Defined in [spec/spec.ts:462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L462)*





___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestparameters.primitivetype-102"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L463)*





___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestparameters.required-124"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L464)*





___
<a id="apigateway.resources.requestvalidator.properties-25.validaterequestparameters.updatetype-124"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L465)*





___

___

___

___
<a id="apigateway.resources.resource"></a>

###  Resource

** Resource**:  *`object`* 

*Defined in [spec/spec.ts:470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L470)*




<a id="apigateway.resources.resource.documentation-150"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html"

*Defined in [spec/spec.ts:471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L471)*





___
<a id="apigateway.resources.resource.name-30"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Resource"

*Defined in [spec/spec.ts:492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L492)*





___
<a id="apigateway.resources.resource.properties-26"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L472)*




<a id="apigateway.resources.resource.properties-26.parentid"></a>

###  ParentId

** ParentId**:  *`object`* 

*Defined in [spec/spec.ts:473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L473)*




<a id="apigateway.resources.resource.properties-26.parentid.documentation-151"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-parentid"

*Defined in [spec/spec.ts:474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L474)*





___
<a id="apigateway.resources.resource.properties-26.parentid.primitivetype-103"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L475)*





___
<a id="apigateway.resources.resource.properties-26.parentid.required-125"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L476)*





___
<a id="apigateway.resources.resource.properties-26.parentid.updatetype-125"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L477)*





___

___
<a id="apigateway.resources.resource.properties-26.pathpart"></a>

###  PathPart

** PathPart**:  *`object`* 

*Defined in [spec/spec.ts:479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L479)*




<a id="apigateway.resources.resource.properties-26.pathpart.documentation-152"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-pathpart"

*Defined in [spec/spec.ts:480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L480)*





___
<a id="apigateway.resources.resource.properties-26.pathpart.primitivetype-104"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L481)*





___
<a id="apigateway.resources.resource.properties-26.pathpart.required-126"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L482)*





___
<a id="apigateway.resources.resource.properties-26.pathpart.updatetype-126"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L483)*





___

___
<a id="apigateway.resources.resource.properties-26.restapiid-10"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L485)*




<a id="apigateway.resources.resource.properties-26.restapiid-10.documentation-153"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html#cfn-apigateway-resource-restapiid"

*Defined in [spec/spec.ts:486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L486)*





___
<a id="apigateway.resources.resource.properties-26.restapiid-10.primitivetype-105"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L487)*





___
<a id="apigateway.resources.resource.properties-26.restapiid-10.required-127"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L488)*





___
<a id="apigateway.resources.resource.properties-26.restapiid-10.updatetype-127"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L489)*





___

___

___

___
<a id="apigateway.resources.restapi"></a>

###  RestApi

** RestApi**:  *`object`* 

*Defined in [spec/spec.ts:494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L494)*




<a id="apigateway.resources.restapi.documentation-154"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html"

*Defined in [spec/spec.ts:500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L500)*





___
<a id="apigateway.resources.restapi.name-31"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::RestApi"

*Defined in [spec/spec.ts:567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L567)*





___
<a id="apigateway.resources.restapi.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L495)*




<a id="apigateway.resources.restapi.attributes.rootresourceid"></a>

###  RootResourceId

** RootResourceId**:  *`object`* 

*Defined in [spec/spec.ts:496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L496)*




<a id="apigateway.resources.restapi.attributes.rootresourceid.primitivetype-106"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L497)*





___

___

___
<a id="apigateway.resources.restapi.properties-27"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L501)*




<a id="apigateway.resources.restapi.properties-27.binarymediatypes"></a>

###  BinaryMediaTypes

** BinaryMediaTypes**:  *`object`* 

*Defined in [spec/spec.ts:502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L502)*




<a id="apigateway.resources.restapi.properties-27.binarymediatypes.documentation-155"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-binarymediatypes"

*Defined in [spec/spec.ts:503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L503)*





___
<a id="apigateway.resources.restapi.properties-27.binarymediatypes.duplicatesallowed-18"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L504)*





___
<a id="apigateway.resources.restapi.properties-27.binarymediatypes.primitiveitemtype-14"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L505)*





___
<a id="apigateway.resources.restapi.properties-27.binarymediatypes.required-128"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L506)*





___
<a id="apigateway.resources.restapi.properties-27.binarymediatypes.type-25"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L507)*





___
<a id="apigateway.resources.restapi.properties-27.binarymediatypes.updatetype-128"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L508)*





___

___
<a id="apigateway.resources.restapi.properties-27.body"></a>

###  Body

** Body**:  *`object`* 

*Defined in [spec/spec.ts:510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L510)*




<a id="apigateway.resources.restapi.properties-27.body.documentation-156"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-body"

*Defined in [spec/spec.ts:511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L511)*





___
<a id="apigateway.resources.restapi.properties-27.body.primitivetype-107"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L512)*





___
<a id="apigateway.resources.restapi.properties-27.body.required-129"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L513)*





___
<a id="apigateway.resources.restapi.properties-27.body.updatetype-129"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L514)*





___

___
<a id="apigateway.resources.restapi.properties-27.bodys3location"></a>

###  BodyS3Location

** BodyS3Location**:  *`object`* 

*Defined in [spec/spec.ts:516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L516)*




<a id="apigateway.resources.restapi.properties-27.bodys3location.documentation-157"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-bodys3location"

*Defined in [spec/spec.ts:517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L517)*





___
<a id="apigateway.resources.restapi.properties-27.bodys3location.required-130"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L518)*





___
<a id="apigateway.resources.restapi.properties-27.bodys3location.type-26"></a>

###  Type

**●  Type**:  *`string`*  = "S3Location"

*Defined in [spec/spec.ts:519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L519)*





___
<a id="apigateway.resources.restapi.properties-27.bodys3location.updatetype-130"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L520)*





___

___
<a id="apigateway.resources.restapi.properties-27.clonefrom"></a>

###  CloneFrom

** CloneFrom**:  *`object`* 

*Defined in [spec/spec.ts:522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L522)*




<a id="apigateway.resources.restapi.properties-27.clonefrom.documentation-158"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-clonefrom"

*Defined in [spec/spec.ts:523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L523)*





___
<a id="apigateway.resources.restapi.properties-27.clonefrom.primitivetype-108"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L524)*





___
<a id="apigateway.resources.restapi.properties-27.clonefrom.required-131"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L525)*





___
<a id="apigateway.resources.restapi.properties-27.clonefrom.updatetype-131"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L526)*





___

___
<a id="apigateway.resources.restapi.properties-27.description-6"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L528)*




<a id="apigateway.resources.restapi.properties-27.description-6.documentation-159"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-description"

*Defined in [spec/spec.ts:529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L529)*





___
<a id="apigateway.resources.restapi.properties-27.description-6.primitivetype-109"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L530)*





___
<a id="apigateway.resources.restapi.properties-27.description-6.required-132"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L531)*





___
<a id="apigateway.resources.restapi.properties-27.description-6.updatetype-132"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L532)*





___

___
<a id="apigateway.resources.restapi.properties-27.endpointconfiguration-2"></a>

###  EndpointConfiguration

** EndpointConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L534)*




<a id="apigateway.resources.restapi.properties-27.endpointconfiguration-2.documentation-160"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-endpointconfiguration"

*Defined in [spec/spec.ts:535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L535)*





___
<a id="apigateway.resources.restapi.properties-27.endpointconfiguration-2.required-133"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L536)*





___
<a id="apigateway.resources.restapi.properties-27.endpointconfiguration-2.type-27"></a>

###  Type

**●  Type**:  *`string`*  = "EndpointConfiguration"

*Defined in [spec/spec.ts:537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L537)*





___
<a id="apigateway.resources.restapi.properties-27.endpointconfiguration-2.updatetype-133"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L538)*





___

___
<a id="apigateway.resources.restapi.properties-27.failonwarnings"></a>

###  FailOnWarnings

** FailOnWarnings**:  *`object`* 

*Defined in [spec/spec.ts:540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L540)*




<a id="apigateway.resources.restapi.properties-27.failonwarnings.documentation-161"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-failonwarnings"

*Defined in [spec/spec.ts:541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L541)*





___
<a id="apigateway.resources.restapi.properties-27.failonwarnings.primitivetype-110"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L542)*





___
<a id="apigateway.resources.restapi.properties-27.failonwarnings.required-134"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L543)*





___
<a id="apigateway.resources.restapi.properties-27.failonwarnings.updatetype-134"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L544)*





___

___
<a id="apigateway.resources.restapi.properties-27.mode"></a>

###  Mode

** Mode**:  *`object`* 

*Defined in [spec/spec.ts:546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L546)*




<a id="apigateway.resources.restapi.properties-27.mode.documentation-162"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-mode"

*Defined in [spec/spec.ts:547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L547)*





___
<a id="apigateway.resources.restapi.properties-27.mode.primitivetype-111"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L548)*





___
<a id="apigateway.resources.restapi.properties-27.mode.required-135"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L549)*





___
<a id="apigateway.resources.restapi.properties-27.mode.updatetype-135"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L550)*





___

___
<a id="apigateway.resources.restapi.properties-27.name-32"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L552)*




<a id="apigateway.resources.restapi.properties-27.name-32.documentation-163"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-name"

*Defined in [spec/spec.ts:553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L553)*





___
<a id="apigateway.resources.restapi.properties-27.name-32.primitivetype-112"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L554)*





___
<a id="apigateway.resources.restapi.properties-27.name-32.required-136"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L555)*





___
<a id="apigateway.resources.restapi.properties-27.name-32.updatetype-136"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L556)*





___

___
<a id="apigateway.resources.restapi.properties-27.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L558)*




<a id="apigateway.resources.restapi.properties-27.parameters.documentation-164"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html#cfn-apigateway-restapi-parameters"

*Defined in [spec/spec.ts:559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L559)*





___
<a id="apigateway.resources.restapi.properties-27.parameters.duplicatesallowed-19"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L560)*





___
<a id="apigateway.resources.restapi.properties-27.parameters.primitiveitemtype-15"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L561)*





___
<a id="apigateway.resources.restapi.properties-27.parameters.required-137"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L562)*





___
<a id="apigateway.resources.restapi.properties-27.parameters.type-28"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L563)*





___
<a id="apigateway.resources.restapi.properties-27.parameters.updatetype-137"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L564)*





___

___

___

___
<a id="apigateway.resources.stage-2"></a>

###  Stage

** Stage**:  *`object`* 

*Defined in [spec/spec.ts:569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L569)*




<a id="apigateway.resources.stage-2.documentation-165"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html"

*Defined in [spec/spec.ts:570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L570)*





___
<a id="apigateway.resources.stage-2.name-33"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::Stage"

*Defined in [spec/spec.ts:637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L637)*





___
<a id="apigateway.resources.stage-2.properties-28"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L571)*




<a id="apigateway.resources.stage-2.properties-28.cacheclusterenabled-1"></a>

###  CacheClusterEnabled

** CacheClusterEnabled**:  *`object`* 

*Defined in [spec/spec.ts:572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L572)*




<a id="apigateway.resources.stage-2.properties-28.cacheclusterenabled-1.documentation-166"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclusterenabled"

*Defined in [spec/spec.ts:573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L573)*





___
<a id="apigateway.resources.stage-2.properties-28.cacheclusterenabled-1.primitivetype-113"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L574)*





___
<a id="apigateway.resources.stage-2.properties-28.cacheclusterenabled-1.required-138"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L575)*





___
<a id="apigateway.resources.stage-2.properties-28.cacheclusterenabled-1.updatetype-138"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L576)*





___

___
<a id="apigateway.resources.stage-2.properties-28.cacheclustersize-1"></a>

###  CacheClusterSize

** CacheClusterSize**:  *`object`* 

*Defined in [spec/spec.ts:578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L578)*




<a id="apigateway.resources.stage-2.properties-28.cacheclustersize-1.documentation-167"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-cacheclustersize"

*Defined in [spec/spec.ts:579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L579)*





___
<a id="apigateway.resources.stage-2.properties-28.cacheclustersize-1.primitivetype-114"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L580)*





___
<a id="apigateway.resources.stage-2.properties-28.cacheclustersize-1.required-139"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L581)*





___
<a id="apigateway.resources.stage-2.properties-28.cacheclustersize-1.updatetype-139"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L582)*





___

___
<a id="apigateway.resources.stage-2.properties-28.clientcertificateid-1"></a>

###  ClientCertificateId

** ClientCertificateId**:  *`object`* 

*Defined in [spec/spec.ts:584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L584)*




<a id="apigateway.resources.stage-2.properties-28.clientcertificateid-1.documentation-168"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-clientcertificateid"

*Defined in [spec/spec.ts:585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L585)*





___
<a id="apigateway.resources.stage-2.properties-28.clientcertificateid-1.primitivetype-115"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L586)*





___
<a id="apigateway.resources.stage-2.properties-28.clientcertificateid-1.required-140"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L587)*





___
<a id="apigateway.resources.stage-2.properties-28.clientcertificateid-1.updatetype-140"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L588)*





___

___
<a id="apigateway.resources.stage-2.properties-28.deploymentid"></a>

###  DeploymentId

** DeploymentId**:  *`object`* 

*Defined in [spec/spec.ts:590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L590)*




<a id="apigateway.resources.stage-2.properties-28.deploymentid.documentation-169"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-deploymentid"

*Defined in [spec/spec.ts:591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L591)*





___
<a id="apigateway.resources.stage-2.properties-28.deploymentid.primitivetype-116"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L592)*





___
<a id="apigateway.resources.stage-2.properties-28.deploymentid.required-141"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L593)*





___
<a id="apigateway.resources.stage-2.properties-28.deploymentid.updatetype-141"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L594)*





___

___
<a id="apigateway.resources.stage-2.properties-28.description-7"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L596)*




<a id="apigateway.resources.stage-2.properties-28.description-7.documentation-170"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-description"

*Defined in [spec/spec.ts:597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L597)*





___
<a id="apigateway.resources.stage-2.properties-28.description-7.primitivetype-117"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L598)*





___
<a id="apigateway.resources.stage-2.properties-28.description-7.required-142"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L599)*





___
<a id="apigateway.resources.stage-2.properties-28.description-7.updatetype-142"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L600)*





___

___
<a id="apigateway.resources.stage-2.properties-28.documentationversion-3"></a>

###  DocumentationVersion

** DocumentationVersion**:  *`object`* 

*Defined in [spec/spec.ts:602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L602)*




<a id="apigateway.resources.stage-2.properties-28.documentationversion-3.documentation-171"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-documentationversion"

*Defined in [spec/spec.ts:603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L603)*





___
<a id="apigateway.resources.stage-2.properties-28.documentationversion-3.primitivetype-118"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L604)*





___
<a id="apigateway.resources.stage-2.properties-28.documentationversion-3.required-143"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L605)*





___
<a id="apigateway.resources.stage-2.properties-28.documentationversion-3.updatetype-143"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L606)*





___

___
<a id="apigateway.resources.stage-2.properties-28.methodsettings-1"></a>

###  MethodSettings

** MethodSettings**:  *`object`* 

*Defined in [spec/spec.ts:608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L608)*




<a id="apigateway.resources.stage-2.properties-28.methodsettings-1.documentation-172"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-methodsettings"

*Defined in [spec/spec.ts:609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L609)*





___
<a id="apigateway.resources.stage-2.properties-28.methodsettings-1.duplicatesallowed-20"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L610)*





___
<a id="apigateway.resources.stage-2.properties-28.methodsettings-1.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MethodSetting"

*Defined in [spec/spec.ts:611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L611)*





___
<a id="apigateway.resources.stage-2.properties-28.methodsettings-1.required-144"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L612)*





___
<a id="apigateway.resources.stage-2.properties-28.methodsettings-1.type-29"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L613)*





___
<a id="apigateway.resources.stage-2.properties-28.methodsettings-1.updatetype-144"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L614)*





___

___
<a id="apigateway.resources.stage-2.properties-28.restapiid-11"></a>

###  RestApiId

** RestApiId**:  *`object`* 

*Defined in [spec/spec.ts:616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L616)*




<a id="apigateway.resources.stage-2.properties-28.restapiid-11.documentation-173"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-restapiid"

*Defined in [spec/spec.ts:617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L617)*





___
<a id="apigateway.resources.stage-2.properties-28.restapiid-11.primitivetype-119"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L618)*





___
<a id="apigateway.resources.stage-2.properties-28.restapiid-11.required-145"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L619)*





___
<a id="apigateway.resources.stage-2.properties-28.restapiid-11.updatetype-145"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L620)*





___

___
<a id="apigateway.resources.stage-2.properties-28.stagename-2"></a>

###  StageName

** StageName**:  *`object`* 

*Defined in [spec/spec.ts:622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L622)*




<a id="apigateway.resources.stage-2.properties-28.stagename-2.documentation-174"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-stagename"

*Defined in [spec/spec.ts:623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L623)*





___
<a id="apigateway.resources.stage-2.properties-28.stagename-2.primitivetype-120"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L624)*





___
<a id="apigateway.resources.stage-2.properties-28.stagename-2.required-146"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L625)*





___
<a id="apigateway.resources.stage-2.properties-28.stagename-2.updatetype-146"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L626)*





___

___
<a id="apigateway.resources.stage-2.properties-28.variables-1"></a>

###  Variables

** Variables**:  *`object`* 

*Defined in [spec/spec.ts:628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L628)*




<a id="apigateway.resources.stage-2.properties-28.variables-1.documentation-175"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-stage.html#cfn-apigateway-stage-variables"

*Defined in [spec/spec.ts:629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L629)*





___
<a id="apigateway.resources.stage-2.properties-28.variables-1.duplicatesallowed-21"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L630)*





___
<a id="apigateway.resources.stage-2.properties-28.variables-1.primitiveitemtype-16"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L631)*





___
<a id="apigateway.resources.stage-2.properties-28.variables-1.required-147"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L632)*





___
<a id="apigateway.resources.stage-2.properties-28.variables-1.type-30"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L633)*





___
<a id="apigateway.resources.stage-2.properties-28.variables-1.updatetype-147"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L634)*





___

___

___

___
<a id="apigateway.resources.usageplan"></a>

###  UsagePlan

** UsagePlan**:  *`object`* 

*Defined in [spec/spec.ts:639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L639)*




<a id="apigateway.resources.usageplan.documentation-176"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html"

*Defined in [spec/spec.ts:640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L640)*





___
<a id="apigateway.resources.usageplan.name-34"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::UsagePlan"

*Defined in [spec/spec.ts:675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L675)*





___
<a id="apigateway.resources.usageplan.properties-29"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L641)*




<a id="apigateway.resources.usageplan.properties-29.apistages"></a>

###  ApiStages

** ApiStages**:  *`object`* 

*Defined in [spec/spec.ts:642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L642)*




<a id="apigateway.resources.usageplan.properties-29.apistages.documentation-177"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-apistages"

*Defined in [spec/spec.ts:643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L643)*





___
<a id="apigateway.resources.usageplan.properties-29.apistages.duplicatesallowed-22"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L644)*





___
<a id="apigateway.resources.usageplan.properties-29.apistages.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ApiStage"

*Defined in [spec/spec.ts:645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L645)*





___
<a id="apigateway.resources.usageplan.properties-29.apistages.required-148"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L646)*





___
<a id="apigateway.resources.usageplan.properties-29.apistages.type-31"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L647)*





___
<a id="apigateway.resources.usageplan.properties-29.apistages.updatetype-148"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L648)*





___

___
<a id="apigateway.resources.usageplan.properties-29.description-8"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L650)*




<a id="apigateway.resources.usageplan.properties-29.description-8.documentation-178"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-description"

*Defined in [spec/spec.ts:651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L651)*





___
<a id="apigateway.resources.usageplan.properties-29.description-8.primitivetype-121"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L652)*





___
<a id="apigateway.resources.usageplan.properties-29.description-8.required-149"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L653)*





___
<a id="apigateway.resources.usageplan.properties-29.description-8.updatetype-149"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L654)*





___

___
<a id="apigateway.resources.usageplan.properties-29.quota"></a>

###  Quota

** Quota**:  *`object`* 

*Defined in [spec/spec.ts:656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L656)*




<a id="apigateway.resources.usageplan.properties-29.quota.documentation-179"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-quota"

*Defined in [spec/spec.ts:657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L657)*





___
<a id="apigateway.resources.usageplan.properties-29.quota.required-150"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L658)*





___
<a id="apigateway.resources.usageplan.properties-29.quota.type-32"></a>

###  Type

**●  Type**:  *`string`*  = "QuotaSettings"

*Defined in [spec/spec.ts:659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L659)*





___
<a id="apigateway.resources.usageplan.properties-29.quota.updatetype-150"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L660)*





___

___
<a id="apigateway.resources.usageplan.properties-29.throttle"></a>

###  Throttle

** Throttle**:  *`object`* 

*Defined in [spec/spec.ts:662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L662)*




<a id="apigateway.resources.usageplan.properties-29.throttle.documentation-180"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-throttle"

*Defined in [spec/spec.ts:663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L663)*





___
<a id="apigateway.resources.usageplan.properties-29.throttle.required-151"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L664)*





___
<a id="apigateway.resources.usageplan.properties-29.throttle.type-33"></a>

###  Type

**●  Type**:  *`string`*  = "ThrottleSettings"

*Defined in [spec/spec.ts:665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L665)*





___
<a id="apigateway.resources.usageplan.properties-29.throttle.updatetype-151"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L666)*





___

___
<a id="apigateway.resources.usageplan.properties-29.usageplanname"></a>

###  UsagePlanName

** UsagePlanName**:  *`object`* 

*Defined in [spec/spec.ts:668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L668)*




<a id="apigateway.resources.usageplan.properties-29.usageplanname.documentation-181"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplan.html#cfn-apigateway-usageplan-usageplanname"

*Defined in [spec/spec.ts:669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L669)*





___
<a id="apigateway.resources.usageplan.properties-29.usageplanname.primitivetype-122"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L670)*





___
<a id="apigateway.resources.usageplan.properties-29.usageplanname.required-152"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L671)*





___
<a id="apigateway.resources.usageplan.properties-29.usageplanname.updatetype-152"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L672)*





___

___

___

___
<a id="apigateway.resources.usageplankey"></a>

###  UsagePlanKey

** UsagePlanKey**:  *`object`* 

*Defined in [spec/spec.ts:677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L677)*




<a id="apigateway.resources.usageplankey.documentation-182"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html"

*Defined in [spec/spec.ts:678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L678)*





___
<a id="apigateway.resources.usageplankey.name-35"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApiGateway::UsagePlanKey"

*Defined in [spec/spec.ts:699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L699)*





___
<a id="apigateway.resources.usageplankey.properties-30"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L679)*




<a id="apigateway.resources.usageplankey.properties-30.keyid"></a>

###  KeyId

** KeyId**:  *`object`* 

*Defined in [spec/spec.ts:680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L680)*




<a id="apigateway.resources.usageplankey.properties-30.keyid.documentation-183"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keyid"

*Defined in [spec/spec.ts:681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L681)*





___
<a id="apigateway.resources.usageplankey.properties-30.keyid.primitivetype-123"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L682)*





___
<a id="apigateway.resources.usageplankey.properties-30.keyid.required-153"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L683)*





___
<a id="apigateway.resources.usageplankey.properties-30.keyid.updatetype-153"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L684)*





___

___
<a id="apigateway.resources.usageplankey.properties-30.keytype"></a>

###  KeyType

** KeyType**:  *`object`* 

*Defined in [spec/spec.ts:686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L686)*




<a id="apigateway.resources.usageplankey.properties-30.keytype.documentation-184"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-keytype"

*Defined in [spec/spec.ts:687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L687)*





___
<a id="apigateway.resources.usageplankey.properties-30.keytype.primitivetype-124"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L688)*





___
<a id="apigateway.resources.usageplankey.properties-30.keytype.required-154"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L689)*





___
<a id="apigateway.resources.usageplankey.properties-30.keytype.updatetype-154"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L690)*





___

___
<a id="apigateway.resources.usageplankey.properties-30.usageplanid"></a>

###  UsagePlanId

** UsagePlanId**:  *`object`* 

*Defined in [spec/spec.ts:692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L692)*




<a id="apigateway.resources.usageplankey.properties-30.usageplanid.documentation-185"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-usageplankey.html#cfn-apigateway-usageplankey-usageplanid"

*Defined in [spec/spec.ts:693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L693)*





___
<a id="apigateway.resources.usageplankey.properties-30.usageplanid.primitivetype-125"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L694)*





___
<a id="apigateway.resources.usageplankey.properties-30.usageplanid.required-155"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L695)*





___
<a id="apigateway.resources.usageplankey.properties-30.usageplanid.updatetype-155"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L696)*





___

___

___

___

___

<a id="applicationautoscaling"></a>

## Object literal: ApplicationAutoScaling


<a id="applicationautoscaling.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:1284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1284)*




<a id="applicationautoscaling.models.customizedmetricspecification"></a>

###  CustomizedMetricSpecification

** CustomizedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:1339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1339)*




<a id="applicationautoscaling.models.customizedmetricspecification.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html"

*Defined in [spec/spec.ts:1340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1340)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalingPolicy.CustomizedMetricSpecification"

*Defined in [spec/spec.ts:1375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1375)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1341)*




<a id="applicationautoscaling.models.customizedmetricspecification.properties.dimensions"></a>

###  Dimensions

** Dimensions**:  *`object`* 

*Defined in [spec/spec.ts:1342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1342)*




<a id="applicationautoscaling.models.customizedmetricspecification.properties.dimensions.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-dimensions"

*Defined in [spec/spec.ts:1343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1343)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.dimensions.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1344)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.dimensions.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MetricDimension"

*Defined in [spec/spec.ts:1345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1345)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.dimensions.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1346)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.dimensions.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1347)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.dimensions.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1348)*





___

___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:1350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1350)*




<a id="applicationautoscaling.models.customizedmetricspecification.properties.metricname.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-metricname"

*Defined in [spec/spec.ts:1351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1351)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.metricname.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1352)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.metricname.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1353)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.metricname.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1354)*





___

___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.namespace"></a>

###  Namespace

** Namespace**:  *`object`* 

*Defined in [spec/spec.ts:1356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1356)*




<a id="applicationautoscaling.models.customizedmetricspecification.properties.namespace.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-namespace"

*Defined in [spec/spec.ts:1357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1357)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.namespace.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1358)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.namespace.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1359)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.namespace.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1360)*





___

___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.statistic"></a>

###  Statistic

** Statistic**:  *`object`* 

*Defined in [spec/spec.ts:1362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1362)*




<a id="applicationautoscaling.models.customizedmetricspecification.properties.statistic.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-statistic"

*Defined in [spec/spec.ts:1363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1363)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.statistic.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1364)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.statistic.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1365)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.statistic.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1366)*





___

___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.unit"></a>

###  Unit

** Unit**:  *`object`* 

*Defined in [spec/spec.ts:1368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1368)*




<a id="applicationautoscaling.models.customizedmetricspecification.properties.unit.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-customizedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-customizedmetricspecification-unit"

*Defined in [spec/spec.ts:1369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1369)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.unit.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1370)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.unit.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1371)*





___
<a id="applicationautoscaling.models.customizedmetricspecification.properties.unit.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1372)*





___

___

___

___
<a id="applicationautoscaling.models.metricdimension"></a>

###  MetricDimension

** MetricDimension**:  *`object`* 

*Defined in [spec/spec.ts:1377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1377)*




<a id="applicationautoscaling.models.metricdimension.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-metricdimension.html"

*Defined in [spec/spec.ts:1378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1378)*





___
<a id="applicationautoscaling.models.metricdimension.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalingPolicy.MetricDimension"

*Defined in [spec/spec.ts:1393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1393)*





___
<a id="applicationautoscaling.models.metricdimension.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1379)*




<a id="applicationautoscaling.models.metricdimension.properties-1.name-2"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:1380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1380)*




<a id="applicationautoscaling.models.metricdimension.properties-1.name-2.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-metricdimension.html#cfn-applicationautoscaling-scalingpolicy-metricdimension-name"

*Defined in [spec/spec.ts:1381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1381)*





___
<a id="applicationautoscaling.models.metricdimension.properties-1.name-2.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1382)*





___
<a id="applicationautoscaling.models.metricdimension.properties-1.name-2.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1383)*





___
<a id="applicationautoscaling.models.metricdimension.properties-1.name-2.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1384)*





___

___
<a id="applicationautoscaling.models.metricdimension.properties-1.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:1386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1386)*




<a id="applicationautoscaling.models.metricdimension.properties-1.value.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-metricdimension.html#cfn-applicationautoscaling-scalingpolicy-metricdimension-value"

*Defined in [spec/spec.ts:1387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1387)*





___
<a id="applicationautoscaling.models.metricdimension.properties-1.value.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1388)*





___
<a id="applicationautoscaling.models.metricdimension.properties-1.value.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1389)*





___
<a id="applicationautoscaling.models.metricdimension.properties-1.value.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1390)*





___

___

___

___
<a id="applicationautoscaling.models.predefinedmetricspecification"></a>

###  PredefinedMetricSpecification

** PredefinedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:1395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1395)*




<a id="applicationautoscaling.models.predefinedmetricspecification.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html"

*Defined in [spec/spec.ts:1396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1396)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalingPolicy.PredefinedMetricSpecification"

*Defined in [spec/spec.ts:1411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1411)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1397)*




<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.predefinedmetrictype"></a>

###  PredefinedMetricType

** PredefinedMetricType**:  *`object`* 

*Defined in [spec/spec.ts:1398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1398)*




<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.predefinedmetrictype.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype"

*Defined in [spec/spec.ts:1399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1399)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.predefinedmetrictype.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1400)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.predefinedmetrictype.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1401)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.predefinedmetrictype.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1402)*





___

___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.resourcelabel"></a>

###  ResourceLabel

** ResourceLabel**:  *`object`* 

*Defined in [spec/spec.ts:1404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1404)*




<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.resourcelabel.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-applicationautoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel"

*Defined in [spec/spec.ts:1405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1405)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.resourcelabel.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1406)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.resourcelabel.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1407)*





___
<a id="applicationautoscaling.models.predefinedmetricspecification.properties-2.resourcelabel.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1408)*





___

___

___

___
<a id="applicationautoscaling.models.scalabletargetaction"></a>

###  ScalableTargetAction

** ScalableTargetAction**:  *`object`* 

*Defined in [spec/spec.ts:1285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1285)*




<a id="applicationautoscaling.models.scalabletargetaction.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scalabletargetaction.html"

*Defined in [spec/spec.ts:1286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1286)*





___
<a id="applicationautoscaling.models.scalabletargetaction.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalableTarget.ScalableTargetAction"

*Defined in [spec/spec.ts:1301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1301)*





___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1287)*




<a id="applicationautoscaling.models.scalabletargetaction.properties-3.maxcapacity"></a>

###  MaxCapacity

** MaxCapacity**:  *`object`* 

*Defined in [spec/spec.ts:1288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1288)*




<a id="applicationautoscaling.models.scalabletargetaction.properties-3.maxcapacity.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scalabletargetaction.html#cfn-applicationautoscaling-scalabletarget-scalabletargetaction-maxcapacity"

*Defined in [spec/spec.ts:1289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1289)*





___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3.maxcapacity.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1290)*





___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3.maxcapacity.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1291)*





___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3.maxcapacity.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1292)*





___

___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3.mincapacity"></a>

###  MinCapacity

** MinCapacity**:  *`object`* 

*Defined in [spec/spec.ts:1294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1294)*




<a id="applicationautoscaling.models.scalabletargetaction.properties-3.mincapacity.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scalabletargetaction.html#cfn-applicationautoscaling-scalabletarget-scalabletargetaction-mincapacity"

*Defined in [spec/spec.ts:1295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1295)*





___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3.mincapacity.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1296)*





___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3.mincapacity.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1297)*





___
<a id="applicationautoscaling.models.scalabletargetaction.properties-3.mincapacity.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1298)*





___

___

___

___
<a id="applicationautoscaling.models.scheduledaction"></a>

###  ScheduledAction

** ScheduledAction**:  *`object`* 

*Defined in [spec/spec.ts:1303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1303)*




<a id="applicationautoscaling.models.scheduledaction.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html"

*Defined in [spec/spec.ts:1304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1304)*





___
<a id="applicationautoscaling.models.scheduledaction.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalableTarget.ScheduledAction"

*Defined in [spec/spec.ts:1337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1337)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1305)*




<a id="applicationautoscaling.models.scheduledaction.properties-4.endtime"></a>

###  EndTime

** EndTime**:  *`object`* 

*Defined in [spec/spec.ts:1306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1306)*




<a id="applicationautoscaling.models.scheduledaction.properties-4.endtime.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html#cfn-applicationautoscaling-scalabletarget-scheduledaction-endtime"

*Defined in [spec/spec.ts:1307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1307)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.endtime.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Timestamp"

*Defined in [spec/spec.ts:1308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1308)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.endtime.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1309)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.endtime.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1310)*





___

___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scalabletargetaction-1"></a>

###  ScalableTargetAction

** ScalableTargetAction**:  *`object`* 

*Defined in [spec/spec.ts:1312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1312)*




<a id="applicationautoscaling.models.scheduledaction.properties-4.scalabletargetaction-1.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html#cfn-applicationautoscaling-scalabletarget-scheduledaction-scalabletargetaction"

*Defined in [spec/spec.ts:1313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1313)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scalabletargetaction-1.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1314)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scalabletargetaction-1.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "ScalableTargetAction"

*Defined in [spec/spec.ts:1315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1315)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scalabletargetaction-1.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1316)*





___

___
<a id="applicationautoscaling.models.scheduledaction.properties-4.schedule"></a>

###  Schedule

** Schedule**:  *`object`* 

*Defined in [spec/spec.ts:1318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1318)*




<a id="applicationautoscaling.models.scheduledaction.properties-4.schedule.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html#cfn-applicationautoscaling-scalabletarget-scheduledaction-schedule"

*Defined in [spec/spec.ts:1319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1319)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.schedule.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1320)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.schedule.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1321)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.schedule.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1322)*





___

___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scheduledactionname"></a>

###  ScheduledActionName

** ScheduledActionName**:  *`object`* 

*Defined in [spec/spec.ts:1324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1324)*




<a id="applicationautoscaling.models.scheduledaction.properties-4.scheduledactionname.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html#cfn-applicationautoscaling-scalabletarget-scheduledaction-scheduledactionname"

*Defined in [spec/spec.ts:1325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1325)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scheduledactionname.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1326)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scheduledactionname.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1327)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.scheduledactionname.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1328)*





___

___
<a id="applicationautoscaling.models.scheduledaction.properties-4.starttime"></a>

###  StartTime

** StartTime**:  *`object`* 

*Defined in [spec/spec.ts:1330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1330)*




<a id="applicationautoscaling.models.scheduledaction.properties-4.starttime.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html#cfn-applicationautoscaling-scalabletarget-scheduledaction-starttime"

*Defined in [spec/spec.ts:1331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1331)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.starttime.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Timestamp"

*Defined in [spec/spec.ts:1332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1332)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.starttime.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1333)*





___
<a id="applicationautoscaling.models.scheduledaction.properties-4.starttime.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1334)*





___

___

___

___
<a id="applicationautoscaling.models.stepadjustment"></a>

###  StepAdjustment

** StepAdjustment**:  *`object`* 

*Defined in [spec/spec.ts:1413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1413)*




<a id="applicationautoscaling.models.stepadjustment.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustment.html"

*Defined in [spec/spec.ts:1414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1414)*





___
<a id="applicationautoscaling.models.stepadjustment.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalingPolicy.StepAdjustment"

*Defined in [spec/spec.ts:1435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1435)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1415)*




<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervallowerbound"></a>

###  MetricIntervalLowerBound

** MetricIntervalLowerBound**:  *`object`* 

*Defined in [spec/spec.ts:1416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1416)*




<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervallowerbound.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustment.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustment-metricintervallowerbound"

*Defined in [spec/spec.ts:1417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1417)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervallowerbound.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:1418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1418)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervallowerbound.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1419)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervallowerbound.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1420)*





___

___
<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervalupperbound"></a>

###  MetricIntervalUpperBound

** MetricIntervalUpperBound**:  *`object`* 

*Defined in [spec/spec.ts:1422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1422)*




<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervalupperbound.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustment.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustment-metricintervalupperbound"

*Defined in [spec/spec.ts:1423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1423)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervalupperbound.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:1424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1424)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervalupperbound.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1425)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.metricintervalupperbound.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1426)*





___

___
<a id="applicationautoscaling.models.stepadjustment.properties-5.scalingadjustment"></a>

###  ScalingAdjustment

** ScalingAdjustment**:  *`object`* 

*Defined in [spec/spec.ts:1428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1428)*




<a id="applicationautoscaling.models.stepadjustment.properties-5.scalingadjustment.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustment.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustment-scalingadjustment"

*Defined in [spec/spec.ts:1429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1429)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.scalingadjustment.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1430)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.scalingadjustment.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1431)*





___
<a id="applicationautoscaling.models.stepadjustment.properties-5.scalingadjustment.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1432)*





___

___

___

___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration"></a>

###  StepScalingPolicyConfiguration

** StepScalingPolicyConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:1437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1437)*




<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html"

*Defined in [spec/spec.ts:1438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1438)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalingPolicy.StepScalingPolicyConfiguration"

*Defined in [spec/spec.ts:1473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1473)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1439)*




<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.adjustmenttype"></a>

###  AdjustmentType

** AdjustmentType**:  *`object`* 

*Defined in [spec/spec.ts:1440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1440)*




<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.adjustmenttype.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-adjustmenttype"

*Defined in [spec/spec.ts:1441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1441)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.adjustmenttype.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1442)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.adjustmenttype.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1443)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.adjustmenttype.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1444)*





___

___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.cooldown"></a>

###  Cooldown

** Cooldown**:  *`object`* 

*Defined in [spec/spec.ts:1446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1446)*




<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.cooldown.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-cooldown"

*Defined in [spec/spec.ts:1447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1447)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.cooldown.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1448)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.cooldown.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1449)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.cooldown.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1450)*





___

___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.metricaggregationtype"></a>

###  MetricAggregationType

** MetricAggregationType**:  *`object`* 

*Defined in [spec/spec.ts:1452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1452)*




<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.metricaggregationtype.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-metricaggregationtype"

*Defined in [spec/spec.ts:1453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1453)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.metricaggregationtype.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1454)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.metricaggregationtype.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1455)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.metricaggregationtype.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1456)*





___

___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.minadjustmentmagnitude"></a>

###  MinAdjustmentMagnitude

** MinAdjustmentMagnitude**:  *`object`* 

*Defined in [spec/spec.ts:1458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1458)*




<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.minadjustmentmagnitude.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-minadjustmentmagnitude"

*Defined in [spec/spec.ts:1459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1459)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.minadjustmentmagnitude.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1460)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.minadjustmentmagnitude.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1461)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.minadjustmentmagnitude.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1462)*





___

___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.stepadjustments"></a>

###  StepAdjustments

** StepAdjustments**:  *`object`* 

*Defined in [spec/spec.ts:1464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1464)*




<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.stepadjustments.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration-stepadjustments"

*Defined in [spec/spec.ts:1465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1465)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.stepadjustments.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1466)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.stepadjustments.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "StepAdjustment"

*Defined in [spec/spec.ts:1467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1467)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.stepadjustments.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1468)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.stepadjustments.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1469)*





___
<a id="applicationautoscaling.models.stepscalingpolicyconfiguration.properties-6.stepadjustments.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1470)*





___

___

___

___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration"></a>

###  TargetTrackingScalingPolicyConfiguration

** TargetTrackingScalingPolicyConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:1475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1475)*




<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html"

*Defined in [spec/spec.ts:1476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1476)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalingPolicy.TargetTrackingScalingPolicyConfiguration"

*Defined in [spec/spec.ts:1509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1509)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1477)*




<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.customizedmetricspecification-1"></a>

###  CustomizedMetricSpecification

** CustomizedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:1478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1478)*




<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.customizedmetricspecification-1.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-customizedmetricspecification"

*Defined in [spec/spec.ts:1479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1479)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.customizedmetricspecification-1.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1480)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.customizedmetricspecification-1.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "CustomizedMetricSpecification"

*Defined in [spec/spec.ts:1481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1481)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.customizedmetricspecification-1.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1482)*





___

___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.predefinedmetricspecification-1"></a>

###  PredefinedMetricSpecification

** PredefinedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:1484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1484)*




<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.predefinedmetricspecification-1.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-predefinedmetricspecification"

*Defined in [spec/spec.ts:1485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1485)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.predefinedmetricspecification-1.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1486)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.predefinedmetricspecification-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "PredefinedMetricSpecification"

*Defined in [spec/spec.ts:1487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1487)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.predefinedmetricspecification-1.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1488)*





___

___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleincooldown"></a>

###  ScaleInCooldown

** ScaleInCooldown**:  *`object`* 

*Defined in [spec/spec.ts:1490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1490)*




<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleincooldown.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleincooldown"

*Defined in [spec/spec.ts:1491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1491)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleincooldown.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1492)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleincooldown.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1493)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleincooldown.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1494)*





___

___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleoutcooldown"></a>

###  ScaleOutCooldown

** ScaleOutCooldown**:  *`object`* 

*Defined in [spec/spec.ts:1496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1496)*




<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleoutcooldown.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-scaleoutcooldown"

*Defined in [spec/spec.ts:1497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1497)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleoutcooldown.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1498)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleoutcooldown.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1499)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.scaleoutcooldown.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1500)*





___

___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.targetvalue"></a>

###  TargetValue

** TargetValue**:  *`object`* 

*Defined in [spec/spec.ts:1502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1502)*




<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.targetvalue.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration-targetvalue"

*Defined in [spec/spec.ts:1503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1503)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.targetvalue.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:1504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1504)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.targetvalue.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1505)*





___
<a id="applicationautoscaling.models.targettrackingscalingpolicyconfiguration.properties-7.targetvalue.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1506)*





___

___

___

___

___
<a id="applicationautoscaling.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:1178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1178)*




<a id="applicationautoscaling.resources.scalabletarget"></a>

###  ScalableTarget

** ScalableTarget**:  *`object`* 

*Defined in [spec/spec.ts:1179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1179)*




<a id="applicationautoscaling.resources.scalabletarget.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html"

*Defined in [spec/spec.ts:1180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1180)*





___
<a id="applicationautoscaling.resources.scalabletarget.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalableTarget"

*Defined in [spec/spec.ts:1227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1227)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1181)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.maxcapacity-1"></a>

###  MaxCapacity

** MaxCapacity**:  *`object`* 

*Defined in [spec/spec.ts:1182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1182)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.maxcapacity-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-maxcapacity"

*Defined in [spec/spec.ts:1183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1183)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.maxcapacity-1.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1184)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.maxcapacity-1.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1185)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.maxcapacity-1.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1186)*





___

___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.mincapacity-1"></a>

###  MinCapacity

** MinCapacity**:  *`object`* 

*Defined in [spec/spec.ts:1188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1188)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.mincapacity-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-mincapacity"

*Defined in [spec/spec.ts:1189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1189)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.mincapacity-1.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1190)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.mincapacity-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1191)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.mincapacity-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1192)*





___

___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.resourceid"></a>

###  ResourceId

** ResourceId**:  *`object`* 

*Defined in [spec/spec.ts:1194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1194)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.resourceid.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-resourceid"

*Defined in [spec/spec.ts:1195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1195)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.resourceid.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1196)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.resourceid.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1197)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.resourceid.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1198)*





___

___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.rolearn"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:1200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1200)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.rolearn.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-rolearn"

*Defined in [spec/spec.ts:1201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1201)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.rolearn.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1202)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.rolearn.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1203)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.rolearn.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1204)*





___

___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scalabledimension"></a>

###  ScalableDimension

** ScalableDimension**:  *`object`* 

*Defined in [spec/spec.ts:1206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1206)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.scalabledimension.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scalabledimension"

*Defined in [spec/spec.ts:1207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1207)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scalabledimension.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1208)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scalabledimension.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1209)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scalabledimension.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1210)*





___

___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scheduledactions"></a>

###  ScheduledActions

** ScheduledActions**:  *`object`* 

*Defined in [spec/spec.ts:1212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1212)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.scheduledactions.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-scheduledactions"

*Defined in [spec/spec.ts:1213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1213)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scheduledactions.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1214)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scheduledactions.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ScheduledAction"

*Defined in [spec/spec.ts:1215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1215)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scheduledactions.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1216)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scheduledactions.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1217)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.scheduledactions.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1218)*





___

___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.servicenamespace"></a>

###  ServiceNamespace

** ServiceNamespace**:  *`object`* 

*Defined in [spec/spec.ts:1220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1220)*




<a id="applicationautoscaling.resources.scalabletarget.properties-8.servicenamespace.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#cfn-applicationautoscaling-scalabletarget-servicenamespace"

*Defined in [spec/spec.ts:1221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1221)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.servicenamespace.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1222)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.servicenamespace.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1223)*





___
<a id="applicationautoscaling.resources.scalabletarget.properties-8.servicenamespace.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1224)*





___

___

___

___
<a id="applicationautoscaling.resources.scalingpolicy"></a>

###  ScalingPolicy

** ScalingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:1229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1229)*




<a id="applicationautoscaling.resources.scalingpolicy.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html"

*Defined in [spec/spec.ts:1230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1230)*





___
<a id="applicationautoscaling.resources.scalingpolicy.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ApplicationAutoScaling::ScalingPolicy"

*Defined in [spec/spec.ts:1281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1281)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1231)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policyname"></a>

###  PolicyName

** PolicyName**:  *`object`* 

*Defined in [spec/spec.ts:1232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1232)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policyname.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policyname"

*Defined in [spec/spec.ts:1233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1233)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policyname.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1234)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policyname.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1235)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policyname.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1236)*





___

___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policytype"></a>

###  PolicyType

** PolicyType**:  *`object`* 

*Defined in [spec/spec.ts:1238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1238)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policytype.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-policytype"

*Defined in [spec/spec.ts:1239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1239)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policytype.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1240)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policytype.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1241)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.policytype.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1242)*





___

___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.resourceid-1"></a>

###  ResourceId

** ResourceId**:  *`object`* 

*Defined in [spec/spec.ts:1244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1244)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.resourceid-1.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-resourceid"

*Defined in [spec/spec.ts:1245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1245)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.resourceid-1.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1246)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.resourceid-1.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1247)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.resourceid-1.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1248)*





___

___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalabledimension-1"></a>

###  ScalableDimension

** ScalableDimension**:  *`object`* 

*Defined in [spec/spec.ts:1250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1250)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalabledimension-1.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalabledimension"

*Defined in [spec/spec.ts:1251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1251)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalabledimension-1.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1252)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalabledimension-1.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1253)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalabledimension-1.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1254)*





___

___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalingtargetid"></a>

###  ScalingTargetId

** ScalingTargetId**:  *`object`* 

*Defined in [spec/spec.ts:1256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1256)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalingtargetid.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-scalingtargetid"

*Defined in [spec/spec.ts:1257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1257)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalingtargetid.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1258)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalingtargetid.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1259)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.scalingtargetid.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1260)*





___

___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.servicenamespace-1"></a>

###  ServiceNamespace

** ServiceNamespace**:  *`object`* 

*Defined in [spec/spec.ts:1262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1262)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.servicenamespace-1.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-servicenamespace"

*Defined in [spec/spec.ts:1263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1263)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.servicenamespace-1.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1264)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.servicenamespace-1.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1265)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.servicenamespace-1.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1266)*





___

___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.stepscalingpolicyconfiguration-1"></a>

###  StepScalingPolicyConfiguration

** StepScalingPolicyConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:1268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1268)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.stepscalingpolicyconfiguration-1.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-stepscalingpolicyconfiguration"

*Defined in [spec/spec.ts:1269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1269)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.stepscalingpolicyconfiguration-1.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1270)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.stepscalingpolicyconfiguration-1.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "StepScalingPolicyConfiguration"

*Defined in [spec/spec.ts:1271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1271)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.stepscalingpolicyconfiguration-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1272)*





___

___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.targettrackingscalingpolicyconfiguration-1"></a>

###  TargetTrackingScalingPolicyConfiguration

** TargetTrackingScalingPolicyConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:1274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1274)*




<a id="applicationautoscaling.resources.scalingpolicy.properties-9.targettrackingscalingpolicyconfiguration-1.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalingpolicy.html#cfn-applicationautoscaling-scalingpolicy-targettrackingscalingpolicyconfiguration"

*Defined in [spec/spec.ts:1275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1275)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.targettrackingscalingpolicyconfiguration-1.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1276)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.targettrackingscalingpolicyconfiguration-1.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "TargetTrackingScalingPolicyConfiguration"

*Defined in [spec/spec.ts:1277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1277)*





___
<a id="applicationautoscaling.resources.scalingpolicy.properties-9.targettrackingscalingpolicyconfiguration-1.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1278)*





___

___

___

___

___

<a id="athena"></a>

## Object literal: Athena


<a id="athena.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:1546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1546)*


#### Type declaration





___
<a id="athena.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:1514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1514)*




<a id="athena.resources.namedquery"></a>

###  NamedQuery

** NamedQuery**:  *`object`* 

*Defined in [spec/spec.ts:1515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1515)*




<a id="athena.resources.namedquery.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html"

*Defined in [spec/spec.ts:1516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1516)*





___
<a id="athena.resources.namedquery.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Athena::NamedQuery"

*Defined in [spec/spec.ts:1543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1543)*





___
<a id="athena.resources.namedquery.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1517)*




<a id="athena.resources.namedquery.properties.database"></a>

###  Database

** Database**:  *`object`* 

*Defined in [spec/spec.ts:1530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1530)*




<a id="athena.resources.namedquery.properties.database.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-database"

*Defined in [spec/spec.ts:1532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1532)*





___
<a id="athena.resources.namedquery.properties.database.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1533)*





___
<a id="athena.resources.namedquery.properties.database.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1531)*





___
<a id="athena.resources.namedquery.properties.database.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1534)*





___

___
<a id="athena.resources.namedquery.properties.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:1518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1518)*




<a id="athena.resources.namedquery.properties.description.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-description"

*Defined in [spec/spec.ts:1520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1520)*





___
<a id="athena.resources.namedquery.properties.description.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1521)*





___
<a id="athena.resources.namedquery.properties.description.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1519)*





___
<a id="athena.resources.namedquery.properties.description.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1522)*





___

___
<a id="athena.resources.namedquery.properties.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:1536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1536)*




<a id="athena.resources.namedquery.properties.name-1.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-name"

*Defined in [spec/spec.ts:1538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1538)*





___
<a id="athena.resources.namedquery.properties.name-1.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1539)*





___
<a id="athena.resources.namedquery.properties.name-1.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1537)*





___
<a id="athena.resources.namedquery.properties.name-1.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1540)*





___

___
<a id="athena.resources.namedquery.properties.querystring"></a>

###  QueryString

** QueryString**:  *`object`* 

*Defined in [spec/spec.ts:1524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1524)*




<a id="athena.resources.namedquery.properties.querystring.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-athena-namedquery.html#cfn-athena-namedquery-querystring"

*Defined in [spec/spec.ts:1526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1526)*





___
<a id="athena.resources.namedquery.properties.querystring.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1527)*





___
<a id="athena.resources.namedquery.properties.querystring.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1525)*





___
<a id="athena.resources.namedquery.properties.querystring.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1528)*





___

___

___

___

___

<a id="autoscaling"></a>

## Object literal: AutoScaling


<a id="autoscaling.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:1967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1967)*




<a id="autoscaling.models.blockdevice"></a>

###  BlockDevice

** BlockDevice**:  *`object`* 

*Defined in [spec/spec.ts:2080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2080)*




<a id="autoscaling.models.blockdevice.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-template.html"

*Defined in [spec/spec.ts:2081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2081)*





___
<a id="autoscaling.models.blockdevice.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::LaunchConfiguration.BlockDevice"

*Defined in [spec/spec.ts:2120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2120)*





___
<a id="autoscaling.models.blockdevice.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2082)*




<a id="autoscaling.models.blockdevice.properties.deleteontermination"></a>

###  DeleteOnTermination

** DeleteOnTermination**:  *`object`* 

*Defined in [spec/spec.ts:2083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2083)*




<a id="autoscaling.models.blockdevice.properties.deleteontermination.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-template.html#cfn-as-launchconfig-blockdev-template-deleteonterm"

*Defined in [spec/spec.ts:2084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2084)*





___
<a id="autoscaling.models.blockdevice.properties.deleteontermination.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2085)*





___
<a id="autoscaling.models.blockdevice.properties.deleteontermination.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2086)*





___
<a id="autoscaling.models.blockdevice.properties.deleteontermination.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2087)*





___

___
<a id="autoscaling.models.blockdevice.properties.encrypted"></a>

###  Encrypted

** Encrypted**:  *`object`* 

*Defined in [spec/spec.ts:2089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2089)*




<a id="autoscaling.models.blockdevice.properties.encrypted.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-template.html#cfn-as-launchconfig-blockdev-template-encrypted"

*Defined in [spec/spec.ts:2090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2090)*





___
<a id="autoscaling.models.blockdevice.properties.encrypted.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2091)*





___
<a id="autoscaling.models.blockdevice.properties.encrypted.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2092)*





___
<a id="autoscaling.models.blockdevice.properties.encrypted.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2093)*





___

___
<a id="autoscaling.models.blockdevice.properties.iops"></a>

###  Iops

** Iops**:  *`object`* 

*Defined in [spec/spec.ts:2095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2095)*




<a id="autoscaling.models.blockdevice.properties.iops.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-template.html#cfn-as-launchconfig-blockdev-template-iops"

*Defined in [spec/spec.ts:2096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2096)*





___
<a id="autoscaling.models.blockdevice.properties.iops.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2097)*





___
<a id="autoscaling.models.blockdevice.properties.iops.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2098)*





___
<a id="autoscaling.models.blockdevice.properties.iops.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2099)*





___

___
<a id="autoscaling.models.blockdevice.properties.snapshotid"></a>

###  SnapshotId

** SnapshotId**:  *`object`* 

*Defined in [spec/spec.ts:2101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2101)*




<a id="autoscaling.models.blockdevice.properties.snapshotid.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-template.html#cfn-as-launchconfig-blockdev-template-snapshotid"

*Defined in [spec/spec.ts:2102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2102)*





___
<a id="autoscaling.models.blockdevice.properties.snapshotid.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2103)*





___
<a id="autoscaling.models.blockdevice.properties.snapshotid.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2104)*





___
<a id="autoscaling.models.blockdevice.properties.snapshotid.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2105)*





___

___
<a id="autoscaling.models.blockdevice.properties.volumesize"></a>

###  VolumeSize

** VolumeSize**:  *`object`* 

*Defined in [spec/spec.ts:2107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2107)*




<a id="autoscaling.models.blockdevice.properties.volumesize.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-template.html#cfn-as-launchconfig-blockdev-template-volumesize"

*Defined in [spec/spec.ts:2108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2108)*





___
<a id="autoscaling.models.blockdevice.properties.volumesize.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2109)*





___
<a id="autoscaling.models.blockdevice.properties.volumesize.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2110)*





___
<a id="autoscaling.models.blockdevice.properties.volumesize.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2111)*





___

___
<a id="autoscaling.models.blockdevice.properties.volumetype"></a>

###  VolumeType

** VolumeType**:  *`object`* 

*Defined in [spec/spec.ts:2113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2113)*




<a id="autoscaling.models.blockdevice.properties.volumetype.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-template.html#cfn-as-launchconfig-blockdev-template-volumetype"

*Defined in [spec/spec.ts:2114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2114)*





___
<a id="autoscaling.models.blockdevice.properties.volumetype.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2115)*





___
<a id="autoscaling.models.blockdevice.properties.volumetype.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2116)*





___
<a id="autoscaling.models.blockdevice.properties.volumetype.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2117)*





___

___

___

___
<a id="autoscaling.models.blockdevicemapping"></a>

###  BlockDeviceMapping

** BlockDeviceMapping**:  *`object`* 

*Defined in [spec/spec.ts:2122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2122)*




<a id="autoscaling.models.blockdevicemapping.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-mapping.html"

*Defined in [spec/spec.ts:2123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2123)*





___
<a id="autoscaling.models.blockdevicemapping.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::LaunchConfiguration.BlockDeviceMapping"

*Defined in [spec/spec.ts:2150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2150)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2124)*




<a id="autoscaling.models.blockdevicemapping.properties-1.devicename"></a>

###  DeviceName

** DeviceName**:  *`object`* 

*Defined in [spec/spec.ts:2125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2125)*




<a id="autoscaling.models.blockdevicemapping.properties-1.devicename.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-mapping.html#cfn-as-launchconfig-blockdev-mapping-devicename"

*Defined in [spec/spec.ts:2126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2126)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.devicename.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2127)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.devicename.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2128)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.devicename.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2129)*





___

___
<a id="autoscaling.models.blockdevicemapping.properties-1.ebs"></a>

###  Ebs

** Ebs**:  *`object`* 

*Defined in [spec/spec.ts:2131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2131)*




<a id="autoscaling.models.blockdevicemapping.properties-1.ebs.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-mapping.html#cfn-as-launchconfig-blockdev-mapping-ebs"

*Defined in [spec/spec.ts:2132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2132)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.ebs.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2133)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.ebs.type"></a>

###  Type

**●  Type**:  *`string`*  = "BlockDevice"

*Defined in [spec/spec.ts:2134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2134)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.ebs.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2135)*





___

___
<a id="autoscaling.models.blockdevicemapping.properties-1.nodevice"></a>

###  NoDevice

** NoDevice**:  *`object`* 

*Defined in [spec/spec.ts:2137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2137)*




<a id="autoscaling.models.blockdevicemapping.properties-1.nodevice.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-mapping.html#cfn-as-launchconfig-blockdev-mapping-nodevice"

*Defined in [spec/spec.ts:2138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2138)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.nodevice.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2139)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.nodevice.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2140)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.nodevice.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2141)*





___

___
<a id="autoscaling.models.blockdevicemapping.properties-1.virtualname"></a>

###  VirtualName

** VirtualName**:  *`object`* 

*Defined in [spec/spec.ts:2143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2143)*




<a id="autoscaling.models.blockdevicemapping.properties-1.virtualname.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig-blockdev-mapping.html#cfn-as-launchconfig-blockdev-mapping-virtualname"

*Defined in [spec/spec.ts:2144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2144)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.virtualname.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2145)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.virtualname.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2146)*





___
<a id="autoscaling.models.blockdevicemapping.properties-1.virtualname.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2147)*





___

___

___

___
<a id="autoscaling.models.customizedmetricspecification"></a>

###  CustomizedMetricSpecification

** CustomizedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:2152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2152)*




<a id="autoscaling.models.customizedmetricspecification.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html"

*Defined in [spec/spec.ts:2153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2153)*





___
<a id="autoscaling.models.customizedmetricspecification.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::ScalingPolicy.CustomizedMetricSpecification"

*Defined in [spec/spec.ts:2188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2188)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2154)*




<a id="autoscaling.models.customizedmetricspecification.properties-2.dimensions"></a>

###  Dimensions

** Dimensions**:  *`object`* 

*Defined in [spec/spec.ts:2155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2155)*




<a id="autoscaling.models.customizedmetricspecification.properties-2.dimensions.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-dimensions"

*Defined in [spec/spec.ts:2156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2156)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.dimensions.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2157)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.dimensions.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MetricDimension"

*Defined in [spec/spec.ts:2158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2158)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.dimensions.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2159)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.dimensions.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2160)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.dimensions.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2161)*





___

___
<a id="autoscaling.models.customizedmetricspecification.properties-2.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:2163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2163)*




<a id="autoscaling.models.customizedmetricspecification.properties-2.metricname.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-metricname"

*Defined in [spec/spec.ts:2164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2164)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.metricname.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2165)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.metricname.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2166)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.metricname.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2167)*





___

___
<a id="autoscaling.models.customizedmetricspecification.properties-2.namespace"></a>

###  Namespace

** Namespace**:  *`object`* 

*Defined in [spec/spec.ts:2169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2169)*




<a id="autoscaling.models.customizedmetricspecification.properties-2.namespace.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-namespace"

*Defined in [spec/spec.ts:2170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2170)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.namespace.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2171)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.namespace.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2172)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.namespace.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2173)*





___

___
<a id="autoscaling.models.customizedmetricspecification.properties-2.statistic"></a>

###  Statistic

** Statistic**:  *`object`* 

*Defined in [spec/spec.ts:2175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2175)*




<a id="autoscaling.models.customizedmetricspecification.properties-2.statistic.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-statistic"

*Defined in [spec/spec.ts:2176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2176)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.statistic.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2177)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.statistic.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2178)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.statistic.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2179)*





___

___
<a id="autoscaling.models.customizedmetricspecification.properties-2.unit"></a>

###  Unit

** Unit**:  *`object`* 

*Defined in [spec/spec.ts:2181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2181)*




<a id="autoscaling.models.customizedmetricspecification.properties-2.unit.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-customizedmetricspecification.html#cfn-autoscaling-scalingpolicy-customizedmetricspecification-unit"

*Defined in [spec/spec.ts:2182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2182)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.unit.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2183)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.unit.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2184)*





___
<a id="autoscaling.models.customizedmetricspecification.properties-2.unit.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2185)*





___

___

___

___
<a id="autoscaling.models.lifecyclehookspecification"></a>

###  LifecycleHookSpecification

** LifecycleHookSpecification**:  *`object`* 

*Defined in [spec/spec.ts:1968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1968)*




<a id="autoscaling.models.lifecyclehookspecification.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html"

*Defined in [spec/spec.ts:1969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1969)*





___
<a id="autoscaling.models.lifecyclehookspecification.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::AutoScalingGroup.LifecycleHookSpecification"

*Defined in [spec/spec.ts:2014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2014)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1970)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.defaultresult"></a>

###  DefaultResult

** DefaultResult**:  *`object`* 

*Defined in [spec/spec.ts:1971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1971)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.defaultresult.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecification-defaultresult"

*Defined in [spec/spec.ts:1972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1972)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.defaultresult.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1973)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.defaultresult.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1974)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.defaultresult.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1975)*





___

___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.heartbeattimeout"></a>

###  HeartbeatTimeout

** HeartbeatTimeout**:  *`object`* 

*Defined in [spec/spec.ts:1977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1977)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.heartbeattimeout.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecification-heartbeattimeout"

*Defined in [spec/spec.ts:1978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1978)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.heartbeattimeout.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1979)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.heartbeattimeout.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1980)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.heartbeattimeout.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1981)*





___

___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecyclehookname"></a>

###  LifecycleHookName

** LifecycleHookName**:  *`object`* 

*Defined in [spec/spec.ts:1983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1983)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecyclehookname.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecification-lifecyclehookname"

*Defined in [spec/spec.ts:1984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1984)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecyclehookname.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1985)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecyclehookname.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1986)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecyclehookname.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1987)*





___

___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecycletransition"></a>

###  LifecycleTransition

** LifecycleTransition**:  *`object`* 

*Defined in [spec/spec.ts:1989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1989)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecycletransition.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecification-lifecycletransition"

*Defined in [spec/spec.ts:1990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1990)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecycletransition.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1991)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecycletransition.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1992)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.lifecycletransition.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1993)*





___

___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationmetadata"></a>

###  NotificationMetadata

** NotificationMetadata**:  *`object`* 

*Defined in [spec/spec.ts:1995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1995)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationmetadata.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecification-notificationmetadata"

*Defined in [spec/spec.ts:1996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1996)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationmetadata.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1997)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationmetadata.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1998)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationmetadata.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1999)*





___

___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationtargetarn"></a>

###  NotificationTargetARN

** NotificationTargetARN**:  *`object`* 

*Defined in [spec/spec.ts:2001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2001)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationtargetarn.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecification-notificationtargetarn"

*Defined in [spec/spec.ts:2002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2002)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationtargetarn.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2003)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationtargetarn.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2004)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.notificationtargetarn.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2005)*





___

___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.rolearn"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:2007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2007)*




<a id="autoscaling.models.lifecyclehookspecification.properties-3.rolearn.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecification-rolearn"

*Defined in [spec/spec.ts:2008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2008)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.rolearn.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2009)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.rolearn.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2010)*





___
<a id="autoscaling.models.lifecyclehookspecification.properties-3.rolearn.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2011)*





___

___

___

___
<a id="autoscaling.models.metricdimension"></a>

###  MetricDimension

** MetricDimension**:  *`object`* 

*Defined in [spec/spec.ts:2190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2190)*




<a id="autoscaling.models.metricdimension.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-metricdimension.html"

*Defined in [spec/spec.ts:2191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2191)*





___
<a id="autoscaling.models.metricdimension.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::ScalingPolicy.MetricDimension"

*Defined in [spec/spec.ts:2206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2206)*





___
<a id="autoscaling.models.metricdimension.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2192)*




<a id="autoscaling.models.metricdimension.properties-4.name-5"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:2193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2193)*




<a id="autoscaling.models.metricdimension.properties-4.name-5.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-metricdimension.html#cfn-autoscaling-scalingpolicy-metricdimension-name"

*Defined in [spec/spec.ts:2194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2194)*





___
<a id="autoscaling.models.metricdimension.properties-4.name-5.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2195)*





___
<a id="autoscaling.models.metricdimension.properties-4.name-5.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2196)*





___
<a id="autoscaling.models.metricdimension.properties-4.name-5.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2197)*





___

___
<a id="autoscaling.models.metricdimension.properties-4.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:2199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2199)*




<a id="autoscaling.models.metricdimension.properties-4.value.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-metricdimension.html#cfn-autoscaling-scalingpolicy-metricdimension-value"

*Defined in [spec/spec.ts:2200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2200)*





___
<a id="autoscaling.models.metricdimension.properties-4.value.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2201)*





___
<a id="autoscaling.models.metricdimension.properties-4.value.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2202)*





___
<a id="autoscaling.models.metricdimension.properties-4.value.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2203)*





___

___

___

___
<a id="autoscaling.models.metricscollection"></a>

###  MetricsCollection

** MetricsCollection**:  *`object`* 

*Defined in [spec/spec.ts:2016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2016)*




<a id="autoscaling.models.metricscollection.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-metricscollection.html"

*Defined in [spec/spec.ts:2017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2017)*





___
<a id="autoscaling.models.metricscollection.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::AutoScalingGroup.MetricsCollection"

*Defined in [spec/spec.ts:2034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2034)*





___
<a id="autoscaling.models.metricscollection.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2018)*




<a id="autoscaling.models.metricscollection.properties-5.granularity"></a>

###  Granularity

** Granularity**:  *`object`* 

*Defined in [spec/spec.ts:2019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2019)*




<a id="autoscaling.models.metricscollection.properties-5.granularity.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-metricscollection.html#cfn-as-metricscollection-granularity"

*Defined in [spec/spec.ts:2020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2020)*





___
<a id="autoscaling.models.metricscollection.properties-5.granularity.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2021)*





___
<a id="autoscaling.models.metricscollection.properties-5.granularity.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2022)*





___
<a id="autoscaling.models.metricscollection.properties-5.granularity.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2023)*





___

___
<a id="autoscaling.models.metricscollection.properties-5.metrics"></a>

###  Metrics

** Metrics**:  *`object`* 

*Defined in [spec/spec.ts:2025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2025)*




<a id="autoscaling.models.metricscollection.properties-5.metrics.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-metricscollection.html#cfn-as-metricscollection-metrics"

*Defined in [spec/spec.ts:2026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2026)*





___
<a id="autoscaling.models.metricscollection.properties-5.metrics.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2027)*





___
<a id="autoscaling.models.metricscollection.properties-5.metrics.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2028)*





___
<a id="autoscaling.models.metricscollection.properties-5.metrics.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2029)*





___
<a id="autoscaling.models.metricscollection.properties-5.metrics.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2030)*





___
<a id="autoscaling.models.metricscollection.properties-5.metrics.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2031)*





___

___

___

___
<a id="autoscaling.models.notificationconfiguration"></a>

###  NotificationConfiguration

** NotificationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:2036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2036)*




<a id="autoscaling.models.notificationconfiguration.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-notificationconfigurations.html"

*Defined in [spec/spec.ts:2037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2037)*





___
<a id="autoscaling.models.notificationconfiguration.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration"

*Defined in [spec/spec.ts:2054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2054)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2038)*




<a id="autoscaling.models.notificationconfiguration.properties-6.notificationtypes"></a>

###  NotificationTypes

** NotificationTypes**:  *`object`* 

*Defined in [spec/spec.ts:2039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2039)*




<a id="autoscaling.models.notificationconfiguration.properties-6.notificationtypes.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-notificationconfigurations.html#cfn-as-group-notificationconfigurations-notificationtypes"

*Defined in [spec/spec.ts:2040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2040)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.notificationtypes.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2041)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.notificationtypes.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2042)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.notificationtypes.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2043)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.notificationtypes.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2044)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.notificationtypes.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2045)*





___

___
<a id="autoscaling.models.notificationconfiguration.properties-6.topicarn"></a>

###  TopicARN

** TopicARN**:  *`object`* 

*Defined in [spec/spec.ts:2047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2047)*




<a id="autoscaling.models.notificationconfiguration.properties-6.topicarn.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-notificationconfigurations.html#cfn-autoscaling-autoscalinggroup-notificationconfigurations-topicarn"

*Defined in [spec/spec.ts:2048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2048)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.topicarn.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2049)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.topicarn.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2050)*





___
<a id="autoscaling.models.notificationconfiguration.properties-6.topicarn.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2051)*





___

___

___

___
<a id="autoscaling.models.predefinedmetricspecification"></a>

###  PredefinedMetricSpecification

** PredefinedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:2208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2208)*




<a id="autoscaling.models.predefinedmetricspecification.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html"

*Defined in [spec/spec.ts:2209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2209)*





___
<a id="autoscaling.models.predefinedmetricspecification.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::ScalingPolicy.PredefinedMetricSpecification"

*Defined in [spec/spec.ts:2224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2224)*





___
<a id="autoscaling.models.predefinedmetricspecification.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2210)*




<a id="autoscaling.models.predefinedmetricspecification.properties-7.predefinedmetrictype"></a>

###  PredefinedMetricType

** PredefinedMetricType**:  *`object`* 

*Defined in [spec/spec.ts:2211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2211)*




<a id="autoscaling.models.predefinedmetricspecification.properties-7.predefinedmetrictype.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-predefinedmetrictype"

*Defined in [spec/spec.ts:2212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2212)*





___
<a id="autoscaling.models.predefinedmetricspecification.properties-7.predefinedmetrictype.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2213)*





___
<a id="autoscaling.models.predefinedmetricspecification.properties-7.predefinedmetrictype.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2214)*





___
<a id="autoscaling.models.predefinedmetricspecification.properties-7.predefinedmetrictype.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2215)*





___

___
<a id="autoscaling.models.predefinedmetricspecification.properties-7.resourcelabel"></a>

###  ResourceLabel

** ResourceLabel**:  *`object`* 

*Defined in [spec/spec.ts:2217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2217)*




<a id="autoscaling.models.predefinedmetricspecification.properties-7.resourcelabel.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-predefinedmetricspecification.html#cfn-autoscaling-scalingpolicy-predefinedmetricspecification-resourcelabel"

*Defined in [spec/spec.ts:2218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2218)*





___
<a id="autoscaling.models.predefinedmetricspecification.properties-7.resourcelabel.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2219)*





___
<a id="autoscaling.models.predefinedmetricspecification.properties-7.resourcelabel.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2220)*





___
<a id="autoscaling.models.predefinedmetricspecification.properties-7.resourcelabel.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2221)*





___

___

___

___
<a id="autoscaling.models.stepadjustment"></a>

###  StepAdjustment

** StepAdjustment**:  *`object`* 

*Defined in [spec/spec.ts:2226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2226)*




<a id="autoscaling.models.stepadjustment.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-stepadjustments.html"

*Defined in [spec/spec.ts:2227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2227)*





___
<a id="autoscaling.models.stepadjustment.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::ScalingPolicy.StepAdjustment"

*Defined in [spec/spec.ts:2248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2248)*





___
<a id="autoscaling.models.stepadjustment.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2228)*




<a id="autoscaling.models.stepadjustment.properties-8.metricintervallowerbound"></a>

###  MetricIntervalLowerBound

** MetricIntervalLowerBound**:  *`object`* 

*Defined in [spec/spec.ts:2229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2229)*




<a id="autoscaling.models.stepadjustment.properties-8.metricintervallowerbound.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-stepadjustments.html#cfn-autoscaling-scalingpolicy-stepadjustment-metricintervallowerbound"

*Defined in [spec/spec.ts:2230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2230)*





___
<a id="autoscaling.models.stepadjustment.properties-8.metricintervallowerbound.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:2231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2231)*





___
<a id="autoscaling.models.stepadjustment.properties-8.metricintervallowerbound.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2232)*





___
<a id="autoscaling.models.stepadjustment.properties-8.metricintervallowerbound.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2233)*





___

___
<a id="autoscaling.models.stepadjustment.properties-8.metricintervalupperbound"></a>

###  MetricIntervalUpperBound

** MetricIntervalUpperBound**:  *`object`* 

*Defined in [spec/spec.ts:2235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2235)*




<a id="autoscaling.models.stepadjustment.properties-8.metricintervalupperbound.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-stepadjustments.html#cfn-autoscaling-scalingpolicy-stepadjustment-metricintervalupperbound"

*Defined in [spec/spec.ts:2236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2236)*





___
<a id="autoscaling.models.stepadjustment.properties-8.metricintervalupperbound.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:2237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2237)*





___
<a id="autoscaling.models.stepadjustment.properties-8.metricintervalupperbound.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2238)*





___
<a id="autoscaling.models.stepadjustment.properties-8.metricintervalupperbound.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2239)*





___

___
<a id="autoscaling.models.stepadjustment.properties-8.scalingadjustment"></a>

###  ScalingAdjustment

** ScalingAdjustment**:  *`object`* 

*Defined in [spec/spec.ts:2241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2241)*




<a id="autoscaling.models.stepadjustment.properties-8.scalingadjustment.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-stepadjustments.html#cfn-autoscaling-scalingpolicy-stepadjustment-scalingadjustment"

*Defined in [spec/spec.ts:2242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2242)*





___
<a id="autoscaling.models.stepadjustment.properties-8.scalingadjustment.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2243)*





___
<a id="autoscaling.models.stepadjustment.properties-8.scalingadjustment.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2244)*





___
<a id="autoscaling.models.stepadjustment.properties-8.scalingadjustment.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2245)*





___

___

___

___
<a id="autoscaling.models.tagproperty"></a>

###  TagProperty

** TagProperty**:  *`object`* 

*Defined in [spec/spec.ts:2056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2056)*




<a id="autoscaling.models.tagproperty.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-tags.html"

*Defined in [spec/spec.ts:2057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2057)*





___
<a id="autoscaling.models.tagproperty.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::AutoScalingGroup.TagProperty"

*Defined in [spec/spec.ts:2078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2078)*





___
<a id="autoscaling.models.tagproperty.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2058)*




<a id="autoscaling.models.tagproperty.properties-9.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:2059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2059)*




<a id="autoscaling.models.tagproperty.properties-9.key.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-tags.html#cfn-as-tags-Key"

*Defined in [spec/spec.ts:2060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2060)*





___
<a id="autoscaling.models.tagproperty.properties-9.key.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2061)*





___
<a id="autoscaling.models.tagproperty.properties-9.key.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2062)*





___
<a id="autoscaling.models.tagproperty.properties-9.key.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2063)*





___

___
<a id="autoscaling.models.tagproperty.properties-9.propagateatlaunch"></a>

###  PropagateAtLaunch

** PropagateAtLaunch**:  *`object`* 

*Defined in [spec/spec.ts:2065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2065)*




<a id="autoscaling.models.tagproperty.properties-9.propagateatlaunch.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-tags.html#cfn-as-tags-PropagateAtLaunch"

*Defined in [spec/spec.ts:2066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2066)*





___
<a id="autoscaling.models.tagproperty.properties-9.propagateatlaunch.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2067)*





___
<a id="autoscaling.models.tagproperty.properties-9.propagateatlaunch.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2068)*





___
<a id="autoscaling.models.tagproperty.properties-9.propagateatlaunch.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2069)*





___

___
<a id="autoscaling.models.tagproperty.properties-9.value-1"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:2071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2071)*




<a id="autoscaling.models.tagproperty.properties-9.value-1.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-tags.html#cfn-as-tags-Value"

*Defined in [spec/spec.ts:2072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2072)*





___
<a id="autoscaling.models.tagproperty.properties-9.value-1.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2073)*





___
<a id="autoscaling.models.tagproperty.properties-9.value-1.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2074)*





___
<a id="autoscaling.models.tagproperty.properties-9.value-1.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2075)*





___

___

___

___
<a id="autoscaling.models.targettrackingconfiguration"></a>

###  TargetTrackingConfiguration

** TargetTrackingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:2250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2250)*




<a id="autoscaling.models.targettrackingconfiguration.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html"

*Defined in [spec/spec.ts:2251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2251)*





___
<a id="autoscaling.models.targettrackingconfiguration.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::ScalingPolicy.TargetTrackingConfiguration"

*Defined in [spec/spec.ts:2278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2278)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2252)*




<a id="autoscaling.models.targettrackingconfiguration.properties-10.customizedmetricspecification-1"></a>

###  CustomizedMetricSpecification

** CustomizedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:2253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2253)*




<a id="autoscaling.models.targettrackingconfiguration.properties-10.customizedmetricspecification-1.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-customizedmetricspecification"

*Defined in [spec/spec.ts:2254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2254)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.customizedmetricspecification-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2255)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.customizedmetricspecification-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "CustomizedMetricSpecification"

*Defined in [spec/spec.ts:2256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2256)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.customizedmetricspecification-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2257)*





___

___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.disablescalein"></a>

###  DisableScaleIn

** DisableScaleIn**:  *`object`* 

*Defined in [spec/spec.ts:2259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2259)*




<a id="autoscaling.models.targettrackingconfiguration.properties-10.disablescalein.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-disablescalein"

*Defined in [spec/spec.ts:2260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2260)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.disablescalein.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2261)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.disablescalein.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2262)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.disablescalein.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2263)*





___

___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.predefinedmetricspecification-1"></a>

###  PredefinedMetricSpecification

** PredefinedMetricSpecification**:  *`object`* 

*Defined in [spec/spec.ts:2265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2265)*




<a id="autoscaling.models.targettrackingconfiguration.properties-10.predefinedmetricspecification-1.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-predefinedmetricspecification"

*Defined in [spec/spec.ts:2266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2266)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.predefinedmetricspecification-1.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2267)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.predefinedmetricspecification-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "PredefinedMetricSpecification"

*Defined in [spec/spec.ts:2268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2268)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.predefinedmetricspecification-1.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2269)*





___

___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.targetvalue"></a>

###  TargetValue

** TargetValue**:  *`object`* 

*Defined in [spec/spec.ts:2271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2271)*




<a id="autoscaling.models.targettrackingconfiguration.properties-10.targetvalue.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-scalingpolicy-targettrackingconfiguration.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration-targetvalue"

*Defined in [spec/spec.ts:2272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2272)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.targetvalue.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:2273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2273)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.targetvalue.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2274)*





___
<a id="autoscaling.models.targettrackingconfiguration.properties-10.targetvalue.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2275)*





___

___

___

___

___
<a id="autoscaling.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:1549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1549)*




<a id="autoscaling.resources.autoscalinggroup"></a>

###  AutoScalingGroup

** AutoScalingGroup**:  *`object`* 

*Defined in [spec/spec.ts:1550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1550)*




<a id="autoscaling.resources.autoscalinggroup.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html"

*Defined in [spec/spec.ts:1551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1551)*





___
<a id="autoscaling.resources.autoscalinggroup.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::AutoScalingGroup"

*Defined in [spec/spec.ts:1680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1680)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1552)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.availabilityzones"></a>

###  AvailabilityZones

** AvailabilityZones**:  *`object`* 

*Defined in [spec/spec.ts:1553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1553)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.availabilityzones.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-availabilityzones"

*Defined in [spec/spec.ts:1554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1554)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.availabilityzones.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1555)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.availabilityzones.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1556)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.availabilityzones.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1557)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.availabilityzones.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1558)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.availabilityzones.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1559)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.cooldown"></a>

###  Cooldown

** Cooldown**:  *`object`* 

*Defined in [spec/spec.ts:1561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1561)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.cooldown.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-cooldown"

*Defined in [spec/spec.ts:1562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1562)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.cooldown.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1563)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.cooldown.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1564)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.cooldown.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1565)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.desiredcapacity"></a>

###  DesiredCapacity

** DesiredCapacity**:  *`object`* 

*Defined in [spec/spec.ts:1567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1567)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.desiredcapacity.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-desiredcapacity"

*Defined in [spec/spec.ts:1568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1568)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.desiredcapacity.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1569)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.desiredcapacity.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1570)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.desiredcapacity.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1571)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthcheckgraceperiod"></a>

###  HealthCheckGracePeriod

** HealthCheckGracePeriod**:  *`object`* 

*Defined in [spec/spec.ts:1573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1573)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.healthcheckgraceperiod.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthcheckgraceperiod"

*Defined in [spec/spec.ts:1574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1574)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthcheckgraceperiod.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1575)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthcheckgraceperiod.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1576)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthcheckgraceperiod.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1577)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthchecktype"></a>

###  HealthCheckType

** HealthCheckType**:  *`object`* 

*Defined in [spec/spec.ts:1579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1579)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.healthchecktype.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-healthchecktype"

*Defined in [spec/spec.ts:1580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1580)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthchecktype.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1581)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthchecktype.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1582)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.healthchecktype.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1583)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.instanceid"></a>

###  InstanceId

** InstanceId**:  *`object`* 

*Defined in [spec/spec.ts:1585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1585)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.instanceid.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-instanceid"

*Defined in [spec/spec.ts:1586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1586)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.instanceid.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1587)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.instanceid.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1588)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.instanceid.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1589)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.launchconfigurationname"></a>

###  LaunchConfigurationName

** LaunchConfigurationName**:  *`object`* 

*Defined in [spec/spec.ts:1591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1591)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.launchconfigurationname.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-launchconfigurationname"

*Defined in [spec/spec.ts:1592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1592)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.launchconfigurationname.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1593)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.launchconfigurationname.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1594)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.launchconfigurationname.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1595)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.lifecyclehookspecificationlist"></a>

###  LifecycleHookSpecificationList

** LifecycleHookSpecificationList**:  *`object`* 

*Defined in [spec/spec.ts:1597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1597)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.lifecyclehookspecificationlist.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-autoscaling-autoscalinggroup-lifecyclehookspecificationlist"

*Defined in [spec/spec.ts:1598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1598)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.lifecyclehookspecificationlist.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1599)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.lifecyclehookspecificationlist.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "LifecycleHookSpecification"

*Defined in [spec/spec.ts:1600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1600)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.lifecyclehookspecificationlist.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1601)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.lifecyclehookspecificationlist.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1602)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.lifecyclehookspecificationlist.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1603)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.loadbalancernames"></a>

###  LoadBalancerNames

** LoadBalancerNames**:  *`object`* 

*Defined in [spec/spec.ts:1605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1605)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.loadbalancernames.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-loadbalancernames"

*Defined in [spec/spec.ts:1606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1606)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.loadbalancernames.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1607)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.loadbalancernames.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1608)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.loadbalancernames.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1609)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.loadbalancernames.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1610)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.loadbalancernames.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1611)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.maxsize"></a>

###  MaxSize

** MaxSize**:  *`object`* 

*Defined in [spec/spec.ts:1613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1613)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.maxsize.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-maxsize"

*Defined in [spec/spec.ts:1614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1614)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.maxsize.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1615)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.maxsize.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1616)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.maxsize.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1617)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.metricscollection-1"></a>

###  MetricsCollection

** MetricsCollection**:  *`object`* 

*Defined in [spec/spec.ts:1619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1619)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.metricscollection-1.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-metricscollection"

*Defined in [spec/spec.ts:1620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1620)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.metricscollection-1.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1621)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.metricscollection-1.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MetricsCollection"

*Defined in [spec/spec.ts:1622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1622)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.metricscollection-1.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1623)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.metricscollection-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1624)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.metricscollection-1.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1625)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.minsize"></a>

###  MinSize

** MinSize**:  *`object`* 

*Defined in [spec/spec.ts:1627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1627)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.minsize.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-minsize"

*Defined in [spec/spec.ts:1628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1628)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.minsize.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1629)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.minsize.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1630)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.minsize.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1631)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.notificationconfigurations"></a>

###  NotificationConfigurations

** NotificationConfigurations**:  *`object`* 

*Defined in [spec/spec.ts:1633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1633)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.notificationconfigurations.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-notificationconfigurations"

*Defined in [spec/spec.ts:1634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1634)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.notificationconfigurations.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1635)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.notificationconfigurations.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "NotificationConfiguration"

*Defined in [spec/spec.ts:1636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1636)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.notificationconfigurations.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1637)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.notificationconfigurations.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1638)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.notificationconfigurations.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1639)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.placementgroup"></a>

###  PlacementGroup

** PlacementGroup**:  *`object`* 

*Defined in [spec/spec.ts:1641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1641)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.placementgroup.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-placementgroup"

*Defined in [spec/spec.ts:1642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1642)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.placementgroup.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1643)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.placementgroup.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1644)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.placementgroup.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1645)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:1647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1647)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.tags.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-tags"

*Defined in [spec/spec.ts:1648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1648)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.tags.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1649)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.tags.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "TagProperty"

*Defined in [spec/spec.ts:1650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1650)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.tags.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1651)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.tags.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1652)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.tags.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1653)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.targetgrouparns"></a>

###  TargetGroupARNs

** TargetGroupARNs**:  *`object`* 

*Defined in [spec/spec.ts:1655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1655)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.targetgrouparns.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-targetgrouparns"

*Defined in [spec/spec.ts:1656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1656)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.targetgrouparns.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1657)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.targetgrouparns.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1658)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.targetgrouparns.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1659)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.targetgrouparns.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1660)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.targetgrouparns.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1661)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.terminationpolicies"></a>

###  TerminationPolicies

** TerminationPolicies**:  *`object`* 

*Defined in [spec/spec.ts:1663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1663)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.terminationpolicies.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-termpolicy"

*Defined in [spec/spec.ts:1664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1664)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.terminationpolicies.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1665)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.terminationpolicies.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1666)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.terminationpolicies.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1667)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.terminationpolicies.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1668)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.terminationpolicies.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1669)*





___

___
<a id="autoscaling.resources.autoscalinggroup.properties-11.vpczoneidentifier"></a>

###  VPCZoneIdentifier

** VPCZoneIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:1671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1671)*




<a id="autoscaling.resources.autoscalinggroup.properties-11.vpczoneidentifier.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html#cfn-as-group-vpczoneidentifier"

*Defined in [spec/spec.ts:1672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1672)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.vpczoneidentifier.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1673)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.vpczoneidentifier.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1674)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.vpczoneidentifier.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1675)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.vpczoneidentifier.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1676)*





___
<a id="autoscaling.resources.autoscalinggroup.properties-11.vpczoneidentifier.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1677)*





___

___

___

___
<a id="autoscaling.resources.launchconfiguration"></a>

###  LaunchConfiguration

** LaunchConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:1682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1682)*




<a id="autoscaling.resources.launchconfiguration.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html"

*Defined in [spec/spec.ts:1683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1683)*





___
<a id="autoscaling.resources.launchconfiguration.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::LaunchConfiguration"

*Defined in [spec/spec.ts:1794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1794)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1684)*




<a id="autoscaling.resources.launchconfiguration.properties-12.associatepublicipaddress"></a>

###  AssociatePublicIpAddress

** AssociatePublicIpAddress**:  *`object`* 

*Defined in [spec/spec.ts:1685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1685)*




<a id="autoscaling.resources.launchconfiguration.properties-12.associatepublicipaddress.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cf-as-launchconfig-associatepubip"

*Defined in [spec/spec.ts:1686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1686)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.associatepublicipaddress.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:1687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1687)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.associatepublicipaddress.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1688)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.associatepublicipaddress.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1689)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.blockdevicemappings"></a>

###  BlockDeviceMappings

** BlockDeviceMappings**:  *`object`* 

*Defined in [spec/spec.ts:1691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1691)*




<a id="autoscaling.resources.launchconfiguration.properties-12.blockdevicemappings.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-blockdevicemappings"

*Defined in [spec/spec.ts:1692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1692)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.blockdevicemappings.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1693)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.blockdevicemappings.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "BlockDeviceMapping"

*Defined in [spec/spec.ts:1694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1694)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.blockdevicemappings.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1695)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.blockdevicemappings.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1696)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.blockdevicemappings.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1697)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcid"></a>

###  ClassicLinkVPCId

** ClassicLinkVPCId**:  *`object`* 

*Defined in [spec/spec.ts:1699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1699)*




<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcid.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcid"

*Defined in [spec/spec.ts:1700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1700)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcid.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1701)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcid.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1702)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcid.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1703)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcsecuritygroups"></a>

###  ClassicLinkVPCSecurityGroups

** ClassicLinkVPCSecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:1705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1705)*




<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcsecuritygroups.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-classiclinkvpcsecuritygroups"

*Defined in [spec/spec.ts:1706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1706)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcsecuritygroups.duplicatesallowed-13"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1707)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcsecuritygroups.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1708)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcsecuritygroups.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1709)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcsecuritygroups.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1710)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.classiclinkvpcsecuritygroups.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1711)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.ebsoptimized"></a>

###  EbsOptimized

** EbsOptimized**:  *`object`* 

*Defined in [spec/spec.ts:1713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1713)*




<a id="autoscaling.resources.launchconfiguration.properties-12.ebsoptimized.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ebsoptimized"

*Defined in [spec/spec.ts:1714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1714)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.ebsoptimized.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:1715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1715)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.ebsoptimized.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1716)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.ebsoptimized.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1717)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.iaminstanceprofile"></a>

###  IamInstanceProfile

** IamInstanceProfile**:  *`object`* 

*Defined in [spec/spec.ts:1719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1719)*




<a id="autoscaling.resources.launchconfiguration.properties-12.iaminstanceprofile.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-iaminstanceprofile"

*Defined in [spec/spec.ts:1720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1720)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.iaminstanceprofile.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1721)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.iaminstanceprofile.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1722)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.iaminstanceprofile.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1723)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.imageid"></a>

###  ImageId

** ImageId**:  *`object`* 

*Defined in [spec/spec.ts:1725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1725)*




<a id="autoscaling.resources.launchconfiguration.properties-12.imageid.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-imageid"

*Defined in [spec/spec.ts:1726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1726)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.imageid.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1727)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.imageid.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1728)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.imageid.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1729)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.instanceid-1"></a>

###  InstanceId

** InstanceId**:  *`object`* 

*Defined in [spec/spec.ts:1731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1731)*




<a id="autoscaling.resources.launchconfiguration.properties-12.instanceid-1.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instanceid"

*Defined in [spec/spec.ts:1732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1732)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instanceid-1.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1733)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instanceid-1.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1734)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instanceid-1.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1735)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancemonitoring"></a>

###  InstanceMonitoring

** InstanceMonitoring**:  *`object`* 

*Defined in [spec/spec.ts:1737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1737)*




<a id="autoscaling.resources.launchconfiguration.properties-12.instancemonitoring.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancemonitoring"

*Defined in [spec/spec.ts:1738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1738)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancemonitoring.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:1739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1739)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancemonitoring.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1740)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancemonitoring.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1741)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancetype"></a>

###  InstanceType

** InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:1743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1743)*




<a id="autoscaling.resources.launchconfiguration.properties-12.instancetype.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-instancetype"

*Defined in [spec/spec.ts:1744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1744)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancetype.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1745)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancetype.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1746)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.instancetype.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1747)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.kernelid"></a>

###  KernelId

** KernelId**:  *`object`* 

*Defined in [spec/spec.ts:1749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1749)*




<a id="autoscaling.resources.launchconfiguration.properties-12.kernelid.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-kernelid"

*Defined in [spec/spec.ts:1750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1750)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.kernelid.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1751)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.kernelid.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1752)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.kernelid.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1753)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.keyname"></a>

###  KeyName

** KeyName**:  *`object`* 

*Defined in [spec/spec.ts:1755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1755)*




<a id="autoscaling.resources.launchconfiguration.properties-12.keyname.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-keyname"

*Defined in [spec/spec.ts:1756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1756)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.keyname.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1757)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.keyname.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1758)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.keyname.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1759)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.placementtenancy"></a>

###  PlacementTenancy

** PlacementTenancy**:  *`object`* 

*Defined in [spec/spec.ts:1761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1761)*




<a id="autoscaling.resources.launchconfiguration.properties-12.placementtenancy.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-placementtenancy"

*Defined in [spec/spec.ts:1762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1762)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.placementtenancy.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1763)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.placementtenancy.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1764)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.placementtenancy.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1765)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.ramdiskid"></a>

###  RamDiskId

** RamDiskId**:  *`object`* 

*Defined in [spec/spec.ts:1767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1767)*




<a id="autoscaling.resources.launchconfiguration.properties-12.ramdiskid.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-ramdiskid"

*Defined in [spec/spec.ts:1768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1768)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.ramdiskid.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1769)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.ramdiskid.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1770)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.ramdiskid.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1771)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.securitygroups"></a>

###  SecurityGroups

** SecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:1773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1773)*




<a id="autoscaling.resources.launchconfiguration.properties-12.securitygroups.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-securitygroups"

*Defined in [spec/spec.ts:1774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1774)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.securitygroups.duplicatesallowed-14"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1775)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.securitygroups.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1776)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.securitygroups.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1777)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.securitygroups.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1778)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.securitygroups.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1779)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.spotprice"></a>

###  SpotPrice

** SpotPrice**:  *`object`* 

*Defined in [spec/spec.ts:1781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1781)*




<a id="autoscaling.resources.launchconfiguration.properties-12.spotprice.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-spotprice"

*Defined in [spec/spec.ts:1782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1782)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.spotprice.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1783)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.spotprice.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1784)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.spotprice.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1785)*





___

___
<a id="autoscaling.resources.launchconfiguration.properties-12.userdata"></a>

###  UserData

** UserData**:  *`object`* 

*Defined in [spec/spec.ts:1787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1787)*




<a id="autoscaling.resources.launchconfiguration.properties-12.userdata.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-launchconfig.html#cfn-as-launchconfig-userdata"

*Defined in [spec/spec.ts:1788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1788)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.userdata.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1789)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.userdata.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1790)*





___
<a id="autoscaling.resources.launchconfiguration.properties-12.userdata.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1791)*





___

___

___

___
<a id="autoscaling.resources.lifecyclehook"></a>

###  LifecycleHook

** LifecycleHook**:  *`object`* 

*Defined in [spec/spec.ts:1796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1796)*




<a id="autoscaling.resources.lifecyclehook.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html"

*Defined in [spec/spec.ts:1797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1797)*





___
<a id="autoscaling.resources.lifecyclehook.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::LifecycleHook"

*Defined in [spec/spec.ts:1848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1848)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1798)*




<a id="autoscaling.resources.lifecyclehook.properties-13.autoscalinggroupname"></a>

###  AutoScalingGroupName

** AutoScalingGroupName**:  *`object`* 

*Defined in [spec/spec.ts:1799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1799)*




<a id="autoscaling.resources.lifecyclehook.properties-13.autoscalinggroupname.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-autoscalinggroupname"

*Defined in [spec/spec.ts:1800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1800)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.autoscalinggroupname.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1801)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.autoscalinggroupname.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1802)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.autoscalinggroupname.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1803)*





___

___
<a id="autoscaling.resources.lifecyclehook.properties-13.defaultresult-1"></a>

###  DefaultResult

** DefaultResult**:  *`object`* 

*Defined in [spec/spec.ts:1805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1805)*




<a id="autoscaling.resources.lifecyclehook.properties-13.defaultresult-1.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-defaultresult"

*Defined in [spec/spec.ts:1806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1806)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.defaultresult-1.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1807)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.defaultresult-1.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1808)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.defaultresult-1.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1809)*





___

___
<a id="autoscaling.resources.lifecyclehook.properties-13.heartbeattimeout-1"></a>

###  HeartbeatTimeout

** HeartbeatTimeout**:  *`object`* 

*Defined in [spec/spec.ts:1811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1811)*




<a id="autoscaling.resources.lifecyclehook.properties-13.heartbeattimeout-1.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-heartbeattimeout"

*Defined in [spec/spec.ts:1812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1812)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.heartbeattimeout-1.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1813)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.heartbeattimeout-1.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1814)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.heartbeattimeout-1.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1815)*





___

___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecyclehookname-1"></a>

###  LifecycleHookName

** LifecycleHookName**:  *`object`* 

*Defined in [spec/spec.ts:1817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1817)*




<a id="autoscaling.resources.lifecyclehook.properties-13.lifecyclehookname-1.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-autoscaling-lifecyclehook-lifecyclehookname"

*Defined in [spec/spec.ts:1818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1818)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecyclehookname-1.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1819)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecyclehookname-1.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1820)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecyclehookname-1.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1821)*





___

___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecycletransition-1"></a>

###  LifecycleTransition

** LifecycleTransition**:  *`object`* 

*Defined in [spec/spec.ts:1823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1823)*




<a id="autoscaling.resources.lifecyclehook.properties-13.lifecycletransition-1.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-lifecycletransition"

*Defined in [spec/spec.ts:1824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1824)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecycletransition-1.primitivetype-61"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1825)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecycletransition-1.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1826)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.lifecycletransition-1.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1827)*





___

___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationmetadata-1"></a>

###  NotificationMetadata

** NotificationMetadata**:  *`object`* 

*Defined in [spec/spec.ts:1829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1829)*




<a id="autoscaling.resources.lifecyclehook.properties-13.notificationmetadata-1.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationmetadata"

*Defined in [spec/spec.ts:1830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1830)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationmetadata-1.primitivetype-62"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1831)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationmetadata-1.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1832)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationmetadata-1.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1833)*





___

___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationtargetarn-1"></a>

###  NotificationTargetARN

** NotificationTargetARN**:  *`object`* 

*Defined in [spec/spec.ts:1835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1835)*




<a id="autoscaling.resources.lifecyclehook.properties-13.notificationtargetarn-1.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-notificationtargetarn"

*Defined in [spec/spec.ts:1836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1836)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationtargetarn-1.primitivetype-63"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1837)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationtargetarn-1.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1838)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.notificationtargetarn-1.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1839)*





___

___
<a id="autoscaling.resources.lifecyclehook.properties-13.rolearn-1"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:1841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1841)*




<a id="autoscaling.resources.lifecyclehook.properties-13.rolearn-1.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-lifecyclehook.html#cfn-as-lifecyclehook-rolearn"

*Defined in [spec/spec.ts:1842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1842)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.rolearn-1.primitivetype-64"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1843)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.rolearn-1.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1844)*





___
<a id="autoscaling.resources.lifecyclehook.properties-13.rolearn-1.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1845)*





___

___

___

___
<a id="autoscaling.resources.scalingpolicy"></a>

###  ScalingPolicy

** ScalingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:1850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1850)*




<a id="autoscaling.resources.scalingpolicy.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html"

*Defined in [spec/spec.ts:1851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1851)*





___
<a id="autoscaling.resources.scalingpolicy.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::ScalingPolicy"

*Defined in [spec/spec.ts:1916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1916)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1852)*




<a id="autoscaling.resources.scalingpolicy.properties-14.adjustmenttype"></a>

###  AdjustmentType

** AdjustmentType**:  *`object`* 

*Defined in [spec/spec.ts:1853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1853)*




<a id="autoscaling.resources.scalingpolicy.properties-14.adjustmenttype.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-adjustmenttype"

*Defined in [spec/spec.ts:1854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1854)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.adjustmenttype.primitivetype-65"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1855)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.adjustmenttype.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1856)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.adjustmenttype.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1857)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.autoscalinggroupname-1"></a>

###  AutoScalingGroupName

** AutoScalingGroupName**:  *`object`* 

*Defined in [spec/spec.ts:1859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1859)*




<a id="autoscaling.resources.scalingpolicy.properties-14.autoscalinggroupname-1.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-autoscalinggroupname"

*Defined in [spec/spec.ts:1860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1860)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.autoscalinggroupname-1.primitivetype-66"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1861)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.autoscalinggroupname-1.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1862)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.autoscalinggroupname-1.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1863)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.cooldown-1"></a>

###  Cooldown

** Cooldown**:  *`object`* 

*Defined in [spec/spec.ts:1865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1865)*




<a id="autoscaling.resources.scalingpolicy.properties-14.cooldown-1.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-cooldown"

*Defined in [spec/spec.ts:1866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1866)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.cooldown-1.primitivetype-67"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1867)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.cooldown-1.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1868)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.cooldown-1.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1869)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.estimatedinstancewarmup"></a>

###  EstimatedInstanceWarmup

** EstimatedInstanceWarmup**:  *`object`* 

*Defined in [spec/spec.ts:1871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1871)*




<a id="autoscaling.resources.scalingpolicy.properties-14.estimatedinstancewarmup.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-estimatedinstancewarmup"

*Defined in [spec/spec.ts:1872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1872)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.estimatedinstancewarmup.primitivetype-68"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1873)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.estimatedinstancewarmup.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1874)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.estimatedinstancewarmup.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1875)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.metricaggregationtype"></a>

###  MetricAggregationType

** MetricAggregationType**:  *`object`* 

*Defined in [spec/spec.ts:1877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1877)*




<a id="autoscaling.resources.scalingpolicy.properties-14.metricaggregationtype.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-metricaggregationtype"

*Defined in [spec/spec.ts:1878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1878)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.metricaggregationtype.primitivetype-69"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1879)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.metricaggregationtype.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1880)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.metricaggregationtype.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1881)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.minadjustmentmagnitude"></a>

###  MinAdjustmentMagnitude

** MinAdjustmentMagnitude**:  *`object`* 

*Defined in [spec/spec.ts:1883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1883)*




<a id="autoscaling.resources.scalingpolicy.properties-14.minadjustmentmagnitude.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-minadjustmentmagnitude"

*Defined in [spec/spec.ts:1884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1884)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.minadjustmentmagnitude.primitivetype-70"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1885)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.minadjustmentmagnitude.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1886)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.minadjustmentmagnitude.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1887)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.policytype"></a>

###  PolicyType

** PolicyType**:  *`object`* 

*Defined in [spec/spec.ts:1889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1889)*




<a id="autoscaling.resources.scalingpolicy.properties-14.policytype.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-policytype"

*Defined in [spec/spec.ts:1890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1890)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.policytype.primitivetype-71"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1891)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.policytype.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1892)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.policytype.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1893)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.scalingadjustment-1"></a>

###  ScalingAdjustment

** ScalingAdjustment**:  *`object`* 

*Defined in [spec/spec.ts:1895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1895)*




<a id="autoscaling.resources.scalingpolicy.properties-14.scalingadjustment-1.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-scalingadjustment"

*Defined in [spec/spec.ts:1896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1896)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.scalingadjustment-1.primitivetype-72"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1897)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.scalingadjustment-1.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1898)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.scalingadjustment-1.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1899)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.stepadjustments"></a>

###  StepAdjustments

** StepAdjustments**:  *`object`* 

*Defined in [spec/spec.ts:1901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1901)*




<a id="autoscaling.resources.scalingpolicy.properties-14.stepadjustments.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-as-scalingpolicy-stepadjustments"

*Defined in [spec/spec.ts:1902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1902)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.stepadjustments.duplicatesallowed-15"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1903)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.stepadjustments.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "StepAdjustment"

*Defined in [spec/spec.ts:1904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1904)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.stepadjustments.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1905)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.stepadjustments.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:1906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1906)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.stepadjustments.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1907)*





___

___
<a id="autoscaling.resources.scalingpolicy.properties-14.targettrackingconfiguration-1"></a>

###  TargetTrackingConfiguration

** TargetTrackingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:1909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1909)*




<a id="autoscaling.resources.scalingpolicy.properties-14.targettrackingconfiguration-1.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-policy.html#cfn-autoscaling-scalingpolicy-targettrackingconfiguration"

*Defined in [spec/spec.ts:1910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1910)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.targettrackingconfiguration-1.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1911)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.targettrackingconfiguration-1.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "TargetTrackingConfiguration"

*Defined in [spec/spec.ts:1912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1912)*





___
<a id="autoscaling.resources.scalingpolicy.properties-14.targettrackingconfiguration-1.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1913)*





___

___

___

___
<a id="autoscaling.resources.scheduledaction"></a>

###  ScheduledAction

** ScheduledAction**:  *`object`* 

*Defined in [spec/spec.ts:1918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1918)*




<a id="autoscaling.resources.scheduledaction.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html"

*Defined in [spec/spec.ts:1919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1919)*





___
<a id="autoscaling.resources.scheduledaction.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::AutoScaling::ScheduledAction"

*Defined in [spec/spec.ts:1964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1964)*





___
<a id="autoscaling.resources.scheduledaction.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:1920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1920)*




<a id="autoscaling.resources.scheduledaction.properties-15.autoscalinggroupname-2"></a>

###  AutoScalingGroupName

** AutoScalingGroupName**:  *`object`* 

*Defined in [spec/spec.ts:1921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1921)*




<a id="autoscaling.resources.scheduledaction.properties-15.autoscalinggroupname-2.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-asgname"

*Defined in [spec/spec.ts:1922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1922)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.autoscalinggroupname-2.primitivetype-73"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1923)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.autoscalinggroupname-2.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:1924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1924)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.autoscalinggroupname-2.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:1925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1925)*





___

___
<a id="autoscaling.resources.scheduledaction.properties-15.desiredcapacity-1"></a>

###  DesiredCapacity

** DesiredCapacity**:  *`object`* 

*Defined in [spec/spec.ts:1927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1927)*




<a id="autoscaling.resources.scheduledaction.properties-15.desiredcapacity-1.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-desiredcapacity"

*Defined in [spec/spec.ts:1928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1928)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.desiredcapacity-1.primitivetype-74"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1929)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.desiredcapacity-1.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1930)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.desiredcapacity-1.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1931)*





___

___
<a id="autoscaling.resources.scheduledaction.properties-15.endtime"></a>

###  EndTime

** EndTime**:  *`object`* 

*Defined in [spec/spec.ts:1933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1933)*




<a id="autoscaling.resources.scheduledaction.properties-15.endtime.documentation-111"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-endtime"

*Defined in [spec/spec.ts:1934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1934)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.endtime.primitivetype-75"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1935)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.endtime.required-95"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1936)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.endtime.updatetype-95"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1937)*





___

___
<a id="autoscaling.resources.scheduledaction.properties-15.maxsize-1"></a>

###  MaxSize

** MaxSize**:  *`object`* 

*Defined in [spec/spec.ts:1939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1939)*




<a id="autoscaling.resources.scheduledaction.properties-15.maxsize-1.documentation-112"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-maxsize"

*Defined in [spec/spec.ts:1940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1940)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.maxsize-1.primitivetype-76"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1941)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.maxsize-1.required-96"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1942)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.maxsize-1.updatetype-96"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1943)*





___

___
<a id="autoscaling.resources.scheduledaction.properties-15.minsize-1"></a>

###  MinSize

** MinSize**:  *`object`* 

*Defined in [spec/spec.ts:1945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1945)*




<a id="autoscaling.resources.scheduledaction.properties-15.minsize-1.documentation-113"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-minsize"

*Defined in [spec/spec.ts:1946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1946)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.minsize-1.primitivetype-77"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:1947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1947)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.minsize-1.required-97"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1948)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.minsize-1.updatetype-97"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1949)*





___

___
<a id="autoscaling.resources.scheduledaction.properties-15.recurrence"></a>

###  Recurrence

** Recurrence**:  *`object`* 

*Defined in [spec/spec.ts:1951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1951)*




<a id="autoscaling.resources.scheduledaction.properties-15.recurrence.documentation-114"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-recurrence"

*Defined in [spec/spec.ts:1952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1952)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.recurrence.primitivetype-78"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1953)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.recurrence.required-98"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1954)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.recurrence.updatetype-98"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1955)*





___

___
<a id="autoscaling.resources.scheduledaction.properties-15.starttime"></a>

###  StartTime

** StartTime**:  *`object`* 

*Defined in [spec/spec.ts:1957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1957)*




<a id="autoscaling.resources.scheduledaction.properties-15.starttime.documentation-115"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html#cfn-as-scheduledaction-starttime"

*Defined in [spec/spec.ts:1958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1958)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.starttime.primitivetype-79"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:1959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1959)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.starttime.required-99"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:1960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1960)*





___
<a id="autoscaling.resources.scheduledaction.properties-15.starttime.updatetype-99"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:1961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L1961)*





___

___

___

___

___

<a id="batch"></a>

## Object literal: Batch


<a id="batch.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:2388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2388)*




<a id="batch.models.computeenvironmentorder"></a>

###  ComputeEnvironmentOrder

** ComputeEnvironmentOrder**:  *`object`* 

*Defined in [spec/spec.ts:2667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2667)*




<a id="batch.models.computeenvironmentorder.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-computeenvironmentorder.html"

*Defined in [spec/spec.ts:2668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2668)*





___
<a id="batch.models.computeenvironmentorder.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobQueue.ComputeEnvironmentOrder"

*Defined in [spec/spec.ts:2683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2683)*





___
<a id="batch.models.computeenvironmentorder.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2669)*




<a id="batch.models.computeenvironmentorder.properties.computeenvironment"></a>

###  ComputeEnvironment

** ComputeEnvironment**:  *`object`* 

*Defined in [spec/spec.ts:2670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2670)*




<a id="batch.models.computeenvironmentorder.properties.computeenvironment.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-computeenvironmentorder.html#cfn-batch-jobqueue-computeenvironmentorder-computeenvironment"

*Defined in [spec/spec.ts:2672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2672)*





___
<a id="batch.models.computeenvironmentorder.properties.computeenvironment.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2673)*





___
<a id="batch.models.computeenvironmentorder.properties.computeenvironment.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2671)*





___
<a id="batch.models.computeenvironmentorder.properties.computeenvironment.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2674)*





___

___
<a id="batch.models.computeenvironmentorder.properties.order"></a>

###  Order

** Order**:  *`object`* 

*Defined in [spec/spec.ts:2676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2676)*




<a id="batch.models.computeenvironmentorder.properties.order.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-computeenvironmentorder.html#cfn-batch-jobqueue-computeenvironmentorder-order"

*Defined in [spec/spec.ts:2678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2678)*





___
<a id="batch.models.computeenvironmentorder.properties.order.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2679)*





___
<a id="batch.models.computeenvironmentorder.properties.order.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2677)*





___
<a id="batch.models.computeenvironmentorder.properties.order.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2680)*





___

___

___

___
<a id="batch.models.computeresources"></a>

###  ComputeResources

** ComputeResources**:  *`object`* 

*Defined in [spec/spec.ts:2389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2389)*




<a id="batch.models.computeresources.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html"

*Defined in [spec/spec.ts:2390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2390)*





___
<a id="batch.models.computeresources.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::ComputeEnvironment.ComputeResources"

*Defined in [spec/spec.ts:2474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2474)*





___
<a id="batch.models.computeresources.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2391)*




<a id="batch.models.computeresources.properties-1.bidpercentage"></a>

###  BidPercentage

** BidPercentage**:  *`object`* 

*Defined in [spec/spec.ts:2404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2404)*




<a id="batch.models.computeresources.properties-1.bidpercentage.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-bidpercentage"

*Defined in [spec/spec.ts:2406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2406)*





___
<a id="batch.models.computeresources.properties-1.bidpercentage.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2407)*





___
<a id="batch.models.computeresources.properties-1.bidpercentage.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2405)*





___
<a id="batch.models.computeresources.properties-1.bidpercentage.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2408)*





___

___
<a id="batch.models.computeresources.properties-1.desiredvcpus"></a>

###  DesiredvCpus

** DesiredvCpus**:  *`object`* 

*Defined in [spec/spec.ts:2467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2467)*




<a id="batch.models.computeresources.properties-1.desiredvcpus.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-desiredvcpus"

*Defined in [spec/spec.ts:2469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2469)*





___
<a id="batch.models.computeresources.properties-1.desiredvcpus.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2470)*





___
<a id="batch.models.computeresources.properties-1.desiredvcpus.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2468)*





___
<a id="batch.models.computeresources.properties-1.desiredvcpus.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2471)*





___

___
<a id="batch.models.computeresources.properties-1.ec2keypair"></a>

###  Ec2KeyPair

** Ec2KeyPair**:  *`object`* 

*Defined in [spec/spec.ts:2455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2455)*




<a id="batch.models.computeresources.properties-1.ec2keypair.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-ec2keypair"

*Defined in [spec/spec.ts:2457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2457)*





___
<a id="batch.models.computeresources.properties-1.ec2keypair.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2458)*





___
<a id="batch.models.computeresources.properties-1.ec2keypair.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2456)*





___
<a id="batch.models.computeresources.properties-1.ec2keypair.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2459)*





___

___
<a id="batch.models.computeresources.properties-1.imageid"></a>

###  ImageId

** ImageId**:  *`object`* 

*Defined in [spec/spec.ts:2436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2436)*




<a id="batch.models.computeresources.properties-1.imageid.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-imageid"

*Defined in [spec/spec.ts:2438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2438)*





___
<a id="batch.models.computeresources.properties-1.imageid.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2439)*





___
<a id="batch.models.computeresources.properties-1.imageid.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2437)*





___
<a id="batch.models.computeresources.properties-1.imageid.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2440)*





___

___
<a id="batch.models.computeresources.properties-1.instancerole"></a>

###  InstanceRole

** InstanceRole**:  *`object`* 

*Defined in [spec/spec.ts:2442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2442)*




<a id="batch.models.computeresources.properties-1.instancerole.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancerole"

*Defined in [spec/spec.ts:2444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2444)*





___
<a id="batch.models.computeresources.properties-1.instancerole.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2445)*





___
<a id="batch.models.computeresources.properties-1.instancerole.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2443)*





___
<a id="batch.models.computeresources.properties-1.instancerole.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2446)*





___

___
<a id="batch.models.computeresources.properties-1.instancetypes"></a>

###  InstanceTypes

** InstanceTypes**:  *`object`* 

*Defined in [spec/spec.ts:2448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2448)*




<a id="batch.models.computeresources.properties-1.instancetypes.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-instancetypes"

*Defined in [spec/spec.ts:2452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2452)*





___
<a id="batch.models.computeresources.properties-1.instancetypes.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2449)*





___
<a id="batch.models.computeresources.properties-1.instancetypes.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2451)*





___
<a id="batch.models.computeresources.properties-1.instancetypes.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2450)*





___
<a id="batch.models.computeresources.properties-1.instancetypes.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2453)*





___

___
<a id="batch.models.computeresources.properties-1.maxvcpus"></a>

###  MaxvCpus

** MaxvCpus**:  *`object`* 

*Defined in [spec/spec.ts:2398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2398)*




<a id="batch.models.computeresources.properties-1.maxvcpus.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-maxvcpus"

*Defined in [spec/spec.ts:2400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2400)*





___
<a id="batch.models.computeresources.properties-1.maxvcpus.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2401)*





___
<a id="batch.models.computeresources.properties-1.maxvcpus.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2399)*





___
<a id="batch.models.computeresources.properties-1.maxvcpus.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2402)*





___

___
<a id="batch.models.computeresources.properties-1.minvcpus"></a>

###  MinvCpus

** MinvCpus**:  *`object`* 

*Defined in [spec/spec.ts:2430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2430)*




<a id="batch.models.computeresources.properties-1.minvcpus.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-minvcpus"

*Defined in [spec/spec.ts:2432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2432)*





___
<a id="batch.models.computeresources.properties-1.minvcpus.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2433)*





___
<a id="batch.models.computeresources.properties-1.minvcpus.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2431)*





___
<a id="batch.models.computeresources.properties-1.minvcpus.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2434)*





___

___
<a id="batch.models.computeresources.properties-1.securitygroupids"></a>

###  SecurityGroupIds

** SecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:2410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2410)*




<a id="batch.models.computeresources.properties-1.securitygroupids.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-securitygroupids"

*Defined in [spec/spec.ts:2414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2414)*





___
<a id="batch.models.computeresources.properties-1.securitygroupids.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2411)*





___
<a id="batch.models.computeresources.properties-1.securitygroupids.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2413)*





___
<a id="batch.models.computeresources.properties-1.securitygroupids.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2412)*





___
<a id="batch.models.computeresources.properties-1.securitygroupids.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2415)*





___

___
<a id="batch.models.computeresources.properties-1.spotiamfleetrole"></a>

###  SpotIamFleetRole

** SpotIamFleetRole**:  *`object`* 

*Defined in [spec/spec.ts:2392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2392)*




<a id="batch.models.computeresources.properties-1.spotiamfleetrole.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-spotiamfleetrole"

*Defined in [spec/spec.ts:2394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2394)*





___
<a id="batch.models.computeresources.properties-1.spotiamfleetrole.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2395)*





___
<a id="batch.models.computeresources.properties-1.spotiamfleetrole.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2393)*





___
<a id="batch.models.computeresources.properties-1.spotiamfleetrole.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2396)*





___

___
<a id="batch.models.computeresources.properties-1.subnets"></a>

###  Subnets

** Subnets**:  *`object`* 

*Defined in [spec/spec.ts:2417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2417)*




<a id="batch.models.computeresources.properties-1.subnets.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-subnets"

*Defined in [spec/spec.ts:2421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2421)*





___
<a id="batch.models.computeresources.properties-1.subnets.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2418)*





___
<a id="batch.models.computeresources.properties-1.subnets.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2420)*





___
<a id="batch.models.computeresources.properties-1.subnets.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2419)*





___
<a id="batch.models.computeresources.properties-1.subnets.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2422)*





___

___
<a id="batch.models.computeresources.properties-1.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:2461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2461)*




<a id="batch.models.computeresources.properties-1.tags.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-tags"

*Defined in [spec/spec.ts:2463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2463)*





___
<a id="batch.models.computeresources.properties-1.tags.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:2464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2464)*





___
<a id="batch.models.computeresources.properties-1.tags.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2462)*





___
<a id="batch.models.computeresources.properties-1.tags.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2465)*





___

___
<a id="batch.models.computeresources.properties-1.type-3"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:2424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2424)*




<a id="batch.models.computeresources.properties-1.type-3.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-computeresources.html#cfn-batch-computeenvironment-computeresources-type"

*Defined in [spec/spec.ts:2426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2426)*





___
<a id="batch.models.computeresources.properties-1.type-3.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2427)*





___
<a id="batch.models.computeresources.properties-1.type-3.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2425)*





___
<a id="batch.models.computeresources.properties-1.type-3.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2428)*





___

___

___

___
<a id="batch.models.containerproperties"></a>

###  ContainerProperties

** ContainerProperties**:  *`object`* 

*Defined in [spec/spec.ts:2476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2476)*




<a id="batch.models.containerproperties.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html"

*Defined in [spec/spec.ts:2477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2477)*





___
<a id="batch.models.containerproperties.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition.ContainerProperties"

*Defined in [spec/spec.ts:2557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2557)*





___
<a id="batch.models.containerproperties.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2478)*




<a id="batch.models.containerproperties.properties-2.command"></a>

###  Command

** Command**:  *`object`* 

*Defined in [spec/spec.ts:2499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2499)*




<a id="batch.models.containerproperties.properties-2.command.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-command"

*Defined in [spec/spec.ts:2503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2503)*





___
<a id="batch.models.containerproperties.properties-2.command.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2500)*





___
<a id="batch.models.containerproperties.properties-2.command.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2502)*





___
<a id="batch.models.containerproperties.properties-2.command.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2501)*





___
<a id="batch.models.containerproperties.properties-2.command.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2504)*





___

___
<a id="batch.models.containerproperties.properties-2.environment"></a>

###  Environment

** Environment**:  *`object`* 

*Defined in [spec/spec.ts:2518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2518)*




<a id="batch.models.containerproperties.properties-2.environment.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-environment"

*Defined in [spec/spec.ts:2521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2521)*





___
<a id="batch.models.containerproperties.properties-2.environment.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Environment"

*Defined in [spec/spec.ts:2522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2522)*





___
<a id="batch.models.containerproperties.properties-2.environment.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2520)*





___
<a id="batch.models.containerproperties.properties-2.environment.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2519)*





___
<a id="batch.models.containerproperties.properties-2.environment.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2523)*





___

___
<a id="batch.models.containerproperties.properties-2.image"></a>

###  Image

** Image**:  *`object`* 

*Defined in [spec/spec.ts:2550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2550)*




<a id="batch.models.containerproperties.properties-2.image.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-image"

*Defined in [spec/spec.ts:2552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2552)*





___
<a id="batch.models.containerproperties.properties-2.image.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2553)*





___
<a id="batch.models.containerproperties.properties-2.image.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2551)*





___
<a id="batch.models.containerproperties.properties-2.image.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2554)*





___

___
<a id="batch.models.containerproperties.properties-2.jobrolearn"></a>

###  JobRoleArn

** JobRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:2525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2525)*




<a id="batch.models.containerproperties.properties-2.jobrolearn.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-jobrolearn"

*Defined in [spec/spec.ts:2527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2527)*





___
<a id="batch.models.containerproperties.properties-2.jobrolearn.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2528)*





___
<a id="batch.models.containerproperties.properties-2.jobrolearn.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2526)*





___
<a id="batch.models.containerproperties.properties-2.jobrolearn.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2529)*





___

___
<a id="batch.models.containerproperties.properties-2.memory"></a>

###  Memory

** Memory**:  *`object`* 

*Defined in [spec/spec.ts:2506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2506)*




<a id="batch.models.containerproperties.properties-2.memory.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-memory"

*Defined in [spec/spec.ts:2508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2508)*





___
<a id="batch.models.containerproperties.properties-2.memory.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2509)*





___
<a id="batch.models.containerproperties.properties-2.memory.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2507)*





___
<a id="batch.models.containerproperties.properties-2.memory.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2510)*





___

___
<a id="batch.models.containerproperties.properties-2.mountpoints"></a>

###  MountPoints

** MountPoints**:  *`object`* 

*Defined in [spec/spec.ts:2479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2479)*




<a id="batch.models.containerproperties.properties-2.mountpoints.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-mountpoints"

*Defined in [spec/spec.ts:2482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2482)*





___
<a id="batch.models.containerproperties.properties-2.mountpoints.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MountPoints"

*Defined in [spec/spec.ts:2483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2483)*





___
<a id="batch.models.containerproperties.properties-2.mountpoints.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2481)*





___
<a id="batch.models.containerproperties.properties-2.mountpoints.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2480)*





___
<a id="batch.models.containerproperties.properties-2.mountpoints.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2484)*





___

___
<a id="batch.models.containerproperties.properties-2.privileged"></a>

###  Privileged

** Privileged**:  *`object`* 

*Defined in [spec/spec.ts:2512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2512)*




<a id="batch.models.containerproperties.properties-2.privileged.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-privileged"

*Defined in [spec/spec.ts:2514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2514)*





___
<a id="batch.models.containerproperties.properties-2.privileged.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2515)*





___
<a id="batch.models.containerproperties.properties-2.privileged.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2513)*





___
<a id="batch.models.containerproperties.properties-2.privileged.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2516)*





___

___
<a id="batch.models.containerproperties.properties-2.readonlyrootfilesystem"></a>

###  ReadonlyRootFilesystem

** ReadonlyRootFilesystem**:  *`object`* 

*Defined in [spec/spec.ts:2531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2531)*




<a id="batch.models.containerproperties.properties-2.readonlyrootfilesystem.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-readonlyrootfilesystem"

*Defined in [spec/spec.ts:2533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2533)*





___
<a id="batch.models.containerproperties.properties-2.readonlyrootfilesystem.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2534)*





___
<a id="batch.models.containerproperties.properties-2.readonlyrootfilesystem.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2532)*





___
<a id="batch.models.containerproperties.properties-2.readonlyrootfilesystem.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2535)*





___

___
<a id="batch.models.containerproperties.properties-2.ulimits"></a>

###  Ulimits

** Ulimits**:  *`object`* 

*Defined in [spec/spec.ts:2537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2537)*




<a id="batch.models.containerproperties.properties-2.ulimits.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-ulimits"

*Defined in [spec/spec.ts:2540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2540)*





___
<a id="batch.models.containerproperties.properties-2.ulimits.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Ulimit"

*Defined in [spec/spec.ts:2541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2541)*





___
<a id="batch.models.containerproperties.properties-2.ulimits.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2539)*





___
<a id="batch.models.containerproperties.properties-2.ulimits.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2538)*





___
<a id="batch.models.containerproperties.properties-2.ulimits.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2542)*





___

___
<a id="batch.models.containerproperties.properties-2.user"></a>

###  User

** User**:  *`object`* 

*Defined in [spec/spec.ts:2486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2486)*




<a id="batch.models.containerproperties.properties-2.user.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-user"

*Defined in [spec/spec.ts:2488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2488)*





___
<a id="batch.models.containerproperties.properties-2.user.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2489)*





___
<a id="batch.models.containerproperties.properties-2.user.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2487)*





___
<a id="batch.models.containerproperties.properties-2.user.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2490)*





___

___
<a id="batch.models.containerproperties.properties-2.vcpus"></a>

###  Vcpus

** Vcpus**:  *`object`* 

*Defined in [spec/spec.ts:2544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2544)*




<a id="batch.models.containerproperties.properties-2.vcpus.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-vcpus"

*Defined in [spec/spec.ts:2546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2546)*





___
<a id="batch.models.containerproperties.properties-2.vcpus.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2547)*





___
<a id="batch.models.containerproperties.properties-2.vcpus.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2545)*





___
<a id="batch.models.containerproperties.properties-2.vcpus.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2548)*





___

___
<a id="batch.models.containerproperties.properties-2.volumes"></a>

###  Volumes

** Volumes**:  *`object`* 

*Defined in [spec/spec.ts:2492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2492)*




<a id="batch.models.containerproperties.properties-2.volumes.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html#cfn-batch-jobdefinition-containerproperties-volumes"

*Defined in [spec/spec.ts:2495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2495)*





___
<a id="batch.models.containerproperties.properties-2.volumes.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Volumes"

*Defined in [spec/spec.ts:2496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2496)*





___
<a id="batch.models.containerproperties.properties-2.volumes.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2494)*





___
<a id="batch.models.containerproperties.properties-2.volumes.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2493)*





___
<a id="batch.models.containerproperties.properties-2.volumes.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2497)*





___

___

___

___
<a id="batch.models.environment-1"></a>

###  Environment

** Environment**:  *`object`* 

*Defined in [spec/spec.ts:2559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2559)*




<a id="batch.models.environment-1.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-environment.html"

*Defined in [spec/spec.ts:2560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2560)*





___
<a id="batch.models.environment-1.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition.Environment"

*Defined in [spec/spec.ts:2575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2575)*





___
<a id="batch.models.environment-1.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2561)*




<a id="batch.models.environment-1.properties-3.name-4"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:2568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2568)*




<a id="batch.models.environment-1.properties-3.name-4.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-environment.html#cfn-batch-jobdefinition-environment-name"

*Defined in [spec/spec.ts:2570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2570)*





___
<a id="batch.models.environment-1.properties-3.name-4.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2571)*





___
<a id="batch.models.environment-1.properties-3.name-4.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2569)*





___
<a id="batch.models.environment-1.properties-3.name-4.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2572)*





___

___
<a id="batch.models.environment-1.properties-3.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:2562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2562)*




<a id="batch.models.environment-1.properties-3.value.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-environment.html#cfn-batch-jobdefinition-environment-value"

*Defined in [spec/spec.ts:2564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2564)*





___
<a id="batch.models.environment-1.properties-3.value.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2565)*





___
<a id="batch.models.environment-1.properties-3.value.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2563)*





___
<a id="batch.models.environment-1.properties-3.value.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2566)*





___

___

___

___
<a id="batch.models.mountpoints-1"></a>

###  MountPoints

** MountPoints**:  *`object`* 

*Defined in [spec/spec.ts:2577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2577)*




<a id="batch.models.mountpoints-1.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-mountpoints.html"

*Defined in [spec/spec.ts:2578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2578)*





___
<a id="batch.models.mountpoints-1.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition.MountPoints"

*Defined in [spec/spec.ts:2599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2599)*





___
<a id="batch.models.mountpoints-1.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2579)*




<a id="batch.models.mountpoints-1.properties-4.containerpath"></a>

###  ContainerPath

** ContainerPath**:  *`object`* 

*Defined in [spec/spec.ts:2592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2592)*




<a id="batch.models.mountpoints-1.properties-4.containerpath.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-mountpoints.html#cfn-batch-jobdefinition-mountpoints-containerpath"

*Defined in [spec/spec.ts:2594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2594)*





___
<a id="batch.models.mountpoints-1.properties-4.containerpath.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2595)*





___
<a id="batch.models.mountpoints-1.properties-4.containerpath.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2593)*





___
<a id="batch.models.mountpoints-1.properties-4.containerpath.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2596)*





___

___
<a id="batch.models.mountpoints-1.properties-4.readonly"></a>

###  ReadOnly

** ReadOnly**:  *`object`* 

*Defined in [spec/spec.ts:2580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2580)*




<a id="batch.models.mountpoints-1.properties-4.readonly.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-mountpoints.html#cfn-batch-jobdefinition-mountpoints-readonly"

*Defined in [spec/spec.ts:2582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2582)*





___
<a id="batch.models.mountpoints-1.properties-4.readonly.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:2583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2583)*





___
<a id="batch.models.mountpoints-1.properties-4.readonly.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2581)*





___
<a id="batch.models.mountpoints-1.properties-4.readonly.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2584)*





___

___
<a id="batch.models.mountpoints-1.properties-4.sourcevolume"></a>

###  SourceVolume

** SourceVolume**:  *`object`* 

*Defined in [spec/spec.ts:2586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2586)*




<a id="batch.models.mountpoints-1.properties-4.sourcevolume.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-mountpoints.html#cfn-batch-jobdefinition-mountpoints-sourcevolume"

*Defined in [spec/spec.ts:2588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2588)*





___
<a id="batch.models.mountpoints-1.properties-4.sourcevolume.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2589)*





___
<a id="batch.models.mountpoints-1.properties-4.sourcevolume.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2587)*





___
<a id="batch.models.mountpoints-1.properties-4.sourcevolume.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2590)*





___

___

___

___
<a id="batch.models.retrystrategy"></a>

###  RetryStrategy

** RetryStrategy**:  *`object`* 

*Defined in [spec/spec.ts:2601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2601)*




<a id="batch.models.retrystrategy.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html"

*Defined in [spec/spec.ts:2602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2602)*





___
<a id="batch.models.retrystrategy.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition.RetryStrategy"

*Defined in [spec/spec.ts:2611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2611)*





___
<a id="batch.models.retrystrategy.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2603)*




<a id="batch.models.retrystrategy.properties-5.attempts"></a>

###  Attempts

** Attempts**:  *`object`* 

*Defined in [spec/spec.ts:2604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2604)*




<a id="batch.models.retrystrategy.properties-5.attempts.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html#cfn-batch-jobdefinition-retrystrategy-attempts"

*Defined in [spec/spec.ts:2606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2606)*





___
<a id="batch.models.retrystrategy.properties-5.attempts.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2607)*





___
<a id="batch.models.retrystrategy.properties-5.attempts.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2605)*





___
<a id="batch.models.retrystrategy.properties-5.attempts.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2608)*





___

___

___

___
<a id="batch.models.ulimit"></a>

###  Ulimit

** Ulimit**:  *`object`* 

*Defined in [spec/spec.ts:2613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2613)*




<a id="batch.models.ulimit.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html"

*Defined in [spec/spec.ts:2614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2614)*





___
<a id="batch.models.ulimit.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition.Ulimit"

*Defined in [spec/spec.ts:2635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2635)*





___
<a id="batch.models.ulimit.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2615)*




<a id="batch.models.ulimit.properties-6.hardlimit"></a>

###  HardLimit

** HardLimit**:  *`object`* 

*Defined in [spec/spec.ts:2622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2622)*




<a id="batch.models.ulimit.properties-6.hardlimit.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html#cfn-batch-jobdefinition-ulimit-hardlimit"

*Defined in [spec/spec.ts:2624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2624)*





___
<a id="batch.models.ulimit.properties-6.hardlimit.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2625)*





___
<a id="batch.models.ulimit.properties-6.hardlimit.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2623)*





___
<a id="batch.models.ulimit.properties-6.hardlimit.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2626)*





___

___
<a id="batch.models.ulimit.properties-6.name-8"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:2628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2628)*




<a id="batch.models.ulimit.properties-6.name-8.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html#cfn-batch-jobdefinition-ulimit-name"

*Defined in [spec/spec.ts:2630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2630)*





___
<a id="batch.models.ulimit.properties-6.name-8.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2631)*





___
<a id="batch.models.ulimit.properties-6.name-8.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2629)*





___
<a id="batch.models.ulimit.properties-6.name-8.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2632)*





___

___
<a id="batch.models.ulimit.properties-6.softlimit"></a>

###  SoftLimit

** SoftLimit**:  *`object`* 

*Defined in [spec/spec.ts:2616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2616)*




<a id="batch.models.ulimit.properties-6.softlimit.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ulimit.html#cfn-batch-jobdefinition-ulimit-softlimit"

*Defined in [spec/spec.ts:2618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2618)*





___
<a id="batch.models.ulimit.properties-6.softlimit.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2619)*





___
<a id="batch.models.ulimit.properties-6.softlimit.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2617)*





___
<a id="batch.models.ulimit.properties-6.softlimit.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2620)*





___

___

___

___
<a id="batch.models.volumes-1"></a>

###  Volumes

** Volumes**:  *`object`* 

*Defined in [spec/spec.ts:2637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2637)*




<a id="batch.models.volumes-1.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumes.html"

*Defined in [spec/spec.ts:2638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2638)*





___
<a id="batch.models.volumes-1.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition.Volumes"

*Defined in [spec/spec.ts:2653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2653)*





___
<a id="batch.models.volumes-1.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2639)*




<a id="batch.models.volumes-1.properties-7.host"></a>

###  Host

** Host**:  *`object`* 

*Defined in [spec/spec.ts:2640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2640)*




<a id="batch.models.volumes-1.properties-7.host.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumes.html#cfn-batch-jobdefinition-volumes-host"

*Defined in [spec/spec.ts:2643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2643)*





___
<a id="batch.models.volumes-1.properties-7.host.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2642)*





___
<a id="batch.models.volumes-1.properties-7.host.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "VolumesHost"

*Defined in [spec/spec.ts:2641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2641)*





___
<a id="batch.models.volumes-1.properties-7.host.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2644)*





___

___
<a id="batch.models.volumes-1.properties-7.name-10"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:2646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2646)*




<a id="batch.models.volumes-1.properties-7.name-10.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumes.html#cfn-batch-jobdefinition-volumes-name"

*Defined in [spec/spec.ts:2648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2648)*





___
<a id="batch.models.volumes-1.properties-7.name-10.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2649)*





___
<a id="batch.models.volumes-1.properties-7.name-10.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2647)*





___
<a id="batch.models.volumes-1.properties-7.name-10.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2650)*





___

___

___

___
<a id="batch.models.volumeshost"></a>

###  VolumesHost

** VolumesHost**:  *`object`* 

*Defined in [spec/spec.ts:2655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2655)*




<a id="batch.models.volumeshost.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumeshost.html"

*Defined in [spec/spec.ts:2656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2656)*





___
<a id="batch.models.volumeshost.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition.VolumesHost"

*Defined in [spec/spec.ts:2665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2665)*





___
<a id="batch.models.volumeshost.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2657)*




<a id="batch.models.volumeshost.properties-8.sourcepath"></a>

###  SourcePath

** SourcePath**:  *`object`* 

*Defined in [spec/spec.ts:2658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2658)*




<a id="batch.models.volumeshost.properties-8.sourcepath.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-volumeshost.html#cfn-batch-jobdefinition-volumeshost-sourcepath"

*Defined in [spec/spec.ts:2660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2660)*





___
<a id="batch.models.volumeshost.properties-8.sourcepath.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2661)*





___
<a id="batch.models.volumeshost.properties-8.sourcepath.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2659)*





___
<a id="batch.models.volumeshost.properties-8.sourcepath.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2662)*





___

___

___

___

___
<a id="batch.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:2283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2283)*




<a id="batch.resources.computeenvironment-1"></a>

###  ComputeEnvironment

** ComputeEnvironment**:  *`object`* 

*Defined in [spec/spec.ts:2284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2284)*




<a id="batch.resources.computeenvironment-1.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html"

*Defined in [spec/spec.ts:2285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2285)*





___
<a id="batch.resources.computeenvironment-1.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::ComputeEnvironment"

*Defined in [spec/spec.ts:2318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2318)*





___
<a id="batch.resources.computeenvironment-1.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2286)*




<a id="batch.resources.computeenvironment-1.properties-9.computeenvironmentname"></a>

###  ComputeEnvironmentName

** ComputeEnvironmentName**:  *`object`* 

*Defined in [spec/spec.ts:2299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2299)*




<a id="batch.resources.computeenvironment-1.properties-9.computeenvironmentname.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeenvironmentname"

*Defined in [spec/spec.ts:2301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2301)*





___
<a id="batch.resources.computeenvironment-1.properties-9.computeenvironmentname.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2302)*





___
<a id="batch.resources.computeenvironment-1.properties-9.computeenvironmentname.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2300)*





___
<a id="batch.resources.computeenvironment-1.properties-9.computeenvironmentname.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2303)*





___

___
<a id="batch.resources.computeenvironment-1.properties-9.computeresources-1"></a>

###  ComputeResources

** ComputeResources**:  *`object`* 

*Defined in [spec/spec.ts:2305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2305)*




<a id="batch.resources.computeenvironment-1.properties-9.computeresources-1.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-computeresources"

*Defined in [spec/spec.ts:2308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2308)*





___
<a id="batch.resources.computeenvironment-1.properties-9.computeresources-1.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2307)*





___
<a id="batch.resources.computeenvironment-1.properties-9.computeresources-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "ComputeResources"

*Defined in [spec/spec.ts:2306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2306)*





___
<a id="batch.resources.computeenvironment-1.properties-9.computeresources-1.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2309)*





___

___
<a id="batch.resources.computeenvironment-1.properties-9.servicerole"></a>

###  ServiceRole

** ServiceRole**:  *`object`* 

*Defined in [spec/spec.ts:2293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2293)*




<a id="batch.resources.computeenvironment-1.properties-9.servicerole.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-servicerole"

*Defined in [spec/spec.ts:2295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2295)*





___
<a id="batch.resources.computeenvironment-1.properties-9.servicerole.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2296)*





___
<a id="batch.resources.computeenvironment-1.properties-9.servicerole.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2294)*





___
<a id="batch.resources.computeenvironment-1.properties-9.servicerole.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2297)*





___

___
<a id="batch.resources.computeenvironment-1.properties-9.state"></a>

###  State

** State**:  *`object`* 

*Defined in [spec/spec.ts:2311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2311)*




<a id="batch.resources.computeenvironment-1.properties-9.state.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-state"

*Defined in [spec/spec.ts:2313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2313)*





___
<a id="batch.resources.computeenvironment-1.properties-9.state.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2314)*





___
<a id="batch.resources.computeenvironment-1.properties-9.state.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2312)*





___
<a id="batch.resources.computeenvironment-1.properties-9.state.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2315)*





___

___
<a id="batch.resources.computeenvironment-1.properties-9.type-11"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:2287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2287)*




<a id="batch.resources.computeenvironment-1.properties-9.type-11.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-computeenvironment.html#cfn-batch-computeenvironment-type"

*Defined in [spec/spec.ts:2289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2289)*





___
<a id="batch.resources.computeenvironment-1.properties-9.type-11.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2290)*





___
<a id="batch.resources.computeenvironment-1.properties-9.type-11.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2288)*





___
<a id="batch.resources.computeenvironment-1.properties-9.type-11.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2291)*





___

___

___

___
<a id="batch.resources.jobdefinition"></a>

###  JobDefinition

** JobDefinition**:  *`object`* 

*Defined in [spec/spec.ts:2320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2320)*




<a id="batch.resources.jobdefinition.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html"

*Defined in [spec/spec.ts:2321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2321)*





___
<a id="batch.resources.jobdefinition.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobDefinition"

*Defined in [spec/spec.ts:2354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2354)*





___
<a id="batch.resources.jobdefinition.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2322)*




<a id="batch.resources.jobdefinition.properties-10.containerproperties-1"></a>

###  ContainerProperties

** ContainerProperties**:  *`object`* 

*Defined in [spec/spec.ts:2335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2335)*




<a id="batch.resources.jobdefinition.properties-10.containerproperties-1.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-containerproperties"

*Defined in [spec/spec.ts:2338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2338)*





___
<a id="batch.resources.jobdefinition.properties-10.containerproperties-1.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2337)*





___
<a id="batch.resources.jobdefinition.properties-10.containerproperties-1.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "ContainerProperties"

*Defined in [spec/spec.ts:2336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2336)*





___
<a id="batch.resources.jobdefinition.properties-10.containerproperties-1.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2339)*





___

___
<a id="batch.resources.jobdefinition.properties-10.jobdefinitionname"></a>

###  JobDefinitionName

** JobDefinitionName**:  *`object`* 

*Defined in [spec/spec.ts:2341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2341)*




<a id="batch.resources.jobdefinition.properties-10.jobdefinitionname.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-jobdefinitionname"

*Defined in [spec/spec.ts:2343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2343)*





___
<a id="batch.resources.jobdefinition.properties-10.jobdefinitionname.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2344)*





___
<a id="batch.resources.jobdefinition.properties-10.jobdefinitionname.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2342)*





___
<a id="batch.resources.jobdefinition.properties-10.jobdefinitionname.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2345)*





___

___
<a id="batch.resources.jobdefinition.properties-10.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:2329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2329)*




<a id="batch.resources.jobdefinition.properties-10.parameters.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-parameters"

*Defined in [spec/spec.ts:2331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2331)*





___
<a id="batch.resources.jobdefinition.properties-10.parameters.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:2332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2332)*





___
<a id="batch.resources.jobdefinition.properties-10.parameters.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2330)*





___
<a id="batch.resources.jobdefinition.properties-10.parameters.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2333)*





___

___
<a id="batch.resources.jobdefinition.properties-10.retrystrategy-1"></a>

###  RetryStrategy

** RetryStrategy**:  *`object`* 

*Defined in [spec/spec.ts:2347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2347)*




<a id="batch.resources.jobdefinition.properties-10.retrystrategy-1.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-retrystrategy"

*Defined in [spec/spec.ts:2350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2350)*





___
<a id="batch.resources.jobdefinition.properties-10.retrystrategy-1.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2349)*





___
<a id="batch.resources.jobdefinition.properties-10.retrystrategy-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "RetryStrategy"

*Defined in [spec/spec.ts:2348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2348)*





___
<a id="batch.resources.jobdefinition.properties-10.retrystrategy-1.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2351)*





___

___
<a id="batch.resources.jobdefinition.properties-10.type-14"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:2323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2323)*




<a id="batch.resources.jobdefinition.properties-10.type-14.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html#cfn-batch-jobdefinition-type"

*Defined in [spec/spec.ts:2325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2325)*





___
<a id="batch.resources.jobdefinition.properties-10.type-14.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2326)*





___
<a id="batch.resources.jobdefinition.properties-10.type-14.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2324)*





___
<a id="batch.resources.jobdefinition.properties-10.type-14.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2327)*





___

___

___

___
<a id="batch.resources.jobqueue"></a>

###  JobQueue

** JobQueue**:  *`object`* 

*Defined in [spec/spec.ts:2356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2356)*




<a id="batch.resources.jobqueue.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html"

*Defined in [spec/spec.ts:2357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2357)*





___
<a id="batch.resources.jobqueue.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Batch::JobQueue"

*Defined in [spec/spec.ts:2385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2385)*





___
<a id="batch.resources.jobqueue.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2358)*




<a id="batch.resources.jobqueue.properties-11.computeenvironmentorder-1"></a>

###  ComputeEnvironmentOrder

** ComputeEnvironmentOrder**:  *`object`* 

*Defined in [spec/spec.ts:2359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2359)*




<a id="batch.resources.jobqueue.properties-11.computeenvironmentorder-1.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-computeenvironmentorder"

*Defined in [spec/spec.ts:2362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2362)*





___
<a id="batch.resources.jobqueue.properties-11.computeenvironmentorder-1.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ComputeEnvironmentOrder"

*Defined in [spec/spec.ts:2363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2363)*





___
<a id="batch.resources.jobqueue.properties-11.computeenvironmentorder-1.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2361)*





___
<a id="batch.resources.jobqueue.properties-11.computeenvironmentorder-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2360)*





___
<a id="batch.resources.jobqueue.properties-11.computeenvironmentorder-1.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2364)*





___

___
<a id="batch.resources.jobqueue.properties-11.jobqueuename"></a>

###  JobQueueName

** JobQueueName**:  *`object`* 

*Defined in [spec/spec.ts:2378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2378)*




<a id="batch.resources.jobqueue.properties-11.jobqueuename.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-jobqueuename"

*Defined in [spec/spec.ts:2380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2380)*





___
<a id="batch.resources.jobqueue.properties-11.jobqueuename.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2381)*





___
<a id="batch.resources.jobqueue.properties-11.jobqueuename.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2379)*





___
<a id="batch.resources.jobqueue.properties-11.jobqueuename.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2382)*





___

___
<a id="batch.resources.jobqueue.properties-11.priority"></a>

###  Priority

** Priority**:  *`object`* 

*Defined in [spec/spec.ts:2366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2366)*




<a id="batch.resources.jobqueue.properties-11.priority.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-priority"

*Defined in [spec/spec.ts:2368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2368)*





___
<a id="batch.resources.jobqueue.properties-11.priority.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2369)*





___
<a id="batch.resources.jobqueue.properties-11.priority.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2367)*





___
<a id="batch.resources.jobqueue.properties-11.priority.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2370)*





___

___
<a id="batch.resources.jobqueue.properties-11.state-1"></a>

###  State

** State**:  *`object`* 

*Defined in [spec/spec.ts:2372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2372)*




<a id="batch.resources.jobqueue.properties-11.state-1.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html#cfn-batch-jobqueue-state"

*Defined in [spec/spec.ts:2374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2374)*





___
<a id="batch.resources.jobqueue.properties-11.state-1.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2375)*





___
<a id="batch.resources.jobqueue.properties-11.state-1.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2373)*





___
<a id="batch.resources.jobqueue.properties-11.state-1.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2376)*





___

___

___

___

___

<a id="certificatemanager"></a>

## Object literal: CertificateManager


<a id="certificatemanager.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:2726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2726)*




<a id="certificatemanager.models.domainvalidationoption"></a>

###  DomainValidationOption

** DomainValidationOption**:  *`object`* 

*Defined in [spec/spec.ts:2727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2727)*




<a id="certificatemanager.models.domainvalidationoption.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html"

*Defined in [spec/spec.ts:2728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2728)*





___
<a id="certificatemanager.models.domainvalidationoption.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CertificateManager::Certificate.DomainValidationOption"

*Defined in [spec/spec.ts:2743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2743)*





___
<a id="certificatemanager.models.domainvalidationoption.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2729)*




<a id="certificatemanager.models.domainvalidationoption.properties.domainname"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:2730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2730)*




<a id="certificatemanager.models.domainvalidationoption.properties.domainname.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html#cfn-certificatemanager-certificate-domainvalidationoptions-domainname"

*Defined in [spec/spec.ts:2731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2731)*





___
<a id="certificatemanager.models.domainvalidationoption.properties.domainname.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2732)*





___
<a id="certificatemanager.models.domainvalidationoption.properties.domainname.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2733)*





___
<a id="certificatemanager.models.domainvalidationoption.properties.domainname.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2734)*





___

___
<a id="certificatemanager.models.domainvalidationoption.properties.validationdomain"></a>

###  ValidationDomain

** ValidationDomain**:  *`object`* 

*Defined in [spec/spec.ts:2736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2736)*




<a id="certificatemanager.models.domainvalidationoption.properties.validationdomain.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-certificate-domainvalidationoption.html#cfn-certificatemanager-certificate-domainvalidationoption-validationdomain"

*Defined in [spec/spec.ts:2737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2737)*





___
<a id="certificatemanager.models.domainvalidationoption.properties.validationdomain.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2738)*





___
<a id="certificatemanager.models.domainvalidationoption.properties.validationdomain.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2739)*





___
<a id="certificatemanager.models.domainvalidationoption.properties.validationdomain.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2740)*





___

___

___

___

___
<a id="certificatemanager.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:2688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2688)*




<a id="certificatemanager.resources.certificate"></a>

###  Certificate

** Certificate**:  *`object`* 

*Defined in [spec/spec.ts:2689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2689)*




<a id="certificatemanager.resources.certificate.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html"

*Defined in [spec/spec.ts:2690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2690)*





___
<a id="certificatemanager.resources.certificate.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CertificateManager::Certificate"

*Defined in [spec/spec.ts:2723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2723)*





___
<a id="certificatemanager.resources.certificate.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2691)*




<a id="certificatemanager.resources.certificate.properties-1.domainname-1"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:2692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2692)*




<a id="certificatemanager.resources.certificate.properties-1.domainname-1.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainname"

*Defined in [spec/spec.ts:2693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2693)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainname-1.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2694)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainname-1.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2695)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainname-1.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2696)*





___

___
<a id="certificatemanager.resources.certificate.properties-1.domainvalidationoptions"></a>

###  DomainValidationOptions

** DomainValidationOptions**:  *`object`* 

*Defined in [spec/spec.ts:2698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2698)*




<a id="certificatemanager.resources.certificate.properties-1.domainvalidationoptions.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-domainvalidationoptions"

*Defined in [spec/spec.ts:2699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2699)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainvalidationoptions.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2700)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainvalidationoptions.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "DomainValidationOption"

*Defined in [spec/spec.ts:2701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2701)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainvalidationoptions.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2702)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainvalidationoptions.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2703)*





___
<a id="certificatemanager.resources.certificate.properties-1.domainvalidationoptions.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2704)*





___

___
<a id="certificatemanager.resources.certificate.properties-1.subjectalternativenames"></a>

###  SubjectAlternativeNames

** SubjectAlternativeNames**:  *`object`* 

*Defined in [spec/spec.ts:2706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2706)*




<a id="certificatemanager.resources.certificate.properties-1.subjectalternativenames.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-subjectalternativenames"

*Defined in [spec/spec.ts:2707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2707)*





___
<a id="certificatemanager.resources.certificate.properties-1.subjectalternativenames.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2708)*





___
<a id="certificatemanager.resources.certificate.properties-1.subjectalternativenames.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2709)*





___
<a id="certificatemanager.resources.certificate.properties-1.subjectalternativenames.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2710)*





___
<a id="certificatemanager.resources.certificate.properties-1.subjectalternativenames.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2711)*





___
<a id="certificatemanager.resources.certificate.properties-1.subjectalternativenames.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2712)*





___

___
<a id="certificatemanager.resources.certificate.properties-1.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:2714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2714)*




<a id="certificatemanager.resources.certificate.properties-1.tags.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-certificate.html#cfn-certificatemanager-certificate-tags"

*Defined in [spec/spec.ts:2715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2715)*





___
<a id="certificatemanager.resources.certificate.properties-1.tags.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2716)*





___
<a id="certificatemanager.resources.certificate.properties-1.tags.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:2717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2717)*





___
<a id="certificatemanager.resources.certificate.properties-1.tags.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2718)*





___
<a id="certificatemanager.resources.certificate.properties-1.tags.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2719)*





___
<a id="certificatemanager.resources.certificate.properties-1.tags.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2720)*





___

___

___

___

___

<a id="cloud9"></a>

## Object literal: Cloud9


<a id="cloud9.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:2807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2807)*




<a id="cloud9.models.repository"></a>

###  Repository

** Repository**:  *`object`* 

*Defined in [spec/spec.ts:2808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2808)*




<a id="cloud9.models.repository.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html"

*Defined in [spec/spec.ts:2809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2809)*





___
<a id="cloud9.models.repository.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cloud9::EnvironmentEC2.Repository"

*Defined in [spec/spec.ts:2824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2824)*





___
<a id="cloud9.models.repository.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2810)*




<a id="cloud9.models.repository.properties.pathcomponent"></a>

###  PathComponent

** PathComponent**:  *`object`* 

*Defined in [spec/spec.ts:2811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2811)*




<a id="cloud9.models.repository.properties.pathcomponent.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html#cfn-cloud9-environmentec2-repository-pathcomponent"

*Defined in [spec/spec.ts:2813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2813)*





___
<a id="cloud9.models.repository.properties.pathcomponent.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2814)*





___
<a id="cloud9.models.repository.properties.pathcomponent.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2812)*





___
<a id="cloud9.models.repository.properties.pathcomponent.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2815)*





___

___
<a id="cloud9.models.repository.properties.repositoryurl"></a>

###  RepositoryUrl

** RepositoryUrl**:  *`object`* 

*Defined in [spec/spec.ts:2817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2817)*




<a id="cloud9.models.repository.properties.repositoryurl.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloud9-environmentec2-repository.html#cfn-cloud9-environmentec2-repository-repositoryurl"

*Defined in [spec/spec.ts:2819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2819)*





___
<a id="cloud9.models.repository.properties.repositoryurl.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2820)*





___
<a id="cloud9.models.repository.properties.repositoryurl.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2818)*





___
<a id="cloud9.models.repository.properties.repositoryurl.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2821)*





___

___

___

___

___
<a id="cloud9.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:2748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2748)*




<a id="cloud9.resources.environmentec2"></a>

###  EnvironmentEC2

** EnvironmentEC2**:  *`object`* 

*Defined in [spec/spec.ts:2749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2749)*




<a id="cloud9.resources.environmentec2.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html"

*Defined in [spec/spec.ts:2750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2750)*





___
<a id="cloud9.resources.environmentec2.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cloud9::EnvironmentEC2"

*Defined in [spec/spec.ts:2804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2804)*





___
<a id="cloud9.resources.environmentec2.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:2751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2751)*




<a id="cloud9.resources.environmentec2.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:2752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2752)*




<a id="cloud9.resources.environmentec2.attributes.arn.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2753)*





___

___
<a id="cloud9.resources.environmentec2.attributes.name-2"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:2755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2755)*




<a id="cloud9.resources.environmentec2.attributes.name-2.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2756)*





___

___

___
<a id="cloud9.resources.environmentec2.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2759)*




<a id="cloud9.resources.environmentec2.properties-1.automaticstoptimeminutes"></a>

###  AutomaticStopTimeMinutes

** AutomaticStopTimeMinutes**:  *`object`* 

*Defined in [spec/spec.ts:2779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2779)*




<a id="cloud9.resources.environmentec2.properties-1.automaticstoptimeminutes.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-automaticstoptimeminutes"

*Defined in [spec/spec.ts:2781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2781)*





___
<a id="cloud9.resources.environmentec2.properties-1.automaticstoptimeminutes.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2782)*





___
<a id="cloud9.resources.environmentec2.properties-1.automaticstoptimeminutes.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2780)*





___
<a id="cloud9.resources.environmentec2.properties-1.automaticstoptimeminutes.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2783)*





___

___
<a id="cloud9.resources.environmentec2.properties-1.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:2773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2773)*




<a id="cloud9.resources.environmentec2.properties-1.description.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-description"

*Defined in [spec/spec.ts:2775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2775)*





___
<a id="cloud9.resources.environmentec2.properties-1.description.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2776)*





___
<a id="cloud9.resources.environmentec2.properties-1.description.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2774)*





___
<a id="cloud9.resources.environmentec2.properties-1.description.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2777)*





___

___
<a id="cloud9.resources.environmentec2.properties-1.instancetype"></a>

###  InstanceType

** InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:2791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2791)*




<a id="cloud9.resources.environmentec2.properties-1.instancetype.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-instancetype"

*Defined in [spec/spec.ts:2793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2793)*





___
<a id="cloud9.resources.environmentec2.properties-1.instancetype.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2794)*





___
<a id="cloud9.resources.environmentec2.properties-1.instancetype.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2792)*





___
<a id="cloud9.resources.environmentec2.properties-1.instancetype.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2795)*





___

___
<a id="cloud9.resources.environmentec2.properties-1.name-3"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:2797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2797)*




<a id="cloud9.resources.environmentec2.properties-1.name-3.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-name"

*Defined in [spec/spec.ts:2799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2799)*





___
<a id="cloud9.resources.environmentec2.properties-1.name-3.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2800)*





___
<a id="cloud9.resources.environmentec2.properties-1.name-3.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2798)*





___
<a id="cloud9.resources.environmentec2.properties-1.name-3.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2801)*





___

___
<a id="cloud9.resources.environmentec2.properties-1.ownerarn"></a>

###  OwnerArn

** OwnerArn**:  *`object`* 

*Defined in [spec/spec.ts:2767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2767)*




<a id="cloud9.resources.environmentec2.properties-1.ownerarn.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-ownerarn"

*Defined in [spec/spec.ts:2769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2769)*





___
<a id="cloud9.resources.environmentec2.properties-1.ownerarn.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2770)*





___
<a id="cloud9.resources.environmentec2.properties-1.ownerarn.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2768)*





___
<a id="cloud9.resources.environmentec2.properties-1.ownerarn.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2771)*





___

___
<a id="cloud9.resources.environmentec2.properties-1.repositories"></a>

###  Repositories

** Repositories**:  *`object`* 

*Defined in [spec/spec.ts:2760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2760)*




<a id="cloud9.resources.environmentec2.properties-1.repositories.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-repositories"

*Defined in [spec/spec.ts:2763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2763)*





___
<a id="cloud9.resources.environmentec2.properties-1.repositories.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Repository"

*Defined in [spec/spec.ts:2764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2764)*





___
<a id="cloud9.resources.environmentec2.properties-1.repositories.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2762)*





___
<a id="cloud9.resources.environmentec2.properties-1.repositories.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2761)*





___
<a id="cloud9.resources.environmentec2.properties-1.repositories.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2765)*





___

___
<a id="cloud9.resources.environmentec2.properties-1.subnetid"></a>

###  SubnetId

** SubnetId**:  *`object`* 

*Defined in [spec/spec.ts:2785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2785)*




<a id="cloud9.resources.environmentec2.properties-1.subnetid.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloud9-environmentec2.html#cfn-cloud9-environmentec2-subnetid"

*Defined in [spec/spec.ts:2787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2787)*





___
<a id="cloud9.resources.environmentec2.properties-1.subnetid.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2788)*





___
<a id="cloud9.resources.environmentec2.properties-1.subnetid.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2786)*





___
<a id="cloud9.resources.environmentec2.properties-1.subnetid.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2789)*





___

___

___

___

___

<a id="cloudformation"></a>

## Object literal: CloudFormation


<a id="cloudformation.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:2920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2920)*


#### Type declaration





___
<a id="cloudformation.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:2829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2829)*




<a id="cloudformation.resources.customresource"></a>

###  CustomResource

** CustomResource**:  *`object`* 

*Defined in [spec/spec.ts:2830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2830)*




<a id="cloudformation.resources.customresource.additionalproperties"></a>

###  AdditionalProperties

**●  AdditionalProperties**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2831)*





___
<a id="cloudformation.resources.customresource.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html"

*Defined in [spec/spec.ts:2832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2832)*





___
<a id="cloudformation.resources.customresource.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFormation::CustomResource"

*Defined in [spec/spec.ts:2841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2841)*





___
<a id="cloudformation.resources.customresource.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2833)*




<a id="cloudformation.resources.customresource.properties.servicetoken"></a>

###  ServiceToken

** ServiceToken**:  *`object`* 

*Defined in [spec/spec.ts:2834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2834)*




<a id="cloudformation.resources.customresource.properties.servicetoken.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken"

*Defined in [spec/spec.ts:2835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2835)*





___
<a id="cloudformation.resources.customresource.properties.servicetoken.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2836)*





___
<a id="cloudformation.resources.customresource.properties.servicetoken.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2837)*





___
<a id="cloudformation.resources.customresource.properties.servicetoken.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:2838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2838)*





___

___

___

___
<a id="cloudformation.resources.stack"></a>

###  Stack

** Stack**:  *`object`* 

*Defined in [spec/spec.ts:2843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2843)*




<a id="cloudformation.resources.stack.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html"

*Defined in [spec/spec.ts:2844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2844)*





___
<a id="cloudformation.resources.stack.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFormation::Stack"

*Defined in [spec/spec.ts:2883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2883)*





___
<a id="cloudformation.resources.stack.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2845)*




<a id="cloudformation.resources.stack.properties-1.notificationarns"></a>

###  NotificationARNs

** NotificationARNs**:  *`object`* 

*Defined in [spec/spec.ts:2846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2846)*




<a id="cloudformation.resources.stack.properties-1.notificationarns.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-notificationarns"

*Defined in [spec/spec.ts:2847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2847)*





___
<a id="cloudformation.resources.stack.properties-1.notificationarns.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2848)*





___
<a id="cloudformation.resources.stack.properties-1.notificationarns.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2849)*





___
<a id="cloudformation.resources.stack.properties-1.notificationarns.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2850)*





___
<a id="cloudformation.resources.stack.properties-1.notificationarns.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2851)*





___
<a id="cloudformation.resources.stack.properties-1.notificationarns.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2852)*





___

___
<a id="cloudformation.resources.stack.properties-1.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:2854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2854)*




<a id="cloudformation.resources.stack.properties-1.parameters.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-parameters"

*Defined in [spec/spec.ts:2855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2855)*





___
<a id="cloudformation.resources.stack.properties-1.parameters.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2856)*





___
<a id="cloudformation.resources.stack.properties-1.parameters.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2857)*





___
<a id="cloudformation.resources.stack.properties-1.parameters.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2858)*





___
<a id="cloudformation.resources.stack.properties-1.parameters.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:2859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2859)*





___
<a id="cloudformation.resources.stack.properties-1.parameters.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2860)*





___

___
<a id="cloudformation.resources.stack.properties-1.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:2862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2862)*




<a id="cloudformation.resources.stack.properties-1.tags.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-tags"

*Defined in [spec/spec.ts:2863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2863)*





___
<a id="cloudformation.resources.stack.properties-1.tags.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2864)*





___
<a id="cloudformation.resources.stack.properties-1.tags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:2865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2865)*





___
<a id="cloudformation.resources.stack.properties-1.tags.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2866)*





___
<a id="cloudformation.resources.stack.properties-1.tags.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2867)*





___
<a id="cloudformation.resources.stack.properties-1.tags.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2868)*





___

___
<a id="cloudformation.resources.stack.properties-1.templateurl"></a>

###  TemplateURL

** TemplateURL**:  *`object`* 

*Defined in [spec/spec.ts:2870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2870)*




<a id="cloudformation.resources.stack.properties-1.templateurl.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-templateurl"

*Defined in [spec/spec.ts:2871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2871)*





___
<a id="cloudformation.resources.stack.properties-1.templateurl.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2872)*





___
<a id="cloudformation.resources.stack.properties-1.templateurl.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2873)*





___
<a id="cloudformation.resources.stack.properties-1.templateurl.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2874)*





___

___
<a id="cloudformation.resources.stack.properties-1.timeoutinminutes"></a>

###  TimeoutInMinutes

** TimeoutInMinutes**:  *`object`* 

*Defined in [spec/spec.ts:2876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2876)*




<a id="cloudformation.resources.stack.properties-1.timeoutinminutes.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html#cfn-cloudformation-stack-timeoutinminutes"

*Defined in [spec/spec.ts:2877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2877)*





___
<a id="cloudformation.resources.stack.properties-1.timeoutinminutes.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2878)*





___
<a id="cloudformation.resources.stack.properties-1.timeoutinminutes.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2879)*





___
<a id="cloudformation.resources.stack.properties-1.timeoutinminutes.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2880)*





___

___

___

___
<a id="cloudformation.resources.waitcondition"></a>

###  WaitCondition

** WaitCondition**:  *`object`* 

*Defined in [spec/spec.ts:2885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2885)*




<a id="cloudformation.resources.waitcondition.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html"

*Defined in [spec/spec.ts:2891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2891)*





___
<a id="cloudformation.resources.waitcondition.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFormation::WaitCondition"

*Defined in [spec/spec.ts:2912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2912)*





___
<a id="cloudformation.resources.waitcondition.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:2886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2886)*




<a id="cloudformation.resources.waitcondition.attributes.data"></a>

###  Data

** Data**:  *`object`* 

*Defined in [spec/spec.ts:2887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2887)*




<a id="cloudformation.resources.waitcondition.attributes.data.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:2888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2888)*





___

___

___
<a id="cloudformation.resources.waitcondition.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2892)*




<a id="cloudformation.resources.waitcondition.properties-2.count"></a>

###  Count

** Count**:  *`object`* 

*Defined in [spec/spec.ts:2893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2893)*




<a id="cloudformation.resources.waitcondition.properties-2.count.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-count"

*Defined in [spec/spec.ts:2894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2894)*





___
<a id="cloudformation.resources.waitcondition.properties-2.count.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:2895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2895)*





___
<a id="cloudformation.resources.waitcondition.properties-2.count.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2896)*





___
<a id="cloudformation.resources.waitcondition.properties-2.count.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2897)*





___

___
<a id="cloudformation.resources.waitcondition.properties-2.handle"></a>

###  Handle

** Handle**:  *`object`* 

*Defined in [spec/spec.ts:2899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2899)*




<a id="cloudformation.resources.waitcondition.properties-2.handle.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-handle"

*Defined in [spec/spec.ts:2900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2900)*





___
<a id="cloudformation.resources.waitcondition.properties-2.handle.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2901)*





___
<a id="cloudformation.resources.waitcondition.properties-2.handle.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2902)*





___
<a id="cloudformation.resources.waitcondition.properties-2.handle.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2903)*





___

___
<a id="cloudformation.resources.waitcondition.properties-2.timeout"></a>

###  Timeout

** Timeout**:  *`object`* 

*Defined in [spec/spec.ts:2905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2905)*




<a id="cloudformation.resources.waitcondition.properties-2.timeout.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitcondition.html#cfn-waitcondition-timeout"

*Defined in [spec/spec.ts:2906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2906)*





___
<a id="cloudformation.resources.waitcondition.properties-2.timeout.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2907)*





___
<a id="cloudformation.resources.waitcondition.properties-2.timeout.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2908)*





___
<a id="cloudformation.resources.waitcondition.properties-2.timeout.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2909)*





___

___

___

___
<a id="cloudformation.resources.waitconditionhandle"></a>

###  WaitConditionHandle

** WaitConditionHandle**:  *`object`* 

*Defined in [spec/spec.ts:2914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2914)*




<a id="cloudformation.resources.waitconditionhandle.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waitconditionhandle.html"

*Defined in [spec/spec.ts:2915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2915)*





___
<a id="cloudformation.resources.waitconditionhandle.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFormation::WaitConditionHandle"

*Defined in [spec/spec.ts:2917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2917)*





___
<a id="cloudformation.resources.waitconditionhandle.properties-3"></a>

###  Properties

**●  Properties**:  *`object`* 

*Defined in [spec/spec.ts:2916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2916)*


#### Type declaration





___

___

___

<a id="cloudfront"></a>

## Object literal: CloudFront


<a id="cloudfront.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:2990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2990)*




<a id="cloudfront.models.cachebehavior"></a>

###  CacheBehavior

** CacheBehavior**:  *`object`* 

*Defined in [spec/spec.ts:3003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3003)*




<a id="cloudfront.models.cachebehavior.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html"

*Defined in [spec/spec.ts:3004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3004)*





___
<a id="cloudfront.models.cachebehavior.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.CacheBehavior"

*Defined in [spec/spec.ts:3089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3089)*





___
<a id="cloudfront.models.cachebehavior.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3005)*




<a id="cloudfront.models.cachebehavior.properties.allowedmethods"></a>

###  AllowedMethods

** AllowedMethods**:  *`object`* 

*Defined in [spec/spec.ts:3044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3044)*




<a id="cloudfront.models.cachebehavior.properties.allowedmethods.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-allowedmethods"

*Defined in [spec/spec.ts:3048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3048)*





___
<a id="cloudfront.models.cachebehavior.properties.allowedmethods.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3045)*





___
<a id="cloudfront.models.cachebehavior.properties.allowedmethods.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3047)*





___
<a id="cloudfront.models.cachebehavior.properties.allowedmethods.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3046)*





___
<a id="cloudfront.models.cachebehavior.properties.allowedmethods.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3049)*





___

___
<a id="cloudfront.models.cachebehavior.properties.cachedmethods"></a>

###  CachedMethods

** CachedMethods**:  *`object`* 

*Defined in [spec/spec.ts:3057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3057)*




<a id="cloudfront.models.cachebehavior.properties.cachedmethods.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-cachedmethods"

*Defined in [spec/spec.ts:3061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3061)*





___
<a id="cloudfront.models.cachebehavior.properties.cachedmethods.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3058)*





___
<a id="cloudfront.models.cachebehavior.properties.cachedmethods.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3060)*





___
<a id="cloudfront.models.cachebehavior.properties.cachedmethods.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3059)*





___
<a id="cloudfront.models.cachebehavior.properties.cachedmethods.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3062)*





___

___
<a id="cloudfront.models.cachebehavior.properties.compress"></a>

###  Compress

** Compress**:  *`object`* 

*Defined in [spec/spec.ts:3006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3006)*




<a id="cloudfront.models.cachebehavior.properties.compress.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-compress"

*Defined in [spec/spec.ts:3008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3008)*





___
<a id="cloudfront.models.cachebehavior.properties.compress.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3009)*





___
<a id="cloudfront.models.cachebehavior.properties.compress.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3007)*





___
<a id="cloudfront.models.cachebehavior.properties.compress.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3010)*





___

___
<a id="cloudfront.models.cachebehavior.properties.defaultttl"></a>

###  DefaultTTL

** DefaultTTL**:  *`object`* 

*Defined in [spec/spec.ts:3038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3038)*




<a id="cloudfront.models.cachebehavior.properties.defaultttl.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-defaultttl"

*Defined in [spec/spec.ts:3040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3040)*





___
<a id="cloudfront.models.cachebehavior.properties.defaultttl.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3041)*





___
<a id="cloudfront.models.cachebehavior.properties.defaultttl.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3039)*





___
<a id="cloudfront.models.cachebehavior.properties.defaultttl.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3042)*





___

___
<a id="cloudfront.models.cachebehavior.properties.forwardedvalues"></a>

###  ForwardedValues

** ForwardedValues**:  *`object`* 

*Defined in [spec/spec.ts:3070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3070)*




<a id="cloudfront.models.cachebehavior.properties.forwardedvalues.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-forwardedvalues"

*Defined in [spec/spec.ts:3073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3073)*





___
<a id="cloudfront.models.cachebehavior.properties.forwardedvalues.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3072)*





___
<a id="cloudfront.models.cachebehavior.properties.forwardedvalues.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "ForwardedValues"

*Defined in [spec/spec.ts:3071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3071)*





___
<a id="cloudfront.models.cachebehavior.properties.forwardedvalues.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3074)*





___

___
<a id="cloudfront.models.cachebehavior.properties.lambdafunctionassociations"></a>

###  LambdaFunctionAssociations

** LambdaFunctionAssociations**:  *`object`* 

*Defined in [spec/spec.ts:3012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3012)*




<a id="cloudfront.models.cachebehavior.properties.lambdafunctionassociations.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-lambdafunctionassociations"

*Defined in [spec/spec.ts:3015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3015)*





___
<a id="cloudfront.models.cachebehavior.properties.lambdafunctionassociations.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "LambdaFunctionAssociation"

*Defined in [spec/spec.ts:3016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3016)*





___
<a id="cloudfront.models.cachebehavior.properties.lambdafunctionassociations.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3014)*





___
<a id="cloudfront.models.cachebehavior.properties.lambdafunctionassociations.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3013)*





___
<a id="cloudfront.models.cachebehavior.properties.lambdafunctionassociations.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3017)*





___

___
<a id="cloudfront.models.cachebehavior.properties.maxttl"></a>

###  MaxTTL

** MaxTTL**:  *`object`* 

*Defined in [spec/spec.ts:3082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3082)*




<a id="cloudfront.models.cachebehavior.properties.maxttl.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-maxttl"

*Defined in [spec/spec.ts:3084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3084)*





___
<a id="cloudfront.models.cachebehavior.properties.maxttl.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3085)*





___
<a id="cloudfront.models.cachebehavior.properties.maxttl.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3083)*





___
<a id="cloudfront.models.cachebehavior.properties.maxttl.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3086)*





___

___
<a id="cloudfront.models.cachebehavior.properties.minttl"></a>

###  MinTTL

** MinTTL**:  *`object`* 

*Defined in [spec/spec.ts:3076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3076)*




<a id="cloudfront.models.cachebehavior.properties.minttl.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-minttl"

*Defined in [spec/spec.ts:3078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3078)*





___
<a id="cloudfront.models.cachebehavior.properties.minttl.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3079)*





___
<a id="cloudfront.models.cachebehavior.properties.minttl.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3077)*





___
<a id="cloudfront.models.cachebehavior.properties.minttl.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3080)*





___

___
<a id="cloudfront.models.cachebehavior.properties.pathpattern"></a>

###  PathPattern

** PathPattern**:  *`object`* 

*Defined in [spec/spec.ts:3051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3051)*




<a id="cloudfront.models.cachebehavior.properties.pathpattern.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-pathpattern"

*Defined in [spec/spec.ts:3053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3053)*





___
<a id="cloudfront.models.cachebehavior.properties.pathpattern.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3054)*





___
<a id="cloudfront.models.cachebehavior.properties.pathpattern.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3052)*





___
<a id="cloudfront.models.cachebehavior.properties.pathpattern.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3055)*





___

___
<a id="cloudfront.models.cachebehavior.properties.smoothstreaming"></a>

###  SmoothStreaming

** SmoothStreaming**:  *`object`* 

*Defined in [spec/spec.ts:3064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3064)*




<a id="cloudfront.models.cachebehavior.properties.smoothstreaming.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-smoothstreaming"

*Defined in [spec/spec.ts:3066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3066)*





___
<a id="cloudfront.models.cachebehavior.properties.smoothstreaming.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3067)*





___
<a id="cloudfront.models.cachebehavior.properties.smoothstreaming.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3065)*





___
<a id="cloudfront.models.cachebehavior.properties.smoothstreaming.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3068)*





___

___
<a id="cloudfront.models.cachebehavior.properties.targetoriginid"></a>

###  TargetOriginId

** TargetOriginId**:  *`object`* 

*Defined in [spec/spec.ts:3019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3019)*




<a id="cloudfront.models.cachebehavior.properties.targetoriginid.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-targetoriginid"

*Defined in [spec/spec.ts:3021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3021)*





___
<a id="cloudfront.models.cachebehavior.properties.targetoriginid.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3022)*





___
<a id="cloudfront.models.cachebehavior.properties.targetoriginid.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3020)*





___
<a id="cloudfront.models.cachebehavior.properties.targetoriginid.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3023)*





___

___
<a id="cloudfront.models.cachebehavior.properties.trustedsigners"></a>

###  TrustedSigners

** TrustedSigners**:  *`object`* 

*Defined in [spec/spec.ts:3031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3031)*




<a id="cloudfront.models.cachebehavior.properties.trustedsigners.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-trustedsigners"

*Defined in [spec/spec.ts:3035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3035)*





___
<a id="cloudfront.models.cachebehavior.properties.trustedsigners.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3032)*





___
<a id="cloudfront.models.cachebehavior.properties.trustedsigners.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3034)*





___
<a id="cloudfront.models.cachebehavior.properties.trustedsigners.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3033)*





___
<a id="cloudfront.models.cachebehavior.properties.trustedsigners.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3036)*





___

___
<a id="cloudfront.models.cachebehavior.properties.viewerprotocolpolicy"></a>

###  ViewerProtocolPolicy

** ViewerProtocolPolicy**:  *`object`* 

*Defined in [spec/spec.ts:3025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3025)*




<a id="cloudfront.models.cachebehavior.properties.viewerprotocolpolicy.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cachebehavior.html#cfn-cloudfront-distribution-cachebehavior-viewerprotocolpolicy"

*Defined in [spec/spec.ts:3027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3027)*





___
<a id="cloudfront.models.cachebehavior.properties.viewerprotocolpolicy.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3028)*





___
<a id="cloudfront.models.cachebehavior.properties.viewerprotocolpolicy.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3026)*





___
<a id="cloudfront.models.cachebehavior.properties.viewerprotocolpolicy.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3029)*





___

___

___

___
<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig"></a>

###  CloudFrontOriginAccessIdentityConfig

** CloudFrontOriginAccessIdentityConfig**:  *`object`* 

*Defined in [spec/spec.ts:2991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2991)*




<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html"

*Defined in [spec/spec.ts:2992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2992)*





___
<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::CloudFrontOriginAccessIdentity.CloudFrontOriginAccessIdentityConfig"

*Defined in [spec/spec.ts:3001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3001)*





___
<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2993)*




<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.properties-1.comment"></a>

###  Comment

** Comment**:  *`object`* 

*Defined in [spec/spec.ts:2994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2994)*




<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.properties-1.comment.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig-comment"

*Defined in [spec/spec.ts:2996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2996)*





___
<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.properties-1.comment.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2997)*





___
<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.properties-1.comment.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2995)*





___
<a id="cloudfront.models.cloudfrontoriginaccessidentityconfig.properties-1.comment.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2998)*





___

___

___

___
<a id="cloudfront.models.cookies"></a>

###  Cookies

** Cookies**:  *`object`* 

*Defined in [spec/spec.ts:3091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3091)*




<a id="cloudfront.models.cookies.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html"

*Defined in [spec/spec.ts:3092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3092)*





___
<a id="cloudfront.models.cookies.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.Cookies"

*Defined in [spec/spec.ts:3108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3108)*





___
<a id="cloudfront.models.cookies.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3093)*




<a id="cloudfront.models.cookies.properties-2.forward"></a>

###  Forward

** Forward**:  *`object`* 

*Defined in [spec/spec.ts:3101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3101)*




<a id="cloudfront.models.cookies.properties-2.forward.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-forward"

*Defined in [spec/spec.ts:3103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3103)*





___
<a id="cloudfront.models.cookies.properties-2.forward.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3104)*





___
<a id="cloudfront.models.cookies.properties-2.forward.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3102)*





___
<a id="cloudfront.models.cookies.properties-2.forward.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3105)*





___

___
<a id="cloudfront.models.cookies.properties-2.whitelistednames"></a>

###  WhitelistedNames

** WhitelistedNames**:  *`object`* 

*Defined in [spec/spec.ts:3094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3094)*




<a id="cloudfront.models.cookies.properties-2.whitelistednames.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-cookies.html#cfn-cloudfront-distribution-cookies-whitelistednames"

*Defined in [spec/spec.ts:3098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3098)*





___
<a id="cloudfront.models.cookies.properties-2.whitelistednames.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3095)*





___
<a id="cloudfront.models.cookies.properties-2.whitelistednames.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3097)*





___
<a id="cloudfront.models.cookies.properties-2.whitelistednames.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3096)*





___
<a id="cloudfront.models.cookies.properties-2.whitelistednames.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3099)*





___

___

___

___
<a id="cloudfront.models.customerrorresponse"></a>

###  CustomErrorResponse

** CustomErrorResponse**:  *`object`* 

*Defined in [spec/spec.ts:3110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3110)*




<a id="cloudfront.models.customerrorresponse.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customerrorresponse.html"

*Defined in [spec/spec.ts:3111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3111)*





___
<a id="cloudfront.models.customerrorresponse.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.CustomErrorResponse"

*Defined in [spec/spec.ts:3138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3138)*





___
<a id="cloudfront.models.customerrorresponse.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3112)*




<a id="cloudfront.models.customerrorresponse.properties-3.errorcachingminttl"></a>

###  ErrorCachingMinTTL

** ErrorCachingMinTTL**:  *`object`* 

*Defined in [spec/spec.ts:3119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3119)*




<a id="cloudfront.models.customerrorresponse.properties-3.errorcachingminttl.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customerrorresponse.html#cfn-cloudfront-distribution-customerrorresponse-errorcachingminttl"

*Defined in [spec/spec.ts:3121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3121)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.errorcachingminttl.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3122)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.errorcachingminttl.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3120)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.errorcachingminttl.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3123)*





___

___
<a id="cloudfront.models.customerrorresponse.properties-3.errorcode"></a>

###  ErrorCode

** ErrorCode**:  *`object`* 

*Defined in [spec/spec.ts:3125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3125)*




<a id="cloudfront.models.customerrorresponse.properties-3.errorcode.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customerrorresponse.html#cfn-cloudfront-distribution-customerrorresponse-errorcode"

*Defined in [spec/spec.ts:3127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3127)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.errorcode.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3128)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.errorcode.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3126)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.errorcode.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3129)*





___

___
<a id="cloudfront.models.customerrorresponse.properties-3.responsecode"></a>

###  ResponseCode

** ResponseCode**:  *`object`* 

*Defined in [spec/spec.ts:3113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3113)*




<a id="cloudfront.models.customerrorresponse.properties-3.responsecode.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customerrorresponse.html#cfn-cloudfront-distribution-customerrorresponse-responsecode"

*Defined in [spec/spec.ts:3115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3115)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.responsecode.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3116)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.responsecode.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3114)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.responsecode.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3117)*





___

___
<a id="cloudfront.models.customerrorresponse.properties-3.responsepagepath"></a>

###  ResponsePagePath

** ResponsePagePath**:  *`object`* 

*Defined in [spec/spec.ts:3131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3131)*




<a id="cloudfront.models.customerrorresponse.properties-3.responsepagepath.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customerrorresponse.html#cfn-cloudfront-distribution-customerrorresponse-responsepagepath"

*Defined in [spec/spec.ts:3133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3133)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.responsepagepath.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3134)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.responsepagepath.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3132)*





___
<a id="cloudfront.models.customerrorresponse.properties-3.responsepagepath.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3135)*





___

___

___

___
<a id="cloudfront.models.customoriginconfig"></a>

###  CustomOriginConfig

** CustomOriginConfig**:  *`object`* 

*Defined in [spec/spec.ts:3140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3140)*




<a id="cloudfront.models.customoriginconfig.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html"

*Defined in [spec/spec.ts:3141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3141)*





___
<a id="cloudfront.models.customoriginconfig.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.CustomOriginConfig"

*Defined in [spec/spec.ts:3181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3181)*





___
<a id="cloudfront.models.customoriginconfig.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3142)*




<a id="cloudfront.models.customoriginconfig.properties-4.httpport"></a>

###  HTTPPort

** HTTPPort**:  *`object`* 

*Defined in [spec/spec.ts:3168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3168)*




<a id="cloudfront.models.customoriginconfig.properties-4.httpport.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-httpport"

*Defined in [spec/spec.ts:3170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3170)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.httpport.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3171)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.httpport.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3169)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.httpport.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3172)*





___

___
<a id="cloudfront.models.customoriginconfig.properties-4.httpsport"></a>

###  HTTPSPort

** HTTPSPort**:  *`object`* 

*Defined in [spec/spec.ts:3149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3149)*




<a id="cloudfront.models.customoriginconfig.properties-4.httpsport.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-httpsport"

*Defined in [spec/spec.ts:3151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3151)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.httpsport.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3152)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.httpsport.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3150)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.httpsport.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3153)*





___

___
<a id="cloudfront.models.customoriginconfig.properties-4.originkeepalivetimeout"></a>

###  OriginKeepaliveTimeout

** OriginKeepaliveTimeout**:  *`object`* 

*Defined in [spec/spec.ts:3155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3155)*




<a id="cloudfront.models.customoriginconfig.properties-4.originkeepalivetimeout.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originkeepalivetimeout"

*Defined in [spec/spec.ts:3157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3157)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originkeepalivetimeout.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3158)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originkeepalivetimeout.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3156)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originkeepalivetimeout.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3159)*





___

___
<a id="cloudfront.models.customoriginconfig.properties-4.originprotocolpolicy"></a>

###  OriginProtocolPolicy

** OriginProtocolPolicy**:  *`object`* 

*Defined in [spec/spec.ts:3174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3174)*




<a id="cloudfront.models.customoriginconfig.properties-4.originprotocolpolicy.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originprotocolpolicy"

*Defined in [spec/spec.ts:3176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3176)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originprotocolpolicy.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3177)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originprotocolpolicy.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3175)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originprotocolpolicy.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3178)*





___

___
<a id="cloudfront.models.customoriginconfig.properties-4.originreadtimeout"></a>

###  OriginReadTimeout

** OriginReadTimeout**:  *`object`* 

*Defined in [spec/spec.ts:3143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3143)*




<a id="cloudfront.models.customoriginconfig.properties-4.originreadtimeout.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originreadtimeout"

*Defined in [spec/spec.ts:3145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3145)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originreadtimeout.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3146)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originreadtimeout.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3144)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originreadtimeout.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3147)*





___

___
<a id="cloudfront.models.customoriginconfig.properties-4.originsslprotocols"></a>

###  OriginSSLProtocols

** OriginSSLProtocols**:  *`object`* 

*Defined in [spec/spec.ts:3161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3161)*




<a id="cloudfront.models.customoriginconfig.properties-4.originsslprotocols.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originsslprotocols"

*Defined in [spec/spec.ts:3165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3165)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originsslprotocols.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3162)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originsslprotocols.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3164)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originsslprotocols.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3163)*





___
<a id="cloudfront.models.customoriginconfig.properties-4.originsslprotocols.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3166)*





___

___

___

___
<a id="cloudfront.models.defaultcachebehavior"></a>

###  DefaultCacheBehavior

** DefaultCacheBehavior**:  *`object`* 

*Defined in [spec/spec.ts:3183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3183)*




<a id="cloudfront.models.defaultcachebehavior.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html"

*Defined in [spec/spec.ts:3184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3184)*





___
<a id="cloudfront.models.defaultcachebehavior.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.DefaultCacheBehavior"

*Defined in [spec/spec.ts:3263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3263)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3185)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.allowedmethods-1"></a>

###  AllowedMethods

** AllowedMethods**:  *`object`* 

*Defined in [spec/spec.ts:3192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3192)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.allowedmethods-1.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-allowedmethods"

*Defined in [spec/spec.ts:3196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3196)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.allowedmethods-1.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3193)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.allowedmethods-1.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3195)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.allowedmethods-1.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3194)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.allowedmethods-1.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3197)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.cachedmethods-1"></a>

###  CachedMethods

** CachedMethods**:  *`object`* 

*Defined in [spec/spec.ts:3199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3199)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.cachedmethods-1.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-cachedmethods"

*Defined in [spec/spec.ts:3203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3203)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.cachedmethods-1.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3200)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.cachedmethods-1.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3202)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.cachedmethods-1.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3201)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.cachedmethods-1.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3204)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.compress-1"></a>

###  Compress

** Compress**:  *`object`* 

*Defined in [spec/spec.ts:3186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3186)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.compress-1.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-compress"

*Defined in [spec/spec.ts:3188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3188)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.compress-1.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3189)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.compress-1.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3187)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.compress-1.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3190)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.defaultttl-1"></a>

###  DefaultTTL

** DefaultTTL**:  *`object`* 

*Defined in [spec/spec.ts:3256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3256)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.defaultttl-1.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-defaultttl"

*Defined in [spec/spec.ts:3258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3258)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.defaultttl-1.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3259)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.defaultttl-1.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3257)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.defaultttl-1.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3260)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.forwardedvalues-1"></a>

###  ForwardedValues

** ForwardedValues**:  *`object`* 

*Defined in [spec/spec.ts:3231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3231)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.forwardedvalues-1.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-forwardedvalues"

*Defined in [spec/spec.ts:3234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3234)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.forwardedvalues-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3233)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.forwardedvalues-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "ForwardedValues"

*Defined in [spec/spec.ts:3232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3232)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.forwardedvalues-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3235)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.lambdafunctionassociations-1"></a>

###  LambdaFunctionAssociations

** LambdaFunctionAssociations**:  *`object`* 

*Defined in [spec/spec.ts:3206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3206)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.lambdafunctionassociations-1.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-lambdafunctionassociations"

*Defined in [spec/spec.ts:3209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3209)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.lambdafunctionassociations-1.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "LambdaFunctionAssociation"

*Defined in [spec/spec.ts:3210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3210)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.lambdafunctionassociations-1.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3208)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.lambdafunctionassociations-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3207)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.lambdafunctionassociations-1.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3211)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.maxttl-1"></a>

###  MaxTTL

** MaxTTL**:  *`object`* 

*Defined in [spec/spec.ts:3243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3243)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.maxttl-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-maxttl"

*Defined in [spec/spec.ts:3245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3245)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.maxttl-1.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3246)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.maxttl-1.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3244)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.maxttl-1.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3247)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.minttl-1"></a>

###  MinTTL

** MinTTL**:  *`object`* 

*Defined in [spec/spec.ts:3237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3237)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.minttl-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-minttl"

*Defined in [spec/spec.ts:3239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3239)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.minttl-1.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3240)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.minttl-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3238)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.minttl-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3241)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.smoothstreaming-1"></a>

###  SmoothStreaming

** SmoothStreaming**:  *`object`* 

*Defined in [spec/spec.ts:3213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3213)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.smoothstreaming-1.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-smoothstreaming"

*Defined in [spec/spec.ts:3215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3215)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.smoothstreaming-1.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3216)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.smoothstreaming-1.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3214)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.smoothstreaming-1.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3217)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.targetoriginid-1"></a>

###  TargetOriginId

** TargetOriginId**:  *`object`* 

*Defined in [spec/spec.ts:3219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3219)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.targetoriginid-1.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-targetoriginid"

*Defined in [spec/spec.ts:3221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3221)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.targetoriginid-1.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3222)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.targetoriginid-1.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3220)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.targetoriginid-1.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3223)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.trustedsigners-1"></a>

###  TrustedSigners

** TrustedSigners**:  *`object`* 

*Defined in [spec/spec.ts:3249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3249)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.trustedsigners-1.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-trustedsigners"

*Defined in [spec/spec.ts:3253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3253)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.trustedsigners-1.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3250)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.trustedsigners-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3252)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.trustedsigners-1.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3251)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.trustedsigners-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3254)*





___

___
<a id="cloudfront.models.defaultcachebehavior.properties-5.viewerprotocolpolicy-1"></a>

###  ViewerProtocolPolicy

** ViewerProtocolPolicy**:  *`object`* 

*Defined in [spec/spec.ts:3225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3225)*




<a id="cloudfront.models.defaultcachebehavior.properties-5.viewerprotocolpolicy-1.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-defaultcachebehavior.html#cfn-cloudfront-distribution-defaultcachebehavior-viewerprotocolpolicy"

*Defined in [spec/spec.ts:3227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3227)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.viewerprotocolpolicy-1.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3228)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.viewerprotocolpolicy-1.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3226)*





___
<a id="cloudfront.models.defaultcachebehavior.properties-5.viewerprotocolpolicy-1.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3229)*





___

___

___

___
<a id="cloudfront.models.distributionconfig"></a>

###  DistributionConfig

** DistributionConfig**:  *`object`* 

*Defined in [spec/spec.ts:3265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3265)*




<a id="cloudfront.models.distributionconfig.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html"

*Defined in [spec/spec.ts:3266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3266)*





___
<a id="cloudfront.models.distributionconfig.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.DistributionConfig"

*Defined in [spec/spec.ts:3363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3363)*





___
<a id="cloudfront.models.distributionconfig.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3267)*




<a id="cloudfront.models.distributionconfig.properties-6.aliases"></a>

###  Aliases

** Aliases**:  *`object`* 

*Defined in [spec/spec.ts:3324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3324)*




<a id="cloudfront.models.distributionconfig.properties-6.aliases.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-aliases"

*Defined in [spec/spec.ts:3328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3328)*





___
<a id="cloudfront.models.distributionconfig.properties-6.aliases.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3325)*





___
<a id="cloudfront.models.distributionconfig.properties-6.aliases.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3327)*





___
<a id="cloudfront.models.distributionconfig.properties-6.aliases.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3326)*





___
<a id="cloudfront.models.distributionconfig.properties-6.aliases.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3329)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.cachebehaviors"></a>

###  CacheBehaviors

** CacheBehaviors**:  *`object`* 

*Defined in [spec/spec.ts:3355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3355)*




<a id="cloudfront.models.distributionconfig.properties-6.cachebehaviors.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-cachebehaviors"

*Defined in [spec/spec.ts:3358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3358)*





___
<a id="cloudfront.models.distributionconfig.properties-6.cachebehaviors.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "CacheBehavior"

*Defined in [spec/spec.ts:3359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3359)*





___
<a id="cloudfront.models.distributionconfig.properties-6.cachebehaviors.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3357)*





___
<a id="cloudfront.models.distributionconfig.properties-6.cachebehaviors.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3356)*





___
<a id="cloudfront.models.distributionconfig.properties-6.cachebehaviors.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3360)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.comment-1"></a>

###  Comment

** Comment**:  *`object`* 

*Defined in [spec/spec.ts:3274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3274)*




<a id="cloudfront.models.distributionconfig.properties-6.comment-1.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-comment"

*Defined in [spec/spec.ts:3276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3276)*





___
<a id="cloudfront.models.distributionconfig.properties-6.comment-1.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3277)*





___
<a id="cloudfront.models.distributionconfig.properties-6.comment-1.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3275)*





___
<a id="cloudfront.models.distributionconfig.properties-6.comment-1.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3278)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.customerrorresponses"></a>

###  CustomErrorResponses

** CustomErrorResponses**:  *`object`* 

*Defined in [spec/spec.ts:3311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3311)*




<a id="cloudfront.models.distributionconfig.properties-6.customerrorresponses.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-customerrorresponses"

*Defined in [spec/spec.ts:3314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3314)*





___
<a id="cloudfront.models.distributionconfig.properties-6.customerrorresponses.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "CustomErrorResponse"

*Defined in [spec/spec.ts:3315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3315)*





___
<a id="cloudfront.models.distributionconfig.properties-6.customerrorresponses.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3313)*





___
<a id="cloudfront.models.distributionconfig.properties-6.customerrorresponses.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3312)*





___
<a id="cloudfront.models.distributionconfig.properties-6.customerrorresponses.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3316)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.defaultcachebehavior-1"></a>

###  DefaultCacheBehavior

** DefaultCacheBehavior**:  *`object`* 

*Defined in [spec/spec.ts:3305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3305)*




<a id="cloudfront.models.distributionconfig.properties-6.defaultcachebehavior-1.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultcachebehavior"

*Defined in [spec/spec.ts:3308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3308)*





___
<a id="cloudfront.models.distributionconfig.properties-6.defaultcachebehavior-1.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3307)*





___
<a id="cloudfront.models.distributionconfig.properties-6.defaultcachebehavior-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "DefaultCacheBehavior"

*Defined in [spec/spec.ts:3306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3306)*





___
<a id="cloudfront.models.distributionconfig.properties-6.defaultcachebehavior-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3309)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.defaultrootobject"></a>

###  DefaultRootObject

** DefaultRootObject**:  *`object`* 

*Defined in [spec/spec.ts:3280](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3280)*




<a id="cloudfront.models.distributionconfig.properties-6.defaultrootobject.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-defaultrootobject"

*Defined in [spec/spec.ts:3282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3282)*





___
<a id="cloudfront.models.distributionconfig.properties-6.defaultrootobject.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3283)*





___
<a id="cloudfront.models.distributionconfig.properties-6.defaultrootobject.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3281)*





___
<a id="cloudfront.models.distributionconfig.properties-6.defaultrootobject.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3284)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:3318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3318)*




<a id="cloudfront.models.distributionconfig.properties-6.enabled.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-enabled"

*Defined in [spec/spec.ts:3320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3320)*





___
<a id="cloudfront.models.distributionconfig.properties-6.enabled.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3321)*





___
<a id="cloudfront.models.distributionconfig.properties-6.enabled.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3319)*





___
<a id="cloudfront.models.distributionconfig.properties-6.enabled.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3322)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.httpversion"></a>

###  HttpVersion

** HttpVersion**:  *`object`* 

*Defined in [spec/spec.ts:3343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3343)*




<a id="cloudfront.models.distributionconfig.properties-6.httpversion.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-httpversion"

*Defined in [spec/spec.ts:3345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3345)*





___
<a id="cloudfront.models.distributionconfig.properties-6.httpversion.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3346)*





___
<a id="cloudfront.models.distributionconfig.properties-6.httpversion.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3344)*





___
<a id="cloudfront.models.distributionconfig.properties-6.httpversion.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3347)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.ipv6enabled"></a>

###  IPV6Enabled

** IPV6Enabled**:  *`object`* 

*Defined in [spec/spec.ts:3331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3331)*




<a id="cloudfront.models.distributionconfig.properties-6.ipv6enabled.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-ipv6enabled"

*Defined in [spec/spec.ts:3333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3333)*





___
<a id="cloudfront.models.distributionconfig.properties-6.ipv6enabled.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3334)*





___
<a id="cloudfront.models.distributionconfig.properties-6.ipv6enabled.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3332)*





___
<a id="cloudfront.models.distributionconfig.properties-6.ipv6enabled.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3335)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.logging"></a>

###  Logging

** Logging**:  *`object`* 

*Defined in [spec/spec.ts:3268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3268)*




<a id="cloudfront.models.distributionconfig.properties-6.logging.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-logging"

*Defined in [spec/spec.ts:3271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3271)*





___
<a id="cloudfront.models.distributionconfig.properties-6.logging.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3270)*





___
<a id="cloudfront.models.distributionconfig.properties-6.logging.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "Logging"

*Defined in [spec/spec.ts:3269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3269)*





___
<a id="cloudfront.models.distributionconfig.properties-6.logging.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3272)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.origins"></a>

###  Origins

** Origins**:  *`object`* 

*Defined in [spec/spec.ts:3286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3286)*




<a id="cloudfront.models.distributionconfig.properties-6.origins.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-origins"

*Defined in [spec/spec.ts:3289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3289)*





___
<a id="cloudfront.models.distributionconfig.properties-6.origins.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Origin"

*Defined in [spec/spec.ts:3290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3290)*





___
<a id="cloudfront.models.distributionconfig.properties-6.origins.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3288)*





___
<a id="cloudfront.models.distributionconfig.properties-6.origins.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3287)*





___
<a id="cloudfront.models.distributionconfig.properties-6.origins.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3291)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.priceclass"></a>

###  PriceClass

** PriceClass**:  *`object`* 

*Defined in [spec/spec.ts:3299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3299)*




<a id="cloudfront.models.distributionconfig.properties-6.priceclass.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-priceclass"

*Defined in [spec/spec.ts:3301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3301)*





___
<a id="cloudfront.models.distributionconfig.properties-6.priceclass.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3302)*





___
<a id="cloudfront.models.distributionconfig.properties-6.priceclass.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3300)*





___
<a id="cloudfront.models.distributionconfig.properties-6.priceclass.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3303)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.restrictions"></a>

###  Restrictions

** Restrictions**:  *`object`* 

*Defined in [spec/spec.ts:3349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3349)*




<a id="cloudfront.models.distributionconfig.properties-6.restrictions.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-restrictions"

*Defined in [spec/spec.ts:3352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3352)*





___
<a id="cloudfront.models.distributionconfig.properties-6.restrictions.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3351)*





___
<a id="cloudfront.models.distributionconfig.properties-6.restrictions.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "Restrictions"

*Defined in [spec/spec.ts:3350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3350)*





___
<a id="cloudfront.models.distributionconfig.properties-6.restrictions.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3353)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.viewercertificate"></a>

###  ViewerCertificate

** ViewerCertificate**:  *`object`* 

*Defined in [spec/spec.ts:3293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3293)*




<a id="cloudfront.models.distributionconfig.properties-6.viewercertificate.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-viewercertificate"

*Defined in [spec/spec.ts:3296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3296)*





___
<a id="cloudfront.models.distributionconfig.properties-6.viewercertificate.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3295)*





___
<a id="cloudfront.models.distributionconfig.properties-6.viewercertificate.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "ViewerCertificate"

*Defined in [spec/spec.ts:3294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3294)*





___
<a id="cloudfront.models.distributionconfig.properties-6.viewercertificate.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3297)*





___

___
<a id="cloudfront.models.distributionconfig.properties-6.webaclid"></a>

###  WebACLId

** WebACLId**:  *`object`* 

*Defined in [spec/spec.ts:3337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3337)*




<a id="cloudfront.models.distributionconfig.properties-6.webaclid.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-distributionconfig.html#cfn-cloudfront-distribution-distributionconfig-webaclid"

*Defined in [spec/spec.ts:3339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3339)*





___
<a id="cloudfront.models.distributionconfig.properties-6.webaclid.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3340)*





___
<a id="cloudfront.models.distributionconfig.properties-6.webaclid.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3338)*





___
<a id="cloudfront.models.distributionconfig.properties-6.webaclid.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3341)*





___

___

___

___
<a id="cloudfront.models.forwardedvalues-2"></a>

###  ForwardedValues

** ForwardedValues**:  *`object`* 

*Defined in [spec/spec.ts:3365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3365)*




<a id="cloudfront.models.forwardedvalues-2.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html"

*Defined in [spec/spec.ts:3366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3366)*





___
<a id="cloudfront.models.forwardedvalues-2.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.ForwardedValues"

*Defined in [spec/spec.ts:3395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3395)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3367)*




<a id="cloudfront.models.forwardedvalues-2.properties-7.cookies-1"></a>

###  Cookies

** Cookies**:  *`object`* 

*Defined in [spec/spec.ts:3368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3368)*




<a id="cloudfront.models.forwardedvalues-2.properties-7.cookies-1.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-cookies"

*Defined in [spec/spec.ts:3371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3371)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.cookies-1.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3370)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.cookies-1.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "Cookies"

*Defined in [spec/spec.ts:3369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3369)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.cookies-1.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3372)*





___

___
<a id="cloudfront.models.forwardedvalues-2.properties-7.headers"></a>

###  Headers

** Headers**:  *`object`* 

*Defined in [spec/spec.ts:3374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3374)*




<a id="cloudfront.models.forwardedvalues-2.properties-7.headers.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-headers"

*Defined in [spec/spec.ts:3378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3378)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.headers.primitiveitemtype-9"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3375)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.headers.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3377)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.headers.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3376)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.headers.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3379)*





___

___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystring"></a>

###  QueryString

** QueryString**:  *`object`* 

*Defined in [spec/spec.ts:3381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3381)*




<a id="cloudfront.models.forwardedvalues-2.properties-7.querystring.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystring"

*Defined in [spec/spec.ts:3383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3383)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystring.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3384)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystring.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3382)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystring.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3385)*





___

___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystringcachekeys"></a>

###  QueryStringCacheKeys

** QueryStringCacheKeys**:  *`object`* 

*Defined in [spec/spec.ts:3387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3387)*




<a id="cloudfront.models.forwardedvalues-2.properties-7.querystringcachekeys.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-forwardedvalues.html#cfn-cloudfront-distribution-forwardedvalues-querystringcachekeys"

*Defined in [spec/spec.ts:3391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3391)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystringcachekeys.primitiveitemtype-10"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3388)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystringcachekeys.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3390)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystringcachekeys.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3389)*





___
<a id="cloudfront.models.forwardedvalues-2.properties-7.querystringcachekeys.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3392)*





___

___

___

___
<a id="cloudfront.models.georestriction"></a>

###  GeoRestriction

** GeoRestriction**:  *`object`* 

*Defined in [spec/spec.ts:3397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3397)*




<a id="cloudfront.models.georestriction.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html"

*Defined in [spec/spec.ts:3398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3398)*





___
<a id="cloudfront.models.georestriction.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.GeoRestriction"

*Defined in [spec/spec.ts:3414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3414)*





___
<a id="cloudfront.models.georestriction.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3399)*




<a id="cloudfront.models.georestriction.properties-8.locations"></a>

###  Locations

** Locations**:  *`object`* 

*Defined in [spec/spec.ts:3400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3400)*




<a id="cloudfront.models.georestriction.properties-8.locations.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-locations"

*Defined in [spec/spec.ts:3404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3404)*





___
<a id="cloudfront.models.georestriction.properties-8.locations.primitiveitemtype-11"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3401)*





___
<a id="cloudfront.models.georestriction.properties-8.locations.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3403)*





___
<a id="cloudfront.models.georestriction.properties-8.locations.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3402)*





___
<a id="cloudfront.models.georestriction.properties-8.locations.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3405)*





___

___
<a id="cloudfront.models.georestriction.properties-8.restrictiontype"></a>

###  RestrictionType

** RestrictionType**:  *`object`* 

*Defined in [spec/spec.ts:3407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3407)*




<a id="cloudfront.models.georestriction.properties-8.restrictiontype.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-georestriction.html#cfn-cloudfront-distribution-georestriction-restrictiontype"

*Defined in [spec/spec.ts:3409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3409)*





___
<a id="cloudfront.models.georestriction.properties-8.restrictiontype.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3410)*





___
<a id="cloudfront.models.georestriction.properties-8.restrictiontype.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3408)*





___
<a id="cloudfront.models.georestriction.properties-8.restrictiontype.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3411)*





___

___

___

___
<a id="cloudfront.models.lambdafunctionassociation"></a>

###  LambdaFunctionAssociation

** LambdaFunctionAssociation**:  *`object`* 

*Defined in [spec/spec.ts:3416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3416)*




<a id="cloudfront.models.lambdafunctionassociation.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-lambdafunctionassociation.html"

*Defined in [spec/spec.ts:3417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3417)*





___
<a id="cloudfront.models.lambdafunctionassociation.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.LambdaFunctionAssociation"

*Defined in [spec/spec.ts:3432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3432)*





___
<a id="cloudfront.models.lambdafunctionassociation.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3418)*




<a id="cloudfront.models.lambdafunctionassociation.properties-9.eventtype"></a>

###  EventType

** EventType**:  *`object`* 

*Defined in [spec/spec.ts:3419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3419)*




<a id="cloudfront.models.lambdafunctionassociation.properties-9.eventtype.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-lambdafunctionassociation.html#cfn-cloudfront-distribution-lambdafunctionassociation-eventtype"

*Defined in [spec/spec.ts:3421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3421)*





___
<a id="cloudfront.models.lambdafunctionassociation.properties-9.eventtype.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3422)*





___
<a id="cloudfront.models.lambdafunctionassociation.properties-9.eventtype.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3420)*





___
<a id="cloudfront.models.lambdafunctionassociation.properties-9.eventtype.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3423)*





___

___
<a id="cloudfront.models.lambdafunctionassociation.properties-9.lambdafunctionarn"></a>

###  LambdaFunctionARN

** LambdaFunctionARN**:  *`object`* 

*Defined in [spec/spec.ts:3425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3425)*




<a id="cloudfront.models.lambdafunctionassociation.properties-9.lambdafunctionarn.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-lambdafunctionassociation.html#cfn-cloudfront-distribution-lambdafunctionassociation-lambdafunctionarn"

*Defined in [spec/spec.ts:3427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3427)*





___
<a id="cloudfront.models.lambdafunctionassociation.properties-9.lambdafunctionarn.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3428)*





___
<a id="cloudfront.models.lambdafunctionassociation.properties-9.lambdafunctionarn.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3426)*





___
<a id="cloudfront.models.lambdafunctionassociation.properties-9.lambdafunctionarn.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3429)*





___

___

___

___
<a id="cloudfront.models.logging-1"></a>

###  Logging

** Logging**:  *`object`* 

*Defined in [spec/spec.ts:3434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3434)*




<a id="cloudfront.models.logging-1.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html"

*Defined in [spec/spec.ts:3435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3435)*





___
<a id="cloudfront.models.logging-1.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::StreamingDistribution.Logging"

*Defined in [spec/spec.ts:3456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3456)*





___
<a id="cloudfront.models.logging-1.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3436)*




<a id="cloudfront.models.logging-1.properties-10.bucket"></a>

###  Bucket

** Bucket**:  *`object`* 

*Defined in [spec/spec.ts:3437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3437)*




<a id="cloudfront.models.logging-1.properties-10.bucket.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-bucket"

*Defined in [spec/spec.ts:3439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3439)*





___
<a id="cloudfront.models.logging-1.properties-10.bucket.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3440)*





___
<a id="cloudfront.models.logging-1.properties-10.bucket.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3438)*





___
<a id="cloudfront.models.logging-1.properties-10.bucket.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3441)*





___

___
<a id="cloudfront.models.logging-1.properties-10.enabled-1"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:3443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3443)*




<a id="cloudfront.models.logging-1.properties-10.enabled-1.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-enabled"

*Defined in [spec/spec.ts:3445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3445)*





___
<a id="cloudfront.models.logging-1.properties-10.enabled-1.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3446)*





___
<a id="cloudfront.models.logging-1.properties-10.enabled-1.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3444)*





___
<a id="cloudfront.models.logging-1.properties-10.enabled-1.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3447)*





___

___
<a id="cloudfront.models.logging-1.properties-10.prefix"></a>

###  Prefix

** Prefix**:  *`object`* 

*Defined in [spec/spec.ts:3449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3449)*




<a id="cloudfront.models.logging-1.properties-10.prefix.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-logging.html#cfn-cloudfront-streamingdistribution-logging-prefix"

*Defined in [spec/spec.ts:3451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3451)*





___
<a id="cloudfront.models.logging-1.properties-10.prefix.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3452)*





___
<a id="cloudfront.models.logging-1.properties-10.prefix.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3450)*





___
<a id="cloudfront.models.logging-1.properties-10.prefix.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3453)*





___

___

___

___
<a id="cloudfront.models.origin"></a>

###  Origin

** Origin**:  *`object`* 

*Defined in [spec/spec.ts:3458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3458)*




<a id="cloudfront.models.origin.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html"

*Defined in [spec/spec.ts:3459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3459)*





___
<a id="cloudfront.models.origin.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.Origin"

*Defined in [spec/spec.ts:3499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3499)*





___
<a id="cloudfront.models.origin.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3460)*




<a id="cloudfront.models.origin.properties-11.customoriginconfig-1"></a>

###  CustomOriginConfig

** CustomOriginConfig**:  *`object`* 

*Defined in [spec/spec.ts:3492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3492)*




<a id="cloudfront.models.origin.properties-11.customoriginconfig-1.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-customoriginconfig"

*Defined in [spec/spec.ts:3495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3495)*





___
<a id="cloudfront.models.origin.properties-11.customoriginconfig-1.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3494)*





___
<a id="cloudfront.models.origin.properties-11.customoriginconfig-1.type-24"></a>

###  Type

**●  Type**:  *`string`*  = "CustomOriginConfig"

*Defined in [spec/spec.ts:3493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3493)*





___
<a id="cloudfront.models.origin.properties-11.customoriginconfig-1.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3496)*





___

___
<a id="cloudfront.models.origin.properties-11.domainname"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:3468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3468)*




<a id="cloudfront.models.origin.properties-11.domainname.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-domainname"

*Defined in [spec/spec.ts:3470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3470)*





___
<a id="cloudfront.models.origin.properties-11.domainname.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3471)*





___
<a id="cloudfront.models.origin.properties-11.domainname.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3469)*





___
<a id="cloudfront.models.origin.properties-11.domainname.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3472)*





___

___
<a id="cloudfront.models.origin.properties-11.id"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:3486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3486)*




<a id="cloudfront.models.origin.properties-11.id.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-id"

*Defined in [spec/spec.ts:3488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3488)*





___
<a id="cloudfront.models.origin.properties-11.id.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3489)*





___
<a id="cloudfront.models.origin.properties-11.id.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3487)*





___
<a id="cloudfront.models.origin.properties-11.id.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3490)*





___

___
<a id="cloudfront.models.origin.properties-11.origincustomheaders"></a>

###  OriginCustomHeaders

** OriginCustomHeaders**:  *`object`* 

*Defined in [spec/spec.ts:3461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3461)*




<a id="cloudfront.models.origin.properties-11.origincustomheaders.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-origincustomheaders"

*Defined in [spec/spec.ts:3464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3464)*





___
<a id="cloudfront.models.origin.properties-11.origincustomheaders.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "OriginCustomHeader"

*Defined in [spec/spec.ts:3465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3465)*





___
<a id="cloudfront.models.origin.properties-11.origincustomheaders.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3463)*





___
<a id="cloudfront.models.origin.properties-11.origincustomheaders.type-25"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3462)*





___
<a id="cloudfront.models.origin.properties-11.origincustomheaders.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3466)*





___

___
<a id="cloudfront.models.origin.properties-11.originpath"></a>

###  OriginPath

** OriginPath**:  *`object`* 

*Defined in [spec/spec.ts:3480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3480)*




<a id="cloudfront.models.origin.properties-11.originpath.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-originpath"

*Defined in [spec/spec.ts:3482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3482)*





___
<a id="cloudfront.models.origin.properties-11.originpath.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3483)*





___
<a id="cloudfront.models.origin.properties-11.originpath.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3481)*





___
<a id="cloudfront.models.origin.properties-11.originpath.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3484)*





___

___
<a id="cloudfront.models.origin.properties-11.s3originconfig"></a>

###  S3OriginConfig

** S3OriginConfig**:  *`object`* 

*Defined in [spec/spec.ts:3474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3474)*




<a id="cloudfront.models.origin.properties-11.s3originconfig.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origin.html#cfn-cloudfront-distribution-origin-s3originconfig"

*Defined in [spec/spec.ts:3477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3477)*





___
<a id="cloudfront.models.origin.properties-11.s3originconfig.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3476)*





___
<a id="cloudfront.models.origin.properties-11.s3originconfig.type-26"></a>

###  Type

**●  Type**:  *`string`*  = "S3OriginConfig"

*Defined in [spec/spec.ts:3475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3475)*





___
<a id="cloudfront.models.origin.properties-11.s3originconfig.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3478)*





___

___

___

___
<a id="cloudfront.models.origincustomheader"></a>

###  OriginCustomHeader

** OriginCustomHeader**:  *`object`* 

*Defined in [spec/spec.ts:3501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3501)*




<a id="cloudfront.models.origincustomheader.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origincustomheader.html"

*Defined in [spec/spec.ts:3502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3502)*





___
<a id="cloudfront.models.origincustomheader.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.OriginCustomHeader"

*Defined in [spec/spec.ts:3517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3517)*





___
<a id="cloudfront.models.origincustomheader.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3503)*




<a id="cloudfront.models.origincustomheader.properties-12.headername"></a>

###  HeaderName

** HeaderName**:  *`object`* 

*Defined in [spec/spec.ts:3510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3510)*




<a id="cloudfront.models.origincustomheader.properties-12.headername.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origincustomheader.html#cfn-cloudfront-distribution-origincustomheader-headername"

*Defined in [spec/spec.ts:3512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3512)*





___
<a id="cloudfront.models.origincustomheader.properties-12.headername.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3513)*





___
<a id="cloudfront.models.origincustomheader.properties-12.headername.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3511)*





___
<a id="cloudfront.models.origincustomheader.properties-12.headername.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3514)*





___

___
<a id="cloudfront.models.origincustomheader.properties-12.headervalue"></a>

###  HeaderValue

** HeaderValue**:  *`object`* 

*Defined in [spec/spec.ts:3504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3504)*




<a id="cloudfront.models.origincustomheader.properties-12.headervalue.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-origincustomheader.html#cfn-cloudfront-distribution-origincustomheader-headervalue"

*Defined in [spec/spec.ts:3506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3506)*





___
<a id="cloudfront.models.origincustomheader.properties-12.headervalue.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3507)*





___
<a id="cloudfront.models.origincustomheader.properties-12.headervalue.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3505)*





___
<a id="cloudfront.models.origincustomheader.properties-12.headervalue.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3508)*





___

___

___

___
<a id="cloudfront.models.restrictions-1"></a>

###  Restrictions

** Restrictions**:  *`object`* 

*Defined in [spec/spec.ts:3519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3519)*




<a id="cloudfront.models.restrictions-1.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-restrictions.html"

*Defined in [spec/spec.ts:3520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3520)*





___
<a id="cloudfront.models.restrictions-1.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.Restrictions"

*Defined in [spec/spec.ts:3529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3529)*





___
<a id="cloudfront.models.restrictions-1.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3521)*




<a id="cloudfront.models.restrictions-1.properties-13.georestriction-1"></a>

###  GeoRestriction

** GeoRestriction**:  *`object`* 

*Defined in [spec/spec.ts:3522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3522)*




<a id="cloudfront.models.restrictions-1.properties-13.georestriction-1.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-restrictions.html#cfn-cloudfront-distribution-restrictions-georestriction"

*Defined in [spec/spec.ts:3525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3525)*





___
<a id="cloudfront.models.restrictions-1.properties-13.georestriction-1.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3524)*





___
<a id="cloudfront.models.restrictions-1.properties-13.georestriction-1.type-27"></a>

###  Type

**●  Type**:  *`string`*  = "GeoRestriction"

*Defined in [spec/spec.ts:3523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3523)*





___
<a id="cloudfront.models.restrictions-1.properties-13.georestriction-1.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3526)*





___

___

___

___
<a id="cloudfront.models.s3origin"></a>

###  S3Origin

** S3Origin**:  *`object`* 

*Defined in [spec/spec.ts:3579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3579)*




<a id="cloudfront.models.s3origin.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html"

*Defined in [spec/spec.ts:3580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3580)*





___
<a id="cloudfront.models.s3origin.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::StreamingDistribution.S3Origin"

*Defined in [spec/spec.ts:3595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3595)*





___
<a id="cloudfront.models.s3origin.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3581)*




<a id="cloudfront.models.s3origin.properties-14.domainname-1"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:3582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3582)*




<a id="cloudfront.models.s3origin.properties-14.domainname-1.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-domainname"

*Defined in [spec/spec.ts:3584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3584)*





___
<a id="cloudfront.models.s3origin.properties-14.domainname-1.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3585)*





___
<a id="cloudfront.models.s3origin.properties-14.domainname-1.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3583)*





___
<a id="cloudfront.models.s3origin.properties-14.domainname-1.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3586)*





___

___
<a id="cloudfront.models.s3origin.properties-14.originaccessidentity"></a>

###  OriginAccessIdentity

** OriginAccessIdentity**:  *`object`* 

*Defined in [spec/spec.ts:3588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3588)*




<a id="cloudfront.models.s3origin.properties-14.originaccessidentity.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-s3origin.html#cfn-cloudfront-streamingdistribution-s3origin-originaccessidentity"

*Defined in [spec/spec.ts:3590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3590)*





___
<a id="cloudfront.models.s3origin.properties-14.originaccessidentity.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3591)*





___
<a id="cloudfront.models.s3origin.properties-14.originaccessidentity.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3589)*





___
<a id="cloudfront.models.s3origin.properties-14.originaccessidentity.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3592)*





___

___

___

___
<a id="cloudfront.models.s3originconfig-1"></a>

###  S3OriginConfig

** S3OriginConfig**:  *`object`* 

*Defined in [spec/spec.ts:3531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3531)*




<a id="cloudfront.models.s3originconfig-1.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-s3originconfig.html"

*Defined in [spec/spec.ts:3532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3532)*





___
<a id="cloudfront.models.s3originconfig-1.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.S3OriginConfig"

*Defined in [spec/spec.ts:3541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3541)*





___
<a id="cloudfront.models.s3originconfig-1.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3533)*




<a id="cloudfront.models.s3originconfig-1.properties-15.originaccessidentity-1"></a>

###  OriginAccessIdentity

** OriginAccessIdentity**:  *`object`* 

*Defined in [spec/spec.ts:3534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3534)*




<a id="cloudfront.models.s3originconfig-1.properties-15.originaccessidentity-1.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-s3originconfig.html#cfn-cloudfront-distribution-s3originconfig-originaccessidentity"

*Defined in [spec/spec.ts:3536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3536)*





___
<a id="cloudfront.models.s3originconfig-1.properties-15.originaccessidentity-1.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3537)*





___
<a id="cloudfront.models.s3originconfig-1.properties-15.originaccessidentity-1.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3535)*





___
<a id="cloudfront.models.s3originconfig-1.properties-15.originaccessidentity-1.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3538)*





___

___

___

___
<a id="cloudfront.models.streamingdistributionconfig"></a>

###  StreamingDistributionConfig

** StreamingDistributionConfig**:  *`object`* 

*Defined in [spec/spec.ts:3597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3597)*




<a id="cloudfront.models.streamingdistributionconfig.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html"

*Defined in [spec/spec.ts:3598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3598)*





___
<a id="cloudfront.models.streamingdistributionconfig.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::StreamingDistribution.StreamingDistributionConfig"

*Defined in [spec/spec.ts:3644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3644)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3599)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.aliases-1"></a>

###  Aliases

** Aliases**:  *`object`* 

*Defined in [spec/spec.ts:3630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3630)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.aliases-1.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-aliases"

*Defined in [spec/spec.ts:3634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3634)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.aliases-1.primitiveitemtype-12"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3631)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.aliases-1.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3633)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.aliases-1.type-28"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3632)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.aliases-1.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3635)*





___

___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.comment-2"></a>

###  Comment

** Comment**:  *`object`* 

*Defined in [spec/spec.ts:3606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3606)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.comment-2.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-comment"

*Defined in [spec/spec.ts:3608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3608)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.comment-2.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3609)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.comment-2.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3607)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.comment-2.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3610)*





___

___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.enabled-2"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:3624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3624)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.enabled-2.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-enabled"

*Defined in [spec/spec.ts:3626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3626)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.enabled-2.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3627)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.enabled-2.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3625)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.enabled-2.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3628)*





___

___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.logging-2"></a>

###  Logging

** Logging**:  *`object`* 

*Defined in [spec/spec.ts:3600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3600)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.logging-2.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-logging"

*Defined in [spec/spec.ts:3603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3603)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.logging-2.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3602)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.logging-2.type-29"></a>

###  Type

**●  Type**:  *`string`*  = "Logging"

*Defined in [spec/spec.ts:3601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3601)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.logging-2.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3604)*





___

___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.priceclass-1"></a>

###  PriceClass

** PriceClass**:  *`object`* 

*Defined in [spec/spec.ts:3612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3612)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.priceclass-1.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-priceclass"

*Defined in [spec/spec.ts:3614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3614)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.priceclass-1.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3615)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.priceclass-1.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3613)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.priceclass-1.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3616)*





___

___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.s3origin-1"></a>

###  S3Origin

** S3Origin**:  *`object`* 

*Defined in [spec/spec.ts:3618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3618)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.s3origin-1.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-s3origin"

*Defined in [spec/spec.ts:3621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3621)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.s3origin-1.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3620)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.s3origin-1.type-30"></a>

###  Type

**●  Type**:  *`string`*  = "S3Origin"

*Defined in [spec/spec.ts:3619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3619)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.s3origin-1.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3622)*





___

___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.trustedsigners-2"></a>

###  TrustedSigners

** TrustedSigners**:  *`object`* 

*Defined in [spec/spec.ts:3637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3637)*




<a id="cloudfront.models.streamingdistributionconfig.properties-16.trustedsigners-2.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-streamingdistributionconfig.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig-trustedsigners"

*Defined in [spec/spec.ts:3640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3640)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.trustedsigners-2.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3639)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.trustedsigners-2.type-31"></a>

###  Type

**●  Type**:  *`string`*  = "TrustedSigners"

*Defined in [spec/spec.ts:3638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3638)*





___
<a id="cloudfront.models.streamingdistributionconfig.properties-16.trustedsigners-2.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3641)*





___

___

___

___
<a id="cloudfront.models.trustedsigners-3"></a>

###  TrustedSigners

** TrustedSigners**:  *`object`* 

*Defined in [spec/spec.ts:3646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3646)*




<a id="cloudfront.models.trustedsigners-3.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html"

*Defined in [spec/spec.ts:3647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3647)*





___
<a id="cloudfront.models.trustedsigners-3.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::StreamingDistribution.TrustedSigners"

*Defined in [spec/spec.ts:3663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3663)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3648)*




<a id="cloudfront.models.trustedsigners-3.properties-17.awsaccountnumbers"></a>

###  AwsAccountNumbers

** AwsAccountNumbers**:  *`object`* 

*Defined in [spec/spec.ts:3655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3655)*




<a id="cloudfront.models.trustedsigners-3.properties-17.awsaccountnumbers.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-awsaccountnumbers"

*Defined in [spec/spec.ts:3659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3659)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17.awsaccountnumbers.primitiveitemtype-13"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3656)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17.awsaccountnumbers.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3658)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17.awsaccountnumbers.type-32"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3657)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17.awsaccountnumbers.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3660)*





___

___
<a id="cloudfront.models.trustedsigners-3.properties-17.enabled-3"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:3649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3649)*




<a id="cloudfront.models.trustedsigners-3.properties-17.enabled-3.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-streamingdistribution-trustedsigners.html#cfn-cloudfront-streamingdistribution-trustedsigners-enabled"

*Defined in [spec/spec.ts:3651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3651)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17.enabled-3.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3652)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17.enabled-3.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3650)*





___
<a id="cloudfront.models.trustedsigners-3.properties-17.enabled-3.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3653)*





___

___

___

___
<a id="cloudfront.models.viewercertificate-1"></a>

###  ViewerCertificate

** ViewerCertificate**:  *`object`* 

*Defined in [spec/spec.ts:3543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3543)*




<a id="cloudfront.models.viewercertificate-1.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html"

*Defined in [spec/spec.ts:3544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3544)*





___
<a id="cloudfront.models.viewercertificate-1.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution.ViewerCertificate"

*Defined in [spec/spec.ts:3577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3577)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3545)*




<a id="cloudfront.models.viewercertificate-1.properties-18.acmcertificatearn"></a>

###  AcmCertificateArn

** AcmCertificateArn**:  *`object`* 

*Defined in [spec/spec.ts:3570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3570)*




<a id="cloudfront.models.viewercertificate-1.properties-18.acmcertificatearn.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-acmcertificatearn"

*Defined in [spec/spec.ts:3572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3572)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.acmcertificatearn.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3573)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.acmcertificatearn.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3571)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.acmcertificatearn.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3574)*





___

___
<a id="cloudfront.models.viewercertificate-1.properties-18.cloudfrontdefaultcertificate"></a>

###  CloudFrontDefaultCertificate

** CloudFrontDefaultCertificate**:  *`object`* 

*Defined in [spec/spec.ts:3564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3564)*




<a id="cloudfront.models.viewercertificate-1.properties-18.cloudfrontdefaultcertificate.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-cloudfrontdefaultcertificate"

*Defined in [spec/spec.ts:3566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3566)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.cloudfrontdefaultcertificate.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3567)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.cloudfrontdefaultcertificate.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3565)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.cloudfrontdefaultcertificate.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3568)*





___

___
<a id="cloudfront.models.viewercertificate-1.properties-18.iamcertificateid"></a>

###  IamCertificateId

** IamCertificateId**:  *`object`* 

*Defined in [spec/spec.ts:3546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3546)*




<a id="cloudfront.models.viewercertificate-1.properties-18.iamcertificateid.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-iamcertificateid"

*Defined in [spec/spec.ts:3548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3548)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.iamcertificateid.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3549)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.iamcertificateid.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3547)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.iamcertificateid.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3550)*





___

___
<a id="cloudfront.models.viewercertificate-1.properties-18.minimumprotocolversion"></a>

###  MinimumProtocolVersion

** MinimumProtocolVersion**:  *`object`* 

*Defined in [spec/spec.ts:3558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3558)*




<a id="cloudfront.models.viewercertificate-1.properties-18.minimumprotocolversion.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-minimumprotocolversion"

*Defined in [spec/spec.ts:3560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3560)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.minimumprotocolversion.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3561)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.minimumprotocolversion.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3559)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.minimumprotocolversion.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3562)*





___

___
<a id="cloudfront.models.viewercertificate-1.properties-18.sslsupportmethod"></a>

###  SslSupportMethod

** SslSupportMethod**:  *`object`* 

*Defined in [spec/spec.ts:3552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3552)*




<a id="cloudfront.models.viewercertificate-1.properties-18.sslsupportmethod.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewercertificate.html#cfn-cloudfront-distribution-viewercertificate-sslsupportmethod"

*Defined in [spec/spec.ts:3554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3554)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.sslsupportmethod.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3555)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.sslsupportmethod.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3553)*





___
<a id="cloudfront.models.viewercertificate-1.properties-18.sslsupportmethod.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3556)*





___

___

___

___

___
<a id="cloudfront.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:2923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2923)*




<a id="cloudfront.resources.cloudfrontoriginaccessidentity"></a>

###  CloudFrontOriginAccessIdentity

** CloudFrontOriginAccessIdentity**:  *`object`* 

*Defined in [spec/spec.ts:2924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2924)*




<a id="cloudfront.resources.cloudfrontoriginaccessidentity.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html"

*Defined in [spec/spec.ts:2925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2925)*





___
<a id="cloudfront.resources.cloudfrontoriginaccessidentity.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::CloudFrontOriginAccessIdentity"

*Defined in [spec/spec.ts:2939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2939)*





___
<a id="cloudfront.resources.cloudfrontoriginaccessidentity.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:2926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2926)*




<a id="cloudfront.resources.cloudfrontoriginaccessidentity.attributes.s3canonicaluserid"></a>

###  S3CanonicalUserId

** S3CanonicalUserId**:  *`object`* 

*Defined in [spec/spec.ts:2927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2927)*




<a id="cloudfront.resources.cloudfrontoriginaccessidentity.attributes.s3canonicaluserid.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2928)*





___

___

___
<a id="cloudfront.resources.cloudfrontoriginaccessidentity.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2931)*




<a id="cloudfront.resources.cloudfrontoriginaccessidentity.properties-19.cloudfrontoriginaccessidentityconfig-1"></a>

###  CloudFrontOriginAccessIdentityConfig

** CloudFrontOriginAccessIdentityConfig**:  *`object`* 

*Defined in [spec/spec.ts:2932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2932)*




<a id="cloudfront.resources.cloudfrontoriginaccessidentity.properties-19.cloudfrontoriginaccessidentityconfig-1.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-cloudfrontoriginaccessidentity.html#cfn-cloudfront-cloudfrontoriginaccessidentity-cloudfrontoriginaccessidentityconfig"

*Defined in [spec/spec.ts:2935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2935)*





___
<a id="cloudfront.resources.cloudfrontoriginaccessidentity.properties-19.cloudfrontoriginaccessidentityconfig-1.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2934)*





___
<a id="cloudfront.resources.cloudfrontoriginaccessidentity.properties-19.cloudfrontoriginaccessidentityconfig-1.type-33"></a>

###  Type

**●  Type**:  *`string`*  = "CloudFrontOriginAccessIdentityConfig"

*Defined in [spec/spec.ts:2933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2933)*





___
<a id="cloudfront.resources.cloudfrontoriginaccessidentity.properties-19.cloudfrontoriginaccessidentityconfig-1.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2936)*





___

___

___

___
<a id="cloudfront.resources.distribution"></a>

###  Distribution

** Distribution**:  *`object`* 

*Defined in [spec/spec.ts:2941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2941)*




<a id="cloudfront.resources.distribution.documentation-111"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html"

*Defined in [spec/spec.ts:2942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2942)*





___
<a id="cloudfront.resources.distribution.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::Distribution"

*Defined in [spec/spec.ts:2963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2963)*





___
<a id="cloudfront.resources.distribution.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:2943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2943)*




<a id="cloudfront.resources.distribution.attributes-1.domainname-2"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:2944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2944)*




<a id="cloudfront.resources.distribution.attributes-1.domainname-2.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2945)*





___

___

___
<a id="cloudfront.resources.distribution.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2948)*




<a id="cloudfront.resources.distribution.properties-20.distributionconfig-1"></a>

###  DistributionConfig

** DistributionConfig**:  *`object`* 

*Defined in [spec/spec.ts:2949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2949)*




<a id="cloudfront.resources.distribution.properties-20.distributionconfig-1.documentation-112"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html#cfn-cloudfront-distribution-distributionconfig"

*Defined in [spec/spec.ts:2952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2952)*





___
<a id="cloudfront.resources.distribution.properties-20.distributionconfig-1.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2951)*





___
<a id="cloudfront.resources.distribution.properties-20.distributionconfig-1.type-34"></a>

###  Type

**●  Type**:  *`string`*  = "DistributionConfig"

*Defined in [spec/spec.ts:2950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2950)*





___
<a id="cloudfront.resources.distribution.properties-20.distributionconfig-1.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2953)*





___

___
<a id="cloudfront.resources.distribution.properties-20.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:2955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2955)*




<a id="cloudfront.resources.distribution.properties-20.tags.documentation-113"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-distribution.html#cfn-cloudfront-distribution-tags"

*Defined in [spec/spec.ts:2958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2958)*





___
<a id="cloudfront.resources.distribution.properties-20.tags.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:2959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2959)*





___
<a id="cloudfront.resources.distribution.properties-20.tags.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:2957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2957)*





___
<a id="cloudfront.resources.distribution.properties-20.tags.type-35"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2956)*





___
<a id="cloudfront.resources.distribution.properties-20.tags.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2960)*





___

___

___

___
<a id="cloudfront.resources.streamingdistribution"></a>

###  StreamingDistribution

** StreamingDistribution**:  *`object`* 

*Defined in [spec/spec.ts:2965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2965)*




<a id="cloudfront.resources.streamingdistribution.documentation-114"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html"

*Defined in [spec/spec.ts:2966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2966)*





___
<a id="cloudfront.resources.streamingdistribution.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudFront::StreamingDistribution"

*Defined in [spec/spec.ts:2987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2987)*





___
<a id="cloudfront.resources.streamingdistribution.attributes-2"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:2967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2967)*




<a id="cloudfront.resources.streamingdistribution.attributes-2.domainname-3"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:2968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2968)*




<a id="cloudfront.resources.streamingdistribution.attributes-2.domainname-3.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:2969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2969)*





___

___

___
<a id="cloudfront.resources.streamingdistribution.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:2972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2972)*




<a id="cloudfront.resources.streamingdistribution.properties-21.streamingdistributionconfig-1"></a>

###  StreamingDistributionConfig

** StreamingDistributionConfig**:  *`object`* 

*Defined in [spec/spec.ts:2973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2973)*




<a id="cloudfront.resources.streamingdistribution.properties-21.streamingdistributionconfig-1.documentation-115"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html#cfn-cloudfront-streamingdistribution-streamingdistributionconfig"

*Defined in [spec/spec.ts:2976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2976)*





___
<a id="cloudfront.resources.streamingdistribution.properties-21.streamingdistributionconfig-1.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2975)*





___
<a id="cloudfront.resources.streamingdistribution.properties-21.streamingdistributionconfig-1.type-36"></a>

###  Type

**●  Type**:  *`string`*  = "StreamingDistributionConfig"

*Defined in [spec/spec.ts:2974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2974)*





___
<a id="cloudfront.resources.streamingdistribution.properties-21.streamingdistributionconfig-1.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2977)*





___

___
<a id="cloudfront.resources.streamingdistribution.properties-21.tags-1"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:2979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2979)*




<a id="cloudfront.resources.streamingdistribution.properties-21.tags-1.documentation-116"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-streamingdistribution.html#cfn-cloudfront-streamingdistribution-tags"

*Defined in [spec/spec.ts:2982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2982)*





___
<a id="cloudfront.resources.streamingdistribution.properties-21.tags-1.itemtype-7"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:2983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2983)*





___
<a id="cloudfront.resources.streamingdistribution.properties-21.tags-1.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:2981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2981)*





___
<a id="cloudfront.resources.streamingdistribution.properties-21.tags-1.type-37"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:2980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2980)*





___
<a id="cloudfront.resources.streamingdistribution.properties-21.tags-1.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:2984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L2984)*





___

___

___

___

___

<a id="cloudwatch"></a>

## Object literal: CloudWatch


<a id="cloudwatch.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:3963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3963)*




<a id="cloudwatch.models.dimension"></a>

###  Dimension

** Dimension**:  *`object`* 

*Defined in [spec/spec.ts:3964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3964)*




<a id="cloudwatch.models.dimension.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-dimension.html"

*Defined in [spec/spec.ts:3965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3965)*





___
<a id="cloudwatch.models.dimension.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudWatch::Alarm.Dimension"

*Defined in [spec/spec.ts:3980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3980)*





___
<a id="cloudwatch.models.dimension.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3966)*




<a id="cloudwatch.models.dimension.properties.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:3967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3967)*




<a id="cloudwatch.models.dimension.properties.name-1.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-dimension.html#cfn-cloudwatch-alarm-dimension-name"

*Defined in [spec/spec.ts:3968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3968)*





___
<a id="cloudwatch.models.dimension.properties.name-1.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3969)*





___
<a id="cloudwatch.models.dimension.properties.name-1.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3970)*





___
<a id="cloudwatch.models.dimension.properties.name-1.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3971)*





___

___
<a id="cloudwatch.models.dimension.properties.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:3973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3973)*




<a id="cloudwatch.models.dimension.properties.value.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-dimension.html#cfn-cloudwatch-alarm-dimension-value"

*Defined in [spec/spec.ts:3974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3974)*





___
<a id="cloudwatch.models.dimension.properties.value.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3975)*





___
<a id="cloudwatch.models.dimension.properties.value.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3976)*





___
<a id="cloudwatch.models.dimension.properties.value.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3977)*





___

___

___

___

___
<a id="cloudwatch.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:3816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3816)*




<a id="cloudwatch.resources.alarm"></a>

###  Alarm

** Alarm**:  *`object`* 

*Defined in [spec/spec.ts:3817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3817)*




<a id="cloudwatch.resources.alarm.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html"

*Defined in [spec/spec.ts:3823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3823)*





___
<a id="cloudwatch.resources.alarm.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudWatch::Alarm"

*Defined in [spec/spec.ts:3942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3942)*





___
<a id="cloudwatch.resources.alarm.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:3818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3818)*




<a id="cloudwatch.resources.alarm.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:3819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3819)*




<a id="cloudwatch.resources.alarm.attributes.arn.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3820)*





___

___

___
<a id="cloudwatch.resources.alarm.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3824)*




<a id="cloudwatch.resources.alarm.properties-1.actionsenabled"></a>

###  ActionsEnabled

** ActionsEnabled**:  *`object`* 

*Defined in [spec/spec.ts:3825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3825)*




<a id="cloudwatch.resources.alarm.properties-1.actionsenabled.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-actionsenabled"

*Defined in [spec/spec.ts:3826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3826)*





___
<a id="cloudwatch.resources.alarm.properties-1.actionsenabled.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:3827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3827)*





___
<a id="cloudwatch.resources.alarm.properties-1.actionsenabled.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3828)*





___
<a id="cloudwatch.resources.alarm.properties-1.actionsenabled.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3829)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.alarmactions"></a>

###  AlarmActions

** AlarmActions**:  *`object`* 

*Defined in [spec/spec.ts:3831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3831)*




<a id="cloudwatch.resources.alarm.properties-1.alarmactions.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmactions"

*Defined in [spec/spec.ts:3832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3832)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmactions.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3833)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmactions.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3834)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmactions.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3835)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmactions.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3836)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmactions.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3837)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.alarmdescription"></a>

###  AlarmDescription

** AlarmDescription**:  *`object`* 

*Defined in [spec/spec.ts:3839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3839)*




<a id="cloudwatch.resources.alarm.properties-1.alarmdescription.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmdescription"

*Defined in [spec/spec.ts:3840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3840)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmdescription.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3841)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmdescription.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3842)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmdescription.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3843)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.alarmname"></a>

###  AlarmName

** AlarmName**:  *`object`* 

*Defined in [spec/spec.ts:3845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3845)*




<a id="cloudwatch.resources.alarm.properties-1.alarmname.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-alarmname"

*Defined in [spec/spec.ts:3846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3846)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmname.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3847)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmname.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3848)*





___
<a id="cloudwatch.resources.alarm.properties-1.alarmname.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:3849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3849)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.comparisonoperator"></a>

###  ComparisonOperator

** ComparisonOperator**:  *`object`* 

*Defined in [spec/spec.ts:3851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3851)*




<a id="cloudwatch.resources.alarm.properties-1.comparisonoperator.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-comparisonoperator"

*Defined in [spec/spec.ts:3852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3852)*





___
<a id="cloudwatch.resources.alarm.properties-1.comparisonoperator.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3853)*





___
<a id="cloudwatch.resources.alarm.properties-1.comparisonoperator.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3854)*





___
<a id="cloudwatch.resources.alarm.properties-1.comparisonoperator.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3855)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.dimensions"></a>

###  Dimensions

** Dimensions**:  *`object`* 

*Defined in [spec/spec.ts:3857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3857)*




<a id="cloudwatch.resources.alarm.properties-1.dimensions.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-dimension"

*Defined in [spec/spec.ts:3858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3858)*





___
<a id="cloudwatch.resources.alarm.properties-1.dimensions.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3859)*





___
<a id="cloudwatch.resources.alarm.properties-1.dimensions.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Dimension"

*Defined in [spec/spec.ts:3860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3860)*





___
<a id="cloudwatch.resources.alarm.properties-1.dimensions.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3861)*





___
<a id="cloudwatch.resources.alarm.properties-1.dimensions.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3862)*





___
<a id="cloudwatch.resources.alarm.properties-1.dimensions.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3863)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.evaluatelowsamplecountpercentile"></a>

###  EvaluateLowSampleCountPercentile

** EvaluateLowSampleCountPercentile**:  *`object`* 

*Defined in [spec/spec.ts:3865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3865)*




<a id="cloudwatch.resources.alarm.properties-1.evaluatelowsamplecountpercentile.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluatelowsamplecountpercentile"

*Defined in [spec/spec.ts:3866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3866)*





___
<a id="cloudwatch.resources.alarm.properties-1.evaluatelowsamplecountpercentile.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3867)*





___
<a id="cloudwatch.resources.alarm.properties-1.evaluatelowsamplecountpercentile.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3868)*





___
<a id="cloudwatch.resources.alarm.properties-1.evaluatelowsamplecountpercentile.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3869)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.evaluationperiods"></a>

###  EvaluationPeriods

** EvaluationPeriods**:  *`object`* 

*Defined in [spec/spec.ts:3871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3871)*




<a id="cloudwatch.resources.alarm.properties-1.evaluationperiods.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-evaluationperiods"

*Defined in [spec/spec.ts:3872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3872)*





___
<a id="cloudwatch.resources.alarm.properties-1.evaluationperiods.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3873)*





___
<a id="cloudwatch.resources.alarm.properties-1.evaluationperiods.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3874)*





___
<a id="cloudwatch.resources.alarm.properties-1.evaluationperiods.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3875)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.extendedstatistic"></a>

###  ExtendedStatistic

** ExtendedStatistic**:  *`object`* 

*Defined in [spec/spec.ts:3877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3877)*




<a id="cloudwatch.resources.alarm.properties-1.extendedstatistic.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-extendedstatistic"

*Defined in [spec/spec.ts:3878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3878)*





___
<a id="cloudwatch.resources.alarm.properties-1.extendedstatistic.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3879)*





___
<a id="cloudwatch.resources.alarm.properties-1.extendedstatistic.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3880)*





___
<a id="cloudwatch.resources.alarm.properties-1.extendedstatistic.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3881)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.insufficientdataactions"></a>

###  InsufficientDataActions

** InsufficientDataActions**:  *`object`* 

*Defined in [spec/spec.ts:3883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3883)*




<a id="cloudwatch.resources.alarm.properties-1.insufficientdataactions.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-insufficientdataactions"

*Defined in [spec/spec.ts:3884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3884)*





___
<a id="cloudwatch.resources.alarm.properties-1.insufficientdataactions.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3885)*





___
<a id="cloudwatch.resources.alarm.properties-1.insufficientdataactions.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3886)*





___
<a id="cloudwatch.resources.alarm.properties-1.insufficientdataactions.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3887)*





___
<a id="cloudwatch.resources.alarm.properties-1.insufficientdataactions.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3888)*





___
<a id="cloudwatch.resources.alarm.properties-1.insufficientdataactions.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3889)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:3891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3891)*




<a id="cloudwatch.resources.alarm.properties-1.metricname.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-metricname"

*Defined in [spec/spec.ts:3892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3892)*





___
<a id="cloudwatch.resources.alarm.properties-1.metricname.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3893)*





___
<a id="cloudwatch.resources.alarm.properties-1.metricname.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3894)*





___
<a id="cloudwatch.resources.alarm.properties-1.metricname.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3895)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.namespace"></a>

###  Namespace

** Namespace**:  *`object`* 

*Defined in [spec/spec.ts:3897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3897)*




<a id="cloudwatch.resources.alarm.properties-1.namespace.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-namespace"

*Defined in [spec/spec.ts:3898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3898)*





___
<a id="cloudwatch.resources.alarm.properties-1.namespace.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3899)*





___
<a id="cloudwatch.resources.alarm.properties-1.namespace.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3900)*





___
<a id="cloudwatch.resources.alarm.properties-1.namespace.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3901)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.okactions"></a>

###  OKActions

** OKActions**:  *`object`* 

*Defined in [spec/spec.ts:3903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3903)*




<a id="cloudwatch.resources.alarm.properties-1.okactions.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-okactions"

*Defined in [spec/spec.ts:3904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3904)*





___
<a id="cloudwatch.resources.alarm.properties-1.okactions.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3905)*





___
<a id="cloudwatch.resources.alarm.properties-1.okactions.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3906)*





___
<a id="cloudwatch.resources.alarm.properties-1.okactions.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3907)*





___
<a id="cloudwatch.resources.alarm.properties-1.okactions.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:3908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3908)*





___
<a id="cloudwatch.resources.alarm.properties-1.okactions.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3909)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.period"></a>

###  Period

** Period**:  *`object`* 

*Defined in [spec/spec.ts:3911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3911)*




<a id="cloudwatch.resources.alarm.properties-1.period.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-period"

*Defined in [spec/spec.ts:3912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3912)*





___
<a id="cloudwatch.resources.alarm.properties-1.period.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:3913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3913)*





___
<a id="cloudwatch.resources.alarm.properties-1.period.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3914)*





___
<a id="cloudwatch.resources.alarm.properties-1.period.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3915)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.statistic"></a>

###  Statistic

** Statistic**:  *`object`* 

*Defined in [spec/spec.ts:3917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3917)*




<a id="cloudwatch.resources.alarm.properties-1.statistic.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-statistic"

*Defined in [spec/spec.ts:3918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3918)*





___
<a id="cloudwatch.resources.alarm.properties-1.statistic.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3919)*





___
<a id="cloudwatch.resources.alarm.properties-1.statistic.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3920)*





___
<a id="cloudwatch.resources.alarm.properties-1.statistic.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3921)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.threshold"></a>

###  Threshold

** Threshold**:  *`object`* 

*Defined in [spec/spec.ts:3923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3923)*




<a id="cloudwatch.resources.alarm.properties-1.threshold.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-threshold"

*Defined in [spec/spec.ts:3924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3924)*





___
<a id="cloudwatch.resources.alarm.properties-1.threshold.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:3925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3925)*





___
<a id="cloudwatch.resources.alarm.properties-1.threshold.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3926)*





___
<a id="cloudwatch.resources.alarm.properties-1.threshold.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3927)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.treatmissingdata"></a>

###  TreatMissingData

** TreatMissingData**:  *`object`* 

*Defined in [spec/spec.ts:3929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3929)*




<a id="cloudwatch.resources.alarm.properties-1.treatmissingdata.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-treatmissingdata"

*Defined in [spec/spec.ts:3930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3930)*





___
<a id="cloudwatch.resources.alarm.properties-1.treatmissingdata.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3931)*





___
<a id="cloudwatch.resources.alarm.properties-1.treatmissingdata.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3932)*





___
<a id="cloudwatch.resources.alarm.properties-1.treatmissingdata.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3933)*





___

___
<a id="cloudwatch.resources.alarm.properties-1.unit"></a>

###  Unit

** Unit**:  *`object`* 

*Defined in [spec/spec.ts:3935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3935)*




<a id="cloudwatch.resources.alarm.properties-1.unit.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-alarm.html#cfn-cloudwatch-alarms-unit"

*Defined in [spec/spec.ts:3936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3936)*





___
<a id="cloudwatch.resources.alarm.properties-1.unit.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3937)*





___
<a id="cloudwatch.resources.alarm.properties-1.unit.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3938)*





___
<a id="cloudwatch.resources.alarm.properties-1.unit.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3939)*





___

___

___

___
<a id="cloudwatch.resources.dashboard"></a>

###  Dashboard

** Dashboard**:  *`object`* 

*Defined in [spec/spec.ts:3944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3944)*




<a id="cloudwatch.resources.dashboard.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html"

*Defined in [spec/spec.ts:3945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3945)*





___
<a id="cloudwatch.resources.dashboard.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CloudWatch::Dashboard"

*Defined in [spec/spec.ts:3960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3960)*





___
<a id="cloudwatch.resources.dashboard.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3946)*




<a id="cloudwatch.resources.dashboard.properties-2.dashboardbody"></a>

###  DashboardBody

** DashboardBody**:  *`object`* 

*Defined in [spec/spec.ts:3953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3953)*




<a id="cloudwatch.resources.dashboard.properties-2.dashboardbody.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardbody"

*Defined in [spec/spec.ts:3955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3955)*





___
<a id="cloudwatch.resources.dashboard.properties-2.dashboardbody.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3956)*





___
<a id="cloudwatch.resources.dashboard.properties-2.dashboardbody.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3954)*





___
<a id="cloudwatch.resources.dashboard.properties-2.dashboardbody.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3957)*





___

___
<a id="cloudwatch.resources.dashboard.properties-2.dashboardname"></a>

###  DashboardName

** DashboardName**:  *`object`* 

*Defined in [spec/spec.ts:3947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3947)*




<a id="cloudwatch.resources.dashboard.properties-2.dashboardname.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#cfn-cloudwatch-dashboard-dashboardname"

*Defined in [spec/spec.ts:3949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3949)*





___
<a id="cloudwatch.resources.dashboard.properties-2.dashboardname.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3950)*





___
<a id="cloudwatch.resources.dashboard.properties-2.dashboardname.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:3948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3948)*





___
<a id="cloudwatch.resources.dashboard.properties-2.dashboardname.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:3951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3951)*





___

___

___

___

___

<a id="codebuild"></a>

## Object literal: CodeBuild


<a id="codebuild.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:4071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4071)*




<a id="codebuild.models.artifacts"></a>

###  Artifacts

** Artifacts**:  *`object`* 

*Defined in [spec/spec.ts:4072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4072)*




<a id="codebuild.models.artifacts.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html"

*Defined in [spec/spec.ts:4073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4073)*





___
<a id="codebuild.models.artifacts.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project.Artifacts"

*Defined in [spec/spec.ts:4112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4112)*





___
<a id="codebuild.models.artifacts.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4074)*




<a id="codebuild.models.artifacts.properties.location"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:4093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4093)*




<a id="codebuild.models.artifacts.properties.location.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-location"

*Defined in [spec/spec.ts:4095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4095)*





___
<a id="codebuild.models.artifacts.properties.location.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4096)*





___
<a id="codebuild.models.artifacts.properties.location.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4094)*





___
<a id="codebuild.models.artifacts.properties.location.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4097)*





___

___
<a id="codebuild.models.artifacts.properties.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4099)*




<a id="codebuild.models.artifacts.properties.name-1.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-name"

*Defined in [spec/spec.ts:4101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4101)*





___
<a id="codebuild.models.artifacts.properties.name-1.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4102)*





___
<a id="codebuild.models.artifacts.properties.name-1.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4100)*





___
<a id="codebuild.models.artifacts.properties.name-1.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4103)*





___

___
<a id="codebuild.models.artifacts.properties.namespacetype"></a>

###  NamespaceType

** NamespaceType**:  *`object`* 

*Defined in [spec/spec.ts:4105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4105)*




<a id="codebuild.models.artifacts.properties.namespacetype.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-namespacetype"

*Defined in [spec/spec.ts:4107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4107)*





___
<a id="codebuild.models.artifacts.properties.namespacetype.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4108)*





___
<a id="codebuild.models.artifacts.properties.namespacetype.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4106)*





___
<a id="codebuild.models.artifacts.properties.namespacetype.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4109)*





___

___
<a id="codebuild.models.artifacts.properties.packaging"></a>

###  Packaging

** Packaging**:  *`object`* 

*Defined in [spec/spec.ts:4087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4087)*




<a id="codebuild.models.artifacts.properties.packaging.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-packaging"

*Defined in [spec/spec.ts:4089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4089)*





___
<a id="codebuild.models.artifacts.properties.packaging.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4090)*





___
<a id="codebuild.models.artifacts.properties.packaging.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4088)*





___
<a id="codebuild.models.artifacts.properties.packaging.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4091)*





___

___
<a id="codebuild.models.artifacts.properties.path"></a>

###  Path

** Path**:  *`object`* 

*Defined in [spec/spec.ts:4075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4075)*




<a id="codebuild.models.artifacts.properties.path.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-path"

*Defined in [spec/spec.ts:4077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4077)*





___
<a id="codebuild.models.artifacts.properties.path.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4078)*





___
<a id="codebuild.models.artifacts.properties.path.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4076)*





___
<a id="codebuild.models.artifacts.properties.path.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4079)*





___

___
<a id="codebuild.models.artifacts.properties.type"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4081)*




<a id="codebuild.models.artifacts.properties.type.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-artifacts.html#cfn-codebuild-project-artifacts-type"

*Defined in [spec/spec.ts:4083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4083)*





___
<a id="codebuild.models.artifacts.properties.type.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4084)*





___
<a id="codebuild.models.artifacts.properties.type.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4082)*





___
<a id="codebuild.models.artifacts.properties.type.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4085)*





___

___

___

___
<a id="codebuild.models.environment"></a>

###  Environment

** Environment**:  *`object`* 

*Defined in [spec/spec.ts:4114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4114)*




<a id="codebuild.models.environment.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html"

*Defined in [spec/spec.ts:4115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4115)*





___
<a id="codebuild.models.environment.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project.Environment"

*Defined in [spec/spec.ts:4149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4149)*





___
<a id="codebuild.models.environment.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4116)*




<a id="codebuild.models.environment.properties-1.computetype"></a>

###  ComputeType

** ComputeType**:  *`object`* 

*Defined in [spec/spec.ts:4142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4142)*




<a id="codebuild.models.environment.properties-1.computetype.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-computetype"

*Defined in [spec/spec.ts:4144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4144)*





___
<a id="codebuild.models.environment.properties-1.computetype.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4145)*





___
<a id="codebuild.models.environment.properties-1.computetype.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4143)*





___
<a id="codebuild.models.environment.properties-1.computetype.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4146)*





___

___
<a id="codebuild.models.environment.properties-1.environmentvariables"></a>

###  EnvironmentVariables

** EnvironmentVariables**:  *`object`* 

*Defined in [spec/spec.ts:4123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4123)*




<a id="codebuild.models.environment.properties-1.environmentvariables.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-environmentvariables"

*Defined in [spec/spec.ts:4126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4126)*





___
<a id="codebuild.models.environment.properties-1.environmentvariables.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "EnvironmentVariable"

*Defined in [spec/spec.ts:4127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4127)*





___
<a id="codebuild.models.environment.properties-1.environmentvariables.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4125)*





___
<a id="codebuild.models.environment.properties-1.environmentvariables.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4124)*





___
<a id="codebuild.models.environment.properties-1.environmentvariables.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4128)*





___

___
<a id="codebuild.models.environment.properties-1.image"></a>

###  Image

** Image**:  *`object`* 

*Defined in [spec/spec.ts:4136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4136)*




<a id="codebuild.models.environment.properties-1.image.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-image"

*Defined in [spec/spec.ts:4138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4138)*





___
<a id="codebuild.models.environment.properties-1.image.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4139)*





___
<a id="codebuild.models.environment.properties-1.image.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4137)*





___
<a id="codebuild.models.environment.properties-1.image.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4140)*





___

___
<a id="codebuild.models.environment.properties-1.privilegedmode"></a>

###  PrivilegedMode

** PrivilegedMode**:  *`object`* 

*Defined in [spec/spec.ts:4130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4130)*




<a id="codebuild.models.environment.properties-1.privilegedmode.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-privilegedmode"

*Defined in [spec/spec.ts:4132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4132)*





___
<a id="codebuild.models.environment.properties-1.privilegedmode.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4133)*





___
<a id="codebuild.models.environment.properties-1.privilegedmode.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4131)*





___
<a id="codebuild.models.environment.properties-1.privilegedmode.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4134)*





___

___
<a id="codebuild.models.environment.properties-1.type-2"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4117)*




<a id="codebuild.models.environment.properties-1.type-2.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html#cfn-codebuild-project-environment-type"

*Defined in [spec/spec.ts:4119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4119)*





___
<a id="codebuild.models.environment.properties-1.type-2.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4120)*





___
<a id="codebuild.models.environment.properties-1.type-2.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4118)*





___
<a id="codebuild.models.environment.properties-1.type-2.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4121)*





___

___

___

___
<a id="codebuild.models.environmentvariable"></a>

###  EnvironmentVariable

** EnvironmentVariable**:  *`object`* 

*Defined in [spec/spec.ts:4151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4151)*




<a id="codebuild.models.environmentvariable.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environmentvariable.html"

*Defined in [spec/spec.ts:4152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4152)*





___
<a id="codebuild.models.environmentvariable.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project.EnvironmentVariable"

*Defined in [spec/spec.ts:4173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4173)*





___
<a id="codebuild.models.environmentvariable.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4153)*




<a id="codebuild.models.environmentvariable.properties-2.name-4"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4166)*




<a id="codebuild.models.environmentvariable.properties-2.name-4.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environmentvariable.html#cfn-codebuild-project-environmentvariable-name"

*Defined in [spec/spec.ts:4168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4168)*





___
<a id="codebuild.models.environmentvariable.properties-2.name-4.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4169)*





___
<a id="codebuild.models.environmentvariable.properties-2.name-4.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4167)*





___
<a id="codebuild.models.environmentvariable.properties-2.name-4.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4170)*





___

___
<a id="codebuild.models.environmentvariable.properties-2.type-3"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4154)*




<a id="codebuild.models.environmentvariable.properties-2.type-3.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environmentvariable.html#cfn-codebuild-project-environmentvariable-type"

*Defined in [spec/spec.ts:4156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4156)*





___
<a id="codebuild.models.environmentvariable.properties-2.type-3.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4157)*





___
<a id="codebuild.models.environmentvariable.properties-2.type-3.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4155)*





___
<a id="codebuild.models.environmentvariable.properties-2.type-3.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4158)*





___

___
<a id="codebuild.models.environmentvariable.properties-2.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:4160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4160)*




<a id="codebuild.models.environmentvariable.properties-2.value.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environmentvariable.html#cfn-codebuild-project-environmentvariable-value"

*Defined in [spec/spec.ts:4162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4162)*





___
<a id="codebuild.models.environmentvariable.properties-2.value.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4163)*





___
<a id="codebuild.models.environmentvariable.properties-2.value.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4161)*





___
<a id="codebuild.models.environmentvariable.properties-2.value.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4164)*





___

___

___

___
<a id="codebuild.models.projectcache"></a>

###  ProjectCache

** ProjectCache**:  *`object`* 

*Defined in [spec/spec.ts:4175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4175)*




<a id="codebuild.models.projectcache.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html"

*Defined in [spec/spec.ts:4176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4176)*





___
<a id="codebuild.models.projectcache.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project.ProjectCache"

*Defined in [spec/spec.ts:4191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4191)*





___
<a id="codebuild.models.projectcache.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4177)*




<a id="codebuild.models.projectcache.properties-3.location-1"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:4184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4184)*




<a id="codebuild.models.projectcache.properties-3.location-1.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-location"

*Defined in [spec/spec.ts:4186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4186)*





___
<a id="codebuild.models.projectcache.properties-3.location-1.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4187)*





___
<a id="codebuild.models.projectcache.properties-3.location-1.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4185)*





___
<a id="codebuild.models.projectcache.properties-3.location-1.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4188)*





___

___
<a id="codebuild.models.projectcache.properties-3.type-4"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4178)*




<a id="codebuild.models.projectcache.properties-3.type-4.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectcache.html#cfn-codebuild-project-projectcache-type"

*Defined in [spec/spec.ts:4180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4180)*





___
<a id="codebuild.models.projectcache.properties-3.type-4.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4181)*





___
<a id="codebuild.models.projectcache.properties-3.type-4.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4179)*





___
<a id="codebuild.models.projectcache.properties-3.type-4.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4182)*





___

___

___

___
<a id="codebuild.models.source"></a>

###  Source

** Source**:  *`object`* 

*Defined in [spec/spec.ts:4193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4193)*




<a id="codebuild.models.source.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html"

*Defined in [spec/spec.ts:4194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4194)*





___
<a id="codebuild.models.source.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project.Source"

*Defined in [spec/spec.ts:4221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4221)*





___
<a id="codebuild.models.source.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4195)*




<a id="codebuild.models.source.properties-4.auth"></a>

###  Auth

** Auth**:  *`object`* 

*Defined in [spec/spec.ts:4202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4202)*




<a id="codebuild.models.source.properties-4.auth.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-auth"

*Defined in [spec/spec.ts:4205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4205)*





___
<a id="codebuild.models.source.properties-4.auth.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4204)*





___
<a id="codebuild.models.source.properties-4.auth.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "SourceAuth"

*Defined in [spec/spec.ts:4203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4203)*





___
<a id="codebuild.models.source.properties-4.auth.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4206)*





___

___
<a id="codebuild.models.source.properties-4.buildspec"></a>

###  BuildSpec

** BuildSpec**:  *`object`* 

*Defined in [spec/spec.ts:4208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4208)*




<a id="codebuild.models.source.properties-4.buildspec.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-buildspec"

*Defined in [spec/spec.ts:4210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4210)*





___
<a id="codebuild.models.source.properties-4.buildspec.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4211)*





___
<a id="codebuild.models.source.properties-4.buildspec.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4209)*





___
<a id="codebuild.models.source.properties-4.buildspec.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4212)*





___

___
<a id="codebuild.models.source.properties-4.location-2"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:4214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4214)*




<a id="codebuild.models.source.properties-4.location-2.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-location"

*Defined in [spec/spec.ts:4216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4216)*





___
<a id="codebuild.models.source.properties-4.location-2.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4217)*





___
<a id="codebuild.models.source.properties-4.location-2.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4215)*





___
<a id="codebuild.models.source.properties-4.location-2.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4218)*





___

___
<a id="codebuild.models.source.properties-4.type-6"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4196)*




<a id="codebuild.models.source.properties-4.type-6.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-source.html#cfn-codebuild-project-source-type"

*Defined in [spec/spec.ts:4198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4198)*





___
<a id="codebuild.models.source.properties-4.type-6.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4199)*





___
<a id="codebuild.models.source.properties-4.type-6.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4197)*





___
<a id="codebuild.models.source.properties-4.type-6.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4200)*





___

___

___

___
<a id="codebuild.models.sourceauth"></a>

###  SourceAuth

** SourceAuth**:  *`object`* 

*Defined in [spec/spec.ts:4223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4223)*




<a id="codebuild.models.sourceauth.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html"

*Defined in [spec/spec.ts:4224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4224)*





___
<a id="codebuild.models.sourceauth.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project.SourceAuth"

*Defined in [spec/spec.ts:4239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4239)*





___
<a id="codebuild.models.sourceauth.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4225)*




<a id="codebuild.models.sourceauth.properties-5.resource"></a>

###  Resource

** Resource**:  *`object`* 

*Defined in [spec/spec.ts:4232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4232)*




<a id="codebuild.models.sourceauth.properties-5.resource.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-resource"

*Defined in [spec/spec.ts:4234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4234)*





___
<a id="codebuild.models.sourceauth.properties-5.resource.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4235)*





___
<a id="codebuild.models.sourceauth.properties-5.resource.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4233)*





___
<a id="codebuild.models.sourceauth.properties-5.resource.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4236)*





___

___
<a id="codebuild.models.sourceauth.properties-5.type-7"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4226)*




<a id="codebuild.models.sourceauth.properties-5.type-7.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-sourceauth.html#cfn-codebuild-project-sourceauth-type"

*Defined in [spec/spec.ts:4228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4228)*





___
<a id="codebuild.models.sourceauth.properties-5.type-7.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4229)*





___
<a id="codebuild.models.sourceauth.properties-5.type-7.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4227)*





___
<a id="codebuild.models.sourceauth.properties-5.type-7.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4230)*





___

___

___

___
<a id="codebuild.models.vpcconfig"></a>

###  VpcConfig

** VpcConfig**:  *`object`* 

*Defined in [spec/spec.ts:4241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4241)*




<a id="codebuild.models.vpcconfig.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html"

*Defined in [spec/spec.ts:4242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4242)*





___
<a id="codebuild.models.vpcconfig.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project.VpcConfig"

*Defined in [spec/spec.ts:4265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4265)*





___
<a id="codebuild.models.vpcconfig.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4243)*




<a id="codebuild.models.vpcconfig.properties-6.securitygroupids"></a>

###  SecurityGroupIds

** SecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:4257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4257)*




<a id="codebuild.models.vpcconfig.properties-6.securitygroupids.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-securitygroupids"

*Defined in [spec/spec.ts:4261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4261)*





___
<a id="codebuild.models.vpcconfig.properties-6.securitygroupids.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4258)*





___
<a id="codebuild.models.vpcconfig.properties-6.securitygroupids.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4260)*





___
<a id="codebuild.models.vpcconfig.properties-6.securitygroupids.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4259)*





___
<a id="codebuild.models.vpcconfig.properties-6.securitygroupids.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4262)*





___

___
<a id="codebuild.models.vpcconfig.properties-6.subnets"></a>

###  Subnets

** Subnets**:  *`object`* 

*Defined in [spec/spec.ts:4244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4244)*




<a id="codebuild.models.vpcconfig.properties-6.subnets.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-subnets"

*Defined in [spec/spec.ts:4248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4248)*





___
<a id="codebuild.models.vpcconfig.properties-6.subnets.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4245)*





___
<a id="codebuild.models.vpcconfig.properties-6.subnets.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4247)*





___
<a id="codebuild.models.vpcconfig.properties-6.subnets.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4246)*





___
<a id="codebuild.models.vpcconfig.properties-6.subnets.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4249)*





___

___
<a id="codebuild.models.vpcconfig.properties-6.vpcid"></a>

###  VpcId

** VpcId**:  *`object`* 

*Defined in [spec/spec.ts:4251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4251)*




<a id="codebuild.models.vpcconfig.properties-6.vpcid.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-vpcconfig.html#cfn-codebuild-project-vpcconfig-vpcid"

*Defined in [spec/spec.ts:4253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4253)*





___
<a id="codebuild.models.vpcconfig.properties-6.vpcid.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4254)*





___
<a id="codebuild.models.vpcconfig.properties-6.vpcid.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4252)*





___
<a id="codebuild.models.vpcconfig.properties-6.vpcid.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4255)*





___

___

___

___

___
<a id="codebuild.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:3985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3985)*




<a id="codebuild.resources.project"></a>

###  Project

** Project**:  *`object`* 

*Defined in [spec/spec.ts:3986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3986)*




<a id="codebuild.resources.project.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html"

*Defined in [spec/spec.ts:3987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3987)*





___
<a id="codebuild.resources.project.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeBuild::Project"

*Defined in [spec/spec.ts:4068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4068)*





___
<a id="codebuild.resources.project.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:3988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3988)*




<a id="codebuild.resources.project.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:3989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3989)*




<a id="codebuild.resources.project.attributes.arn.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:3990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3990)*





___

___

___
<a id="codebuild.resources.project.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:3993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3993)*




<a id="codebuild.resources.project.properties-7.artifacts-1"></a>

###  Artifacts

** Artifacts**:  *`object`* 

*Defined in [spec/spec.ts:3994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3994)*




<a id="codebuild.resources.project.properties-7.artifacts-1.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-artifacts"

*Defined in [spec/spec.ts:3997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3997)*





___
<a id="codebuild.resources.project.properties-7.artifacts-1.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:3996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3996)*





___
<a id="codebuild.resources.project.properties-7.artifacts-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "Artifacts"

*Defined in [spec/spec.ts:3995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3995)*





___
<a id="codebuild.resources.project.properties-7.artifacts-1.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:3998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L3998)*





___

___
<a id="codebuild.resources.project.properties-7.badgeenabled"></a>

###  BadgeEnabled

** BadgeEnabled**:  *`object`* 

*Defined in [spec/spec.ts:4000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4000)*




<a id="codebuild.resources.project.properties-7.badgeenabled.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-badgeenabled"

*Defined in [spec/spec.ts:4002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4002)*





___
<a id="codebuild.resources.project.properties-7.badgeenabled.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4003)*





___
<a id="codebuild.resources.project.properties-7.badgeenabled.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4001)*





___
<a id="codebuild.resources.project.properties-7.badgeenabled.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4004)*





___

___
<a id="codebuild.resources.project.properties-7.cache"></a>

###  Cache

** Cache**:  *`object`* 

*Defined in [spec/spec.ts:4061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4061)*




<a id="codebuild.resources.project.properties-7.cache.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-cache"

*Defined in [spec/spec.ts:4064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4064)*





___
<a id="codebuild.resources.project.properties-7.cache.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4063)*





___
<a id="codebuild.resources.project.properties-7.cache.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "ProjectCache"

*Defined in [spec/spec.ts:4062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4062)*





___
<a id="codebuild.resources.project.properties-7.cache.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4065)*





___

___
<a id="codebuild.resources.project.properties-7.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:4006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4006)*




<a id="codebuild.resources.project.properties-7.description.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-description"

*Defined in [spec/spec.ts:4008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4008)*





___
<a id="codebuild.resources.project.properties-7.description.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4009)*





___
<a id="codebuild.resources.project.properties-7.description.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4007)*





___
<a id="codebuild.resources.project.properties-7.description.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4010)*





___

___
<a id="codebuild.resources.project.properties-7.encryptionkey"></a>

###  EncryptionKey

** EncryptionKey**:  *`object`* 

*Defined in [spec/spec.ts:4030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4030)*




<a id="codebuild.resources.project.properties-7.encryptionkey.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-encryptionkey"

*Defined in [spec/spec.ts:4032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4032)*





___
<a id="codebuild.resources.project.properties-7.encryptionkey.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4033)*





___
<a id="codebuild.resources.project.properties-7.encryptionkey.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4031)*





___
<a id="codebuild.resources.project.properties-7.encryptionkey.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4034)*





___

___
<a id="codebuild.resources.project.properties-7.environment-1"></a>

###  Environment

** Environment**:  *`object`* 

*Defined in [spec/spec.ts:4024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4024)*




<a id="codebuild.resources.project.properties-7.environment-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-environment"

*Defined in [spec/spec.ts:4027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4027)*





___
<a id="codebuild.resources.project.properties-7.environment-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4026)*





___
<a id="codebuild.resources.project.properties-7.environment-1.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "Environment"

*Defined in [spec/spec.ts:4025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4025)*





___
<a id="codebuild.resources.project.properties-7.environment-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4028)*





___

___
<a id="codebuild.resources.project.properties-7.name-10"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4049)*




<a id="codebuild.resources.project.properties-7.name-10.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-name"

*Defined in [spec/spec.ts:4051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4051)*





___
<a id="codebuild.resources.project.properties-7.name-10.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4052)*





___
<a id="codebuild.resources.project.properties-7.name-10.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4050)*





___
<a id="codebuild.resources.project.properties-7.name-10.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4053)*





___

___
<a id="codebuild.resources.project.properties-7.servicerole"></a>

###  ServiceRole

** ServiceRole**:  *`object`* 

*Defined in [spec/spec.ts:4012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4012)*




<a id="codebuild.resources.project.properties-7.servicerole.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-servicerole"

*Defined in [spec/spec.ts:4014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4014)*





___
<a id="codebuild.resources.project.properties-7.servicerole.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4015)*





___
<a id="codebuild.resources.project.properties-7.servicerole.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4013)*





___
<a id="codebuild.resources.project.properties-7.servicerole.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4016)*





___

___
<a id="codebuild.resources.project.properties-7.source-1"></a>

###  Source

** Source**:  *`object`* 

*Defined in [spec/spec.ts:4036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4036)*




<a id="codebuild.resources.project.properties-7.source-1.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-source"

*Defined in [spec/spec.ts:4039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4039)*





___
<a id="codebuild.resources.project.properties-7.source-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4038)*





___
<a id="codebuild.resources.project.properties-7.source-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "Source"

*Defined in [spec/spec.ts:4037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4037)*





___
<a id="codebuild.resources.project.properties-7.source-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4040)*





___

___
<a id="codebuild.resources.project.properties-7.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:4042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4042)*




<a id="codebuild.resources.project.properties-7.tags.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-tags"

*Defined in [spec/spec.ts:4045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4045)*





___
<a id="codebuild.resources.project.properties-7.tags.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:4046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4046)*





___
<a id="codebuild.resources.project.properties-7.tags.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4044)*





___
<a id="codebuild.resources.project.properties-7.tags.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4043)*





___
<a id="codebuild.resources.project.properties-7.tags.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4047)*





___

___
<a id="codebuild.resources.project.properties-7.timeoutinminutes"></a>

###  TimeoutInMinutes

** TimeoutInMinutes**:  *`object`* 

*Defined in [spec/spec.ts:4055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4055)*




<a id="codebuild.resources.project.properties-7.timeoutinminutes.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-timeoutinminutes"

*Defined in [spec/spec.ts:4057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4057)*





___
<a id="codebuild.resources.project.properties-7.timeoutinminutes.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:4058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4058)*





___
<a id="codebuild.resources.project.properties-7.timeoutinminutes.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4056)*





___
<a id="codebuild.resources.project.properties-7.timeoutinminutes.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4059)*





___

___
<a id="codebuild.resources.project.properties-7.vpcconfig-1"></a>

###  VpcConfig

** VpcConfig**:  *`object`* 

*Defined in [spec/spec.ts:4018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4018)*




<a id="codebuild.resources.project.properties-7.vpcconfig-1.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-vpcconfig"

*Defined in [spec/spec.ts:4021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4021)*





___
<a id="codebuild.resources.project.properties-7.vpcconfig-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4020)*





___
<a id="codebuild.resources.project.properties-7.vpcconfig-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "VpcConfig"

*Defined in [spec/spec.ts:4019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4019)*





___
<a id="codebuild.resources.project.properties-7.vpcconfig-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4022)*





___

___

___

___

___

<a id="codecommit"></a>

## Object literal: CodeCommit


<a id="codecommit.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:4311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4311)*




<a id="codecommit.models.repositorytrigger"></a>

###  RepositoryTrigger

** RepositoryTrigger**:  *`object`* 

*Defined in [spec/spec.ts:4312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4312)*




<a id="codecommit.models.repositorytrigger.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-repositorytrigger.html"

*Defined in [spec/spec.ts:4313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4313)*





___
<a id="codecommit.models.repositorytrigger.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeCommit::Repository.RepositoryTrigger"

*Defined in [spec/spec.ts:4348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4348)*





___
<a id="codecommit.models.repositorytrigger.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4314)*




<a id="codecommit.models.repositorytrigger.properties.branches"></a>

###  Branches

** Branches**:  *`object`* 

*Defined in [spec/spec.ts:4322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4322)*




<a id="codecommit.models.repositorytrigger.properties.branches.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-repositorytrigger.html#cfn-codecommit-repository-repositorytrigger-branches"

*Defined in [spec/spec.ts:4326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4326)*





___
<a id="codecommit.models.repositorytrigger.properties.branches.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4323)*





___
<a id="codecommit.models.repositorytrigger.properties.branches.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4325)*





___
<a id="codecommit.models.repositorytrigger.properties.branches.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4324)*





___
<a id="codecommit.models.repositorytrigger.properties.branches.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4327)*





___

___
<a id="codecommit.models.repositorytrigger.properties.customdata"></a>

###  CustomData

** CustomData**:  *`object`* 

*Defined in [spec/spec.ts:4329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4329)*




<a id="codecommit.models.repositorytrigger.properties.customdata.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-repositorytrigger.html#cfn-codecommit-repository-repositorytrigger-customdata"

*Defined in [spec/spec.ts:4331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4331)*





___
<a id="codecommit.models.repositorytrigger.properties.customdata.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4332)*





___
<a id="codecommit.models.repositorytrigger.properties.customdata.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4330)*





___
<a id="codecommit.models.repositorytrigger.properties.customdata.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4333)*





___

___
<a id="codecommit.models.repositorytrigger.properties.destinationarn"></a>

###  DestinationArn

** DestinationArn**:  *`object`* 

*Defined in [spec/spec.ts:4335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4335)*




<a id="codecommit.models.repositorytrigger.properties.destinationarn.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-repositorytrigger.html#cfn-codecommit-repository-repositorytrigger-destinationarn"

*Defined in [spec/spec.ts:4337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4337)*





___
<a id="codecommit.models.repositorytrigger.properties.destinationarn.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4338)*





___
<a id="codecommit.models.repositorytrigger.properties.destinationarn.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4336)*





___
<a id="codecommit.models.repositorytrigger.properties.destinationarn.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4339)*





___

___
<a id="codecommit.models.repositorytrigger.properties.events"></a>

###  Events

** Events**:  *`object`* 

*Defined in [spec/spec.ts:4315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4315)*




<a id="codecommit.models.repositorytrigger.properties.events.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-repositorytrigger.html#cfn-codecommit-repository-repositorytrigger-events"

*Defined in [spec/spec.ts:4319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4319)*





___
<a id="codecommit.models.repositorytrigger.properties.events.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4316)*





___
<a id="codecommit.models.repositorytrigger.properties.events.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4318)*





___
<a id="codecommit.models.repositorytrigger.properties.events.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4317](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4317)*





___
<a id="codecommit.models.repositorytrigger.properties.events.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4320)*





___

___
<a id="codecommit.models.repositorytrigger.properties.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4341)*




<a id="codecommit.models.repositorytrigger.properties.name-1.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codecommit-repository-repositorytrigger.html#cfn-codecommit-repository-repositorytrigger-name"

*Defined in [spec/spec.ts:4343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4343)*





___
<a id="codecommit.models.repositorytrigger.properties.name-1.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4344)*





___
<a id="codecommit.models.repositorytrigger.properties.name-1.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4342)*





___
<a id="codecommit.models.repositorytrigger.properties.name-1.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4345)*





___

___

___

___

___
<a id="codecommit.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:4270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4270)*




<a id="codecommit.resources.repository"></a>

###  Repository

** Repository**:  *`object`* 

*Defined in [spec/spec.ts:4271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4271)*




<a id="codecommit.resources.repository.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html"

*Defined in [spec/spec.ts:4272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4272)*





___
<a id="codecommit.resources.repository.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeCommit::Repository"

*Defined in [spec/spec.ts:4308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4308)*





___
<a id="codecommit.resources.repository.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:4273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4273)*




<a id="codecommit.resources.repository.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:4280](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4280)*




<a id="codecommit.resources.repository.attributes.arn.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4281)*





___

___
<a id="codecommit.resources.repository.attributes.cloneurlhttp"></a>

###  CloneUrlHttp

** CloneUrlHttp**:  *`object`* 

*Defined in [spec/spec.ts:4274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4274)*




<a id="codecommit.resources.repository.attributes.cloneurlhttp.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4275)*





___

___
<a id="codecommit.resources.repository.attributes.cloneurlssh"></a>

###  CloneUrlSsh

** CloneUrlSsh**:  *`object`* 

*Defined in [spec/spec.ts:4277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4277)*




<a id="codecommit.resources.repository.attributes.cloneurlssh.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4278)*





___

___
<a id="codecommit.resources.repository.attributes.name-3"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4283)*




<a id="codecommit.resources.repository.attributes.name-3.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4284)*





___

___

___
<a id="codecommit.resources.repository.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4287)*




<a id="codecommit.resources.repository.properties-1.repositorydescription"></a>

###  RepositoryDescription

** RepositoryDescription**:  *`object`* 

*Defined in [spec/spec.ts:4301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4301)*




<a id="codecommit.resources.repository.properties-1.repositorydescription.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositorydescription"

*Defined in [spec/spec.ts:4303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4303)*





___
<a id="codecommit.resources.repository.properties-1.repositorydescription.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4304)*





___
<a id="codecommit.resources.repository.properties-1.repositorydescription.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4302)*





___
<a id="codecommit.resources.repository.properties-1.repositorydescription.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4305)*





___

___
<a id="codecommit.resources.repository.properties-1.repositoryname"></a>

###  RepositoryName

** RepositoryName**:  *`object`* 

*Defined in [spec/spec.ts:4288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4288)*




<a id="codecommit.resources.repository.properties-1.repositoryname.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-repositoryname"

*Defined in [spec/spec.ts:4290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4290)*





___
<a id="codecommit.resources.repository.properties-1.repositoryname.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4291)*





___
<a id="codecommit.resources.repository.properties-1.repositoryname.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4289)*





___
<a id="codecommit.resources.repository.properties-1.repositoryname.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4292)*





___

___
<a id="codecommit.resources.repository.properties-1.triggers"></a>

###  Triggers

** Triggers**:  *`object`* 

*Defined in [spec/spec.ts:4294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4294)*




<a id="codecommit.resources.repository.properties-1.triggers.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codecommit-repository.html#cfn-codecommit-repository-triggers"

*Defined in [spec/spec.ts:4297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4297)*





___
<a id="codecommit.resources.repository.properties-1.triggers.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "RepositoryTrigger"

*Defined in [spec/spec.ts:4298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4298)*





___
<a id="codecommit.resources.repository.properties-1.triggers.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4296)*





___
<a id="codecommit.resources.repository.properties-1.triggers.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4295)*





___
<a id="codecommit.resources.repository.properties-1.triggers.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:4299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4299)*





___

___

___

___

___

<a id="codedeploy"></a>

## Object literal: CodeDeploy


<a id="codedeploy.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:4483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4483)*




<a id="codedeploy.models.alarm"></a>

###  Alarm

** Alarm**:  *`object`* 

*Defined in [spec/spec.ts:4502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4502)*




<a id="codedeploy.models.alarm.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarm.html"

*Defined in [spec/spec.ts:4503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4503)*





___
<a id="codedeploy.models.alarm.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.Alarm"

*Defined in [spec/spec.ts:4512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4512)*





___
<a id="codedeploy.models.alarm.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4504)*




<a id="codedeploy.models.alarm.properties.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4505)*




<a id="codedeploy.models.alarm.properties.name-1.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarm.html#cfn-codedeploy-deploymentgroup-alarm-name"

*Defined in [spec/spec.ts:4506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4506)*





___
<a id="codedeploy.models.alarm.properties.name-1.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4507)*





___
<a id="codedeploy.models.alarm.properties.name-1.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4508)*





___
<a id="codedeploy.models.alarm.properties.name-1.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4509)*





___

___

___

___
<a id="codedeploy.models.alarmconfiguration"></a>

###  AlarmConfiguration

** AlarmConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:4514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4514)*




<a id="codedeploy.models.alarmconfiguration.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html"

*Defined in [spec/spec.ts:4515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4515)*





___
<a id="codedeploy.models.alarmconfiguration.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.AlarmConfiguration"

*Defined in [spec/spec.ts:4538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4538)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4516)*




<a id="codedeploy.models.alarmconfiguration.properties-1.alarms"></a>

###  Alarms

** Alarms**:  *`object`* 

*Defined in [spec/spec.ts:4517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4517)*




<a id="codedeploy.models.alarmconfiguration.properties-1.alarms.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-alarms"

*Defined in [spec/spec.ts:4518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4518)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.alarms.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4519)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.alarms.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Alarm"

*Defined in [spec/spec.ts:4520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4520)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.alarms.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4521)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.alarms.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4522)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.alarms.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4523)*





___

___
<a id="codedeploy.models.alarmconfiguration.properties-1.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:4525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4525)*




<a id="codedeploy.models.alarmconfiguration.properties-1.enabled.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-enabled"

*Defined in [spec/spec.ts:4526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4526)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.enabled.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4527)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.enabled.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4528)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.enabled.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4529)*





___

___
<a id="codedeploy.models.alarmconfiguration.properties-1.ignorepollalarmfailure"></a>

###  IgnorePollAlarmFailure

** IgnorePollAlarmFailure**:  *`object`* 

*Defined in [spec/spec.ts:4531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4531)*




<a id="codedeploy.models.alarmconfiguration.properties-1.ignorepollalarmfailure.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-alarmconfiguration.html#cfn-codedeploy-deploymentgroup-alarmconfiguration-ignorepollalarmfailure"

*Defined in [spec/spec.ts:4532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4532)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.ignorepollalarmfailure.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4533)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.ignorepollalarmfailure.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4534)*





___
<a id="codedeploy.models.alarmconfiguration.properties-1.ignorepollalarmfailure.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4535)*





___

___

___

___
<a id="codedeploy.models.autorollbackconfiguration"></a>

###  AutoRollbackConfiguration

** AutoRollbackConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:4540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4540)*




<a id="codedeploy.models.autorollbackconfiguration.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html"

*Defined in [spec/spec.ts:4541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4541)*





___
<a id="codedeploy.models.autorollbackconfiguration.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.AutoRollbackConfiguration"

*Defined in [spec/spec.ts:4558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4558)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4542)*




<a id="codedeploy.models.autorollbackconfiguration.properties-2.enabled-1"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:4543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4543)*




<a id="codedeploy.models.autorollbackconfiguration.properties-2.enabled-1.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-enabled"

*Defined in [spec/spec.ts:4544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4544)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.enabled-1.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4545)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.enabled-1.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4546)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.enabled-1.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4547)*





___

___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.events"></a>

###  Events

** Events**:  *`object`* 

*Defined in [spec/spec.ts:4549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4549)*




<a id="codedeploy.models.autorollbackconfiguration.properties-2.events.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-autorollbackconfiguration.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration-events"

*Defined in [spec/spec.ts:4550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4550)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.events.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4551)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.events.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4552)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.events.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4553)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.events.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4554)*





___
<a id="codedeploy.models.autorollbackconfiguration.properties-2.events.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4555)*





___

___

___

___
<a id="codedeploy.models.deployment"></a>

###  Deployment

** Deployment**:  *`object`* 

*Defined in [spec/spec.ts:4560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4560)*




<a id="codedeploy.models.deployment.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html"

*Defined in [spec/spec.ts:4561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4561)*





___
<a id="codedeploy.models.deployment.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.Deployment"

*Defined in [spec/spec.ts:4582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4582)*





___
<a id="codedeploy.models.deployment.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4562)*




<a id="codedeploy.models.deployment.properties-3.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:4563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4563)*




<a id="codedeploy.models.deployment.properties-3.description.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-description"

*Defined in [spec/spec.ts:4564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4564)*





___
<a id="codedeploy.models.deployment.properties-3.description.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4565)*





___
<a id="codedeploy.models.deployment.properties-3.description.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4566)*





___
<a id="codedeploy.models.deployment.properties-3.description.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4567)*





___

___
<a id="codedeploy.models.deployment.properties-3.ignoreapplicationstopfailures"></a>

###  IgnoreApplicationStopFailures

** IgnoreApplicationStopFailures**:  *`object`* 

*Defined in [spec/spec.ts:4569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4569)*




<a id="codedeploy.models.deployment.properties-3.ignoreapplicationstopfailures.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-ignoreapplicationstopfailures"

*Defined in [spec/spec.ts:4570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4570)*





___
<a id="codedeploy.models.deployment.properties-3.ignoreapplicationstopfailures.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4571)*





___
<a id="codedeploy.models.deployment.properties-3.ignoreapplicationstopfailures.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4572)*





___
<a id="codedeploy.models.deployment.properties-3.ignoreapplicationstopfailures.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4573)*





___

___
<a id="codedeploy.models.deployment.properties-3.revision"></a>

###  Revision

** Revision**:  *`object`* 

*Defined in [spec/spec.ts:4575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4575)*




<a id="codedeploy.models.deployment.properties-3.revision.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision"

*Defined in [spec/spec.ts:4576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4576)*





___
<a id="codedeploy.models.deployment.properties-3.revision.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4577)*





___
<a id="codedeploy.models.deployment.properties-3.revision.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "RevisionLocation"

*Defined in [spec/spec.ts:4578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4578)*





___
<a id="codedeploy.models.deployment.properties-3.revision.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4579)*





___

___

___

___
<a id="codedeploy.models.deploymentstyle"></a>

###  DeploymentStyle

** DeploymentStyle**:  *`object`* 

*Defined in [spec/spec.ts:4584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4584)*




<a id="codedeploy.models.deploymentstyle.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html"

*Defined in [spec/spec.ts:4585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4585)*





___
<a id="codedeploy.models.deploymentstyle.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.DeploymentStyle"

*Defined in [spec/spec.ts:4600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4600)*





___
<a id="codedeploy.models.deploymentstyle.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4586)*




<a id="codedeploy.models.deploymentstyle.properties-4.deploymentoption"></a>

###  DeploymentOption

** DeploymentOption**:  *`object`* 

*Defined in [spec/spec.ts:4587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4587)*




<a id="codedeploy.models.deploymentstyle.properties-4.deploymentoption.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymentoption"

*Defined in [spec/spec.ts:4588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4588)*





___
<a id="codedeploy.models.deploymentstyle.properties-4.deploymentoption.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4589)*





___
<a id="codedeploy.models.deploymentstyle.properties-4.deploymentoption.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4590)*





___
<a id="codedeploy.models.deploymentstyle.properties-4.deploymentoption.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4591)*





___

___
<a id="codedeploy.models.deploymentstyle.properties-4.deploymenttype"></a>

###  DeploymentType

** DeploymentType**:  *`object`* 

*Defined in [spec/spec.ts:4593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4593)*




<a id="codedeploy.models.deploymentstyle.properties-4.deploymenttype.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deploymentstyle.html#cfn-codedeploy-deploymentgroup-deploymentstyle-deploymenttype"

*Defined in [spec/spec.ts:4594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4594)*





___
<a id="codedeploy.models.deploymentstyle.properties-4.deploymenttype.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4595)*





___
<a id="codedeploy.models.deploymentstyle.properties-4.deploymenttype.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4596)*





___
<a id="codedeploy.models.deploymentstyle.properties-4.deploymenttype.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4597)*





___

___

___

___
<a id="codedeploy.models.ec2tagfilter"></a>

###  EC2TagFilter

** EC2TagFilter**:  *`object`* 

*Defined in [spec/spec.ts:4602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4602)*




<a id="codedeploy.models.ec2tagfilter.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ec2tagfilters.html"

*Defined in [spec/spec.ts:4603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4603)*





___
<a id="codedeploy.models.ec2tagfilter.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.EC2TagFilter"

*Defined in [spec/spec.ts:4624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4624)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4604)*




<a id="codedeploy.models.ec2tagfilter.properties-5.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:4605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4605)*




<a id="codedeploy.models.ec2tagfilter.properties-5.key.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ec2tagfilters.html#cfn-properties-codedeploy-deploymentgroup-ec2tagfilters-key"

*Defined in [spec/spec.ts:4606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4606)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.key.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4607)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.key.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4608)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.key.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4609)*





___

___
<a id="codedeploy.models.ec2tagfilter.properties-5.type-3"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4611)*




<a id="codedeploy.models.ec2tagfilter.properties-5.type-3.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ec2tagfilters.html#cfn-properties-codedeploy-deploymentgroup-ec2tagfilters-type"

*Defined in [spec/spec.ts:4612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4612)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.type-3.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4613)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.type-3.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4614)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.type-3.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4615)*





___

___
<a id="codedeploy.models.ec2tagfilter.properties-5.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:4617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4617)*




<a id="codedeploy.models.ec2tagfilter.properties-5.value.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-ec2tagfilters.html#cfn-properties-codedeploy-deploymentgroup-ec2tagfilters-value"

*Defined in [spec/spec.ts:4618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4618)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.value.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4619)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.value.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4620)*





___
<a id="codedeploy.models.ec2tagfilter.properties-5.value.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4621)*





___

___

___

___
<a id="codedeploy.models.elbinfo"></a>

###  ELBInfo

** ELBInfo**:  *`object`* 

*Defined in [spec/spec.ts:4626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4626)*




<a id="codedeploy.models.elbinfo.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-elbinfo.html"

*Defined in [spec/spec.ts:4627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4627)*





___
<a id="codedeploy.models.elbinfo.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.ELBInfo"

*Defined in [spec/spec.ts:4636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4636)*





___
<a id="codedeploy.models.elbinfo.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4628)*




<a id="codedeploy.models.elbinfo.properties-6.name-8"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4629)*




<a id="codedeploy.models.elbinfo.properties-6.name-8.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-elbinfo.html#cfn-codedeploy-deploymentgroup-elbinfo-name"

*Defined in [spec/spec.ts:4630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4630)*





___
<a id="codedeploy.models.elbinfo.properties-6.name-8.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4631)*





___
<a id="codedeploy.models.elbinfo.properties-6.name-8.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4632)*





___
<a id="codedeploy.models.elbinfo.properties-6.name-8.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4633)*





___

___

___

___
<a id="codedeploy.models.githublocation"></a>

###  GitHubLocation

** GitHubLocation**:  *`object`* 

*Defined in [spec/spec.ts:4638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4638)*




<a id="codedeploy.models.githublocation.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html"

*Defined in [spec/spec.ts:4639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4639)*





___
<a id="codedeploy.models.githublocation.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.GitHubLocation"

*Defined in [spec/spec.ts:4654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4654)*





___
<a id="codedeploy.models.githublocation.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4640)*




<a id="codedeploy.models.githublocation.properties-7.commitid"></a>

###  CommitId

** CommitId**:  *`object`* 

*Defined in [spec/spec.ts:4641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4641)*




<a id="codedeploy.models.githublocation.properties-7.commitid.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-commitid"

*Defined in [spec/spec.ts:4642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4642)*





___
<a id="codedeploy.models.githublocation.properties-7.commitid.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4643)*





___
<a id="codedeploy.models.githublocation.properties-7.commitid.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4644)*





___
<a id="codedeploy.models.githublocation.properties-7.commitid.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4645)*





___

___
<a id="codedeploy.models.githublocation.properties-7.repository"></a>

###  Repository

** Repository**:  *`object`* 

*Defined in [spec/spec.ts:4647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4647)*




<a id="codedeploy.models.githublocation.properties-7.repository.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-githublocation.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation-repository"

*Defined in [spec/spec.ts:4648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4648)*





___
<a id="codedeploy.models.githublocation.properties-7.repository.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4649)*





___
<a id="codedeploy.models.githublocation.properties-7.repository.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4650)*





___
<a id="codedeploy.models.githublocation.properties-7.repository.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4651)*





___

___

___

___
<a id="codedeploy.models.loadbalancerinfo"></a>

###  LoadBalancerInfo

** LoadBalancerInfo**:  *`object`* 

*Defined in [spec/spec.ts:4656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4656)*




<a id="codedeploy.models.loadbalancerinfo.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-loadbalancerinfo.html"

*Defined in [spec/spec.ts:4657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4657)*





___
<a id="codedeploy.models.loadbalancerinfo.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.LoadBalancerInfo"

*Defined in [spec/spec.ts:4676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4676)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4658)*




<a id="codedeploy.models.loadbalancerinfo.properties-8.elbinfolist"></a>

###  ElbInfoList

** ElbInfoList**:  *`object`* 

*Defined in [spec/spec.ts:4659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4659)*




<a id="codedeploy.models.loadbalancerinfo.properties-8.elbinfolist.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-loadbalancerinfo.html#cfn-codedeploy-deploymentgroup-loadbalancerinfo-elbinfolist"

*Defined in [spec/spec.ts:4660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4660)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.elbinfolist.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4661)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.elbinfolist.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ELBInfo"

*Defined in [spec/spec.ts:4662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4662)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.elbinfolist.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4663)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.elbinfolist.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4664)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.elbinfolist.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4665)*





___

___
<a id="codedeploy.models.loadbalancerinfo.properties-8.targetgroupinfolist"></a>

###  TargetGroupInfoList

** TargetGroupInfoList**:  *`object`* 

*Defined in [spec/spec.ts:4667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4667)*




<a id="codedeploy.models.loadbalancerinfo.properties-8.targetgroupinfolist.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-loadbalancerinfo.html#cfn-codedeploy-deploymentgroup-loadbalancerinfo-targetgroupinfolist"

*Defined in [spec/spec.ts:4668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4668)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.targetgroupinfolist.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4669)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.targetgroupinfolist.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "TargetGroupInfo"

*Defined in [spec/spec.ts:4670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4670)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.targetgroupinfolist.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4671)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.targetgroupinfolist.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4672)*





___
<a id="codedeploy.models.loadbalancerinfo.properties-8.targetgroupinfolist.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4673)*





___

___

___

___
<a id="codedeploy.models.minimumhealthyhosts"></a>

###  MinimumHealthyHosts

** MinimumHealthyHosts**:  *`object`* 

*Defined in [spec/spec.ts:4484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4484)*




<a id="codedeploy.models.minimumhealthyhosts.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html"

*Defined in [spec/spec.ts:4485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4485)*





___
<a id="codedeploy.models.minimumhealthyhosts.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentConfig.MinimumHealthyHosts"

*Defined in [spec/spec.ts:4500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4500)*





___
<a id="codedeploy.models.minimumhealthyhosts.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4486)*




<a id="codedeploy.models.minimumhealthyhosts.properties-9.type-6"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4487)*




<a id="codedeploy.models.minimumhealthyhosts.properties-9.type-6.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-type"

*Defined in [spec/spec.ts:4488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4488)*





___
<a id="codedeploy.models.minimumhealthyhosts.properties-9.type-6.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4489)*





___
<a id="codedeploy.models.minimumhealthyhosts.properties-9.type-6.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4490)*





___
<a id="codedeploy.models.minimumhealthyhosts.properties-9.type-6.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4491)*





___

___
<a id="codedeploy.models.minimumhealthyhosts.properties-9.value-1"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:4493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4493)*




<a id="codedeploy.models.minimumhealthyhosts.properties-9.value-1.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentconfig-minimumhealthyhosts.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts-value"

*Defined in [spec/spec.ts:4494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4494)*





___
<a id="codedeploy.models.minimumhealthyhosts.properties-9.value-1.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:4495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4495)*





___
<a id="codedeploy.models.minimumhealthyhosts.properties-9.value-1.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4496)*





___
<a id="codedeploy.models.minimumhealthyhosts.properties-9.value-1.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4497)*





___

___

___

___
<a id="codedeploy.models.revisionlocation"></a>

###  RevisionLocation

** RevisionLocation**:  *`object`* 

*Defined in [spec/spec.ts:4678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4678)*




<a id="codedeploy.models.revisionlocation.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html"

*Defined in [spec/spec.ts:4679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4679)*





___
<a id="codedeploy.models.revisionlocation.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.RevisionLocation"

*Defined in [spec/spec.ts:4700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4700)*





___
<a id="codedeploy.models.revisionlocation.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4680)*




<a id="codedeploy.models.revisionlocation.properties-10.githublocation-1"></a>

###  GitHubLocation

** GitHubLocation**:  *`object`* 

*Defined in [spec/spec.ts:4681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4681)*




<a id="codedeploy.models.revisionlocation.properties-10.githublocation-1.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-githublocation"

*Defined in [spec/spec.ts:4682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4682)*





___
<a id="codedeploy.models.revisionlocation.properties-10.githublocation-1.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4683)*





___
<a id="codedeploy.models.revisionlocation.properties-10.githublocation-1.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "GitHubLocation"

*Defined in [spec/spec.ts:4684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4684)*





___
<a id="codedeploy.models.revisionlocation.properties-10.githublocation-1.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4685)*





___

___
<a id="codedeploy.models.revisionlocation.properties-10.revisiontype"></a>

###  RevisionType

** RevisionType**:  *`object`* 

*Defined in [spec/spec.ts:4687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4687)*




<a id="codedeploy.models.revisionlocation.properties-10.revisiontype.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-revisiontype"

*Defined in [spec/spec.ts:4688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4688)*





___
<a id="codedeploy.models.revisionlocation.properties-10.revisiontype.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4689)*





___
<a id="codedeploy.models.revisionlocation.properties-10.revisiontype.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4690)*





___
<a id="codedeploy.models.revisionlocation.properties-10.revisiontype.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4691)*





___

___
<a id="codedeploy.models.revisionlocation.properties-10.s3location"></a>

###  S3Location

** S3Location**:  *`object`* 

*Defined in [spec/spec.ts:4693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4693)*




<a id="codedeploy.models.revisionlocation.properties-10.s3location.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location"

*Defined in [spec/spec.ts:4694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4694)*





___
<a id="codedeploy.models.revisionlocation.properties-10.s3location.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4695)*





___
<a id="codedeploy.models.revisionlocation.properties-10.s3location.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "S3Location"

*Defined in [spec/spec.ts:4696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4696)*





___
<a id="codedeploy.models.revisionlocation.properties-10.s3location.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4697)*





___

___

___

___
<a id="codedeploy.models.s3location-1"></a>

###  S3Location

** S3Location**:  *`object`* 

*Defined in [spec/spec.ts:4702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4702)*




<a id="codedeploy.models.s3location-1.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html"

*Defined in [spec/spec.ts:4703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4703)*





___
<a id="codedeploy.models.s3location-1.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.S3Location"

*Defined in [spec/spec.ts:4736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4736)*





___
<a id="codedeploy.models.s3location-1.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4704)*




<a id="codedeploy.models.s3location-1.properties-11.bucket"></a>

###  Bucket

** Bucket**:  *`object`* 

*Defined in [spec/spec.ts:4705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4705)*




<a id="codedeploy.models.s3location-1.properties-11.bucket.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bucket"

*Defined in [spec/spec.ts:4706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4706)*





___
<a id="codedeploy.models.s3location-1.properties-11.bucket.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4707)*





___
<a id="codedeploy.models.s3location-1.properties-11.bucket.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4708)*





___
<a id="codedeploy.models.s3location-1.properties-11.bucket.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4709)*





___

___
<a id="codedeploy.models.s3location-1.properties-11.bundletype"></a>

###  BundleType

** BundleType**:  *`object`* 

*Defined in [spec/spec.ts:4711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4711)*




<a id="codedeploy.models.s3location-1.properties-11.bundletype.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-bundletype"

*Defined in [spec/spec.ts:4712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4712)*





___
<a id="codedeploy.models.s3location-1.properties-11.bundletype.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4713)*





___
<a id="codedeploy.models.s3location-1.properties-11.bundletype.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4714)*





___
<a id="codedeploy.models.s3location-1.properties-11.bundletype.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4715)*





___

___
<a id="codedeploy.models.s3location-1.properties-11.etag"></a>

###  ETag

** ETag**:  *`object`* 

*Defined in [spec/spec.ts:4717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4717)*




<a id="codedeploy.models.s3location-1.properties-11.etag.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-etag"

*Defined in [spec/spec.ts:4718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4718)*





___
<a id="codedeploy.models.s3location-1.properties-11.etag.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4719)*





___
<a id="codedeploy.models.s3location-1.properties-11.etag.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4720)*





___
<a id="codedeploy.models.s3location-1.properties-11.etag.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4721)*





___

___
<a id="codedeploy.models.s3location-1.properties-11.key-1"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:4723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4723)*




<a id="codedeploy.models.s3location-1.properties-11.key-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-key"

*Defined in [spec/spec.ts:4724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4724)*





___
<a id="codedeploy.models.s3location-1.properties-11.key-1.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4725)*





___
<a id="codedeploy.models.s3location-1.properties-11.key-1.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4726)*





___
<a id="codedeploy.models.s3location-1.properties-11.key-1.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4727)*





___

___
<a id="codedeploy.models.s3location-1.properties-11.version"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:4729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4729)*




<a id="codedeploy.models.s3location-1.properties-11.version.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-deployment-revision-s3location.html#cfn-properties-codedeploy-deploymentgroup-deployment-revision-s3location-value"

*Defined in [spec/spec.ts:4730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4730)*





___
<a id="codedeploy.models.s3location-1.properties-11.version.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4731)*





___
<a id="codedeploy.models.s3location-1.properties-11.version.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4732)*





___
<a id="codedeploy.models.s3location-1.properties-11.version.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4733)*





___

___

___

___
<a id="codedeploy.models.tagfilter"></a>

###  TagFilter

** TagFilter**:  *`object`* 

*Defined in [spec/spec.ts:4738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4738)*




<a id="codedeploy.models.tagfilter.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-onpremisesinstancetagfilters.html"

*Defined in [spec/spec.ts:4739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4739)*





___
<a id="codedeploy.models.tagfilter.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.TagFilter"

*Defined in [spec/spec.ts:4760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4760)*





___
<a id="codedeploy.models.tagfilter.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4740)*




<a id="codedeploy.models.tagfilter.properties-12.key-2"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:4741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4741)*




<a id="codedeploy.models.tagfilter.properties-12.key-2.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-onpremisesinstancetagfilters.html#cfn-properties-codedeploy-deploymentgroup-onpremisesinstancetagfilters-key"

*Defined in [spec/spec.ts:4742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4742)*





___
<a id="codedeploy.models.tagfilter.properties-12.key-2.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4743)*





___
<a id="codedeploy.models.tagfilter.properties-12.key-2.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4744)*





___
<a id="codedeploy.models.tagfilter.properties-12.key-2.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4745)*





___

___
<a id="codedeploy.models.tagfilter.properties-12.type-9"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4747)*




<a id="codedeploy.models.tagfilter.properties-12.type-9.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-onpremisesinstancetagfilters.html#cfn-properties-codedeploy-deploymentgroup-onpremisesinstancetagfilters-type"

*Defined in [spec/spec.ts:4748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4748)*





___
<a id="codedeploy.models.tagfilter.properties-12.type-9.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4749)*





___
<a id="codedeploy.models.tagfilter.properties-12.type-9.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4750)*





___
<a id="codedeploy.models.tagfilter.properties-12.type-9.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4751)*





___

___
<a id="codedeploy.models.tagfilter.properties-12.value-2"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:4753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4753)*




<a id="codedeploy.models.tagfilter.properties-12.value-2.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-onpremisesinstancetagfilters.html#cfn-properties-codedeploy-deploymentgroup-onpremisesinstancetagfilters-value"

*Defined in [spec/spec.ts:4754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4754)*





___
<a id="codedeploy.models.tagfilter.properties-12.value-2.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4755)*





___
<a id="codedeploy.models.tagfilter.properties-12.value-2.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4756)*





___
<a id="codedeploy.models.tagfilter.properties-12.value-2.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4757)*





___

___

___

___
<a id="codedeploy.models.targetgroupinfo"></a>

###  TargetGroupInfo

** TargetGroupInfo**:  *`object`* 

*Defined in [spec/spec.ts:4762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4762)*




<a id="codedeploy.models.targetgroupinfo.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-targetgroupinfo.html"

*Defined in [spec/spec.ts:4763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4763)*





___
<a id="codedeploy.models.targetgroupinfo.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.TargetGroupInfo"

*Defined in [spec/spec.ts:4772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4772)*





___
<a id="codedeploy.models.targetgroupinfo.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4764)*




<a id="codedeploy.models.targetgroupinfo.properties-13.name-16"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4765)*




<a id="codedeploy.models.targetgroupinfo.properties-13.name-16.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-targetgroupinfo.html#cfn-codedeploy-deploymentgroup-targetgroupinfo-name"

*Defined in [spec/spec.ts:4766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4766)*





___
<a id="codedeploy.models.targetgroupinfo.properties-13.name-16.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4767)*





___
<a id="codedeploy.models.targetgroupinfo.properties-13.name-16.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4768)*





___
<a id="codedeploy.models.targetgroupinfo.properties-13.name-16.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4769)*





___

___

___

___
<a id="codedeploy.models.triggerconfig"></a>

###  TriggerConfig

** TriggerConfig**:  *`object`* 

*Defined in [spec/spec.ts:4774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4774)*




<a id="codedeploy.models.triggerconfig.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html"

*Defined in [spec/spec.ts:4775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4775)*





___
<a id="codedeploy.models.triggerconfig.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup.TriggerConfig"

*Defined in [spec/spec.ts:4798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4798)*





___
<a id="codedeploy.models.triggerconfig.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4776)*




<a id="codedeploy.models.triggerconfig.properties-14.triggerevents"></a>

###  TriggerEvents

** TriggerEvents**:  *`object`* 

*Defined in [spec/spec.ts:4777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4777)*




<a id="codedeploy.models.triggerconfig.properties-14.triggerevents.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html#cfn-codedeploy-deploymentgroup-triggerconfig-triggerevents"

*Defined in [spec/spec.ts:4778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4778)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggerevents.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4779)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggerevents.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4780)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggerevents.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4781)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggerevents.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4782)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggerevents.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4783)*





___

___
<a id="codedeploy.models.triggerconfig.properties-14.triggername"></a>

###  TriggerName

** TriggerName**:  *`object`* 

*Defined in [spec/spec.ts:4785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4785)*




<a id="codedeploy.models.triggerconfig.properties-14.triggername.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html#cfn-codedeploy-deploymentgroup-triggerconfig-triggername"

*Defined in [spec/spec.ts:4786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4786)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggername.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4787)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggername.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4788)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggername.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4789)*





___

___
<a id="codedeploy.models.triggerconfig.properties-14.triggertargetarn"></a>

###  TriggerTargetArn

** TriggerTargetArn**:  *`object`* 

*Defined in [spec/spec.ts:4791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4791)*




<a id="codedeploy.models.triggerconfig.properties-14.triggertargetarn.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-triggerconfig.html#cfn-codedeploy-deploymentgroup-triggerconfig-triggertargetarn"

*Defined in [spec/spec.ts:4792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4792)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggertargetarn.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4793)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggertargetarn.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4794)*





___
<a id="codedeploy.models.triggerconfig.properties-14.triggertargetarn.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4795)*





___

___

___

___

___
<a id="codedeploy.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:4353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4353)*




<a id="codedeploy.resources.application"></a>

###  Application

** Application**:  *`object`* 

*Defined in [spec/spec.ts:4354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4354)*




<a id="codedeploy.resources.application.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html"

*Defined in [spec/spec.ts:4355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4355)*





___
<a id="codedeploy.resources.application.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::Application"

*Defined in [spec/spec.ts:4370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4370)*





___
<a id="codedeploy.resources.application.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4356)*




<a id="codedeploy.resources.application.properties-15.applicationname"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:4357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4357)*




<a id="codedeploy.resources.application.properties-15.applicationname.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-applicationname"

*Defined in [spec/spec.ts:4358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4358)*





___
<a id="codedeploy.resources.application.properties-15.applicationname.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4359)*





___
<a id="codedeploy.resources.application.properties-15.applicationname.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4360)*





___
<a id="codedeploy.resources.application.properties-15.applicationname.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4361)*





___

___
<a id="codedeploy.resources.application.properties-15.computeplatform"></a>

###  ComputePlatform

** ComputePlatform**:  *`object`* 

*Defined in [spec/spec.ts:4363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4363)*




<a id="codedeploy.resources.application.properties-15.computeplatform.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-application.html#cfn-codedeploy-application-computeplatform"

*Defined in [spec/spec.ts:4364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4364)*





___
<a id="codedeploy.resources.application.properties-15.computeplatform.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4365)*





___
<a id="codedeploy.resources.application.properties-15.computeplatform.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4366)*





___
<a id="codedeploy.resources.application.properties-15.computeplatform.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4367)*





___

___

___

___
<a id="codedeploy.resources.deploymentconfig"></a>

###  DeploymentConfig

** DeploymentConfig**:  *`object`* 

*Defined in [spec/spec.ts:4372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4372)*




<a id="codedeploy.resources.deploymentconfig.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html"

*Defined in [spec/spec.ts:4373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4373)*





___
<a id="codedeploy.resources.deploymentconfig.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentConfig"

*Defined in [spec/spec.ts:4388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4388)*





___
<a id="codedeploy.resources.deploymentconfig.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4374)*




<a id="codedeploy.resources.deploymentconfig.properties-16.deploymentconfigname"></a>

###  DeploymentConfigName

** DeploymentConfigName**:  *`object`* 

*Defined in [spec/spec.ts:4375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4375)*




<a id="codedeploy.resources.deploymentconfig.properties-16.deploymentconfigname.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-deploymentconfigname"

*Defined in [spec/spec.ts:4376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4376)*





___
<a id="codedeploy.resources.deploymentconfig.properties-16.deploymentconfigname.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4377)*





___
<a id="codedeploy.resources.deploymentconfig.properties-16.deploymentconfigname.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4378)*





___
<a id="codedeploy.resources.deploymentconfig.properties-16.deploymentconfigname.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4379)*





___

___
<a id="codedeploy.resources.deploymentconfig.properties-16.minimumhealthyhosts-1"></a>

###  MinimumHealthyHosts

** MinimumHealthyHosts**:  *`object`* 

*Defined in [spec/spec.ts:4381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4381)*




<a id="codedeploy.resources.deploymentconfig.properties-16.minimumhealthyhosts-1.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentconfig.html#cfn-codedeploy-deploymentconfig-minimumhealthyhosts"

*Defined in [spec/spec.ts:4382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4382)*





___
<a id="codedeploy.resources.deploymentconfig.properties-16.minimumhealthyhosts-1.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4383)*





___
<a id="codedeploy.resources.deploymentconfig.properties-16.minimumhealthyhosts-1.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "MinimumHealthyHosts"

*Defined in [spec/spec.ts:4384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4384)*





___
<a id="codedeploy.resources.deploymentconfig.properties-16.minimumhealthyhosts-1.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4385)*





___

___

___

___
<a id="codedeploy.resources.deploymentgroup"></a>

###  DeploymentGroup

** DeploymentGroup**:  *`object`* 

*Defined in [spec/spec.ts:4390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4390)*




<a id="codedeploy.resources.deploymentgroup.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html"

*Defined in [spec/spec.ts:4391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4391)*





___
<a id="codedeploy.resources.deploymentgroup.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodeDeploy::DeploymentGroup"

*Defined in [spec/spec.ts:4480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4480)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4392)*




<a id="codedeploy.resources.deploymentgroup.properties-17.alarmconfiguration-1"></a>

###  AlarmConfiguration

** AlarmConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:4393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4393)*




<a id="codedeploy.resources.deploymentgroup.properties-17.alarmconfiguration-1.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-alarmconfiguration"

*Defined in [spec/spec.ts:4394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4394)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.alarmconfiguration-1.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4395)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.alarmconfiguration-1.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "AlarmConfiguration"

*Defined in [spec/spec.ts:4396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4396)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.alarmconfiguration-1.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4397)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.applicationname-1"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:4399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4399)*




<a id="codedeploy.resources.deploymentgroup.properties-17.applicationname-1.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-applicationname"

*Defined in [spec/spec.ts:4400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4400)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.applicationname-1.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4401)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.applicationname-1.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4402)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.applicationname-1.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4403)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.autorollbackconfiguration-1"></a>

###  AutoRollbackConfiguration

** AutoRollbackConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:4405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4405)*




<a id="codedeploy.resources.deploymentgroup.properties-17.autorollbackconfiguration-1.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-autorollbackconfiguration"

*Defined in [spec/spec.ts:4406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4406)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autorollbackconfiguration-1.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4407)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autorollbackconfiguration-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "AutoRollbackConfiguration"

*Defined in [spec/spec.ts:4408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4408)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autorollbackconfiguration-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4409)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.autoscalinggroups"></a>

###  AutoScalingGroups

** AutoScalingGroups**:  *`object`* 

*Defined in [spec/spec.ts:4411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4411)*




<a id="codedeploy.resources.deploymentgroup.properties-17.autoscalinggroups.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-autoscalinggroups"

*Defined in [spec/spec.ts:4412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4412)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autoscalinggroups.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4413)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autoscalinggroups.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4414)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autoscalinggroups.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4415)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autoscalinggroups.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4416)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.autoscalinggroups.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4417)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.deployment-1"></a>

###  Deployment

** Deployment**:  *`object`* 

*Defined in [spec/spec.ts:4419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4419)*




<a id="codedeploy.resources.deploymentgroup.properties-17.deployment-1.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deployment"

*Defined in [spec/spec.ts:4420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4420)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deployment-1.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4421)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deployment-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "Deployment"

*Defined in [spec/spec.ts:4422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4422)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deployment-1.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4423)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentconfigname-1"></a>

###  DeploymentConfigName

** DeploymentConfigName**:  *`object`* 

*Defined in [spec/spec.ts:4425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4425)*




<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentconfigname-1.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentconfigname"

*Defined in [spec/spec.ts:4426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4426)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentconfigname-1.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4427)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentconfigname-1.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4428)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentconfigname-1.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4429)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentgroupname"></a>

###  DeploymentGroupName

** DeploymentGroupName**:  *`object`* 

*Defined in [spec/spec.ts:4431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4431)*




<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentgroupname.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentgroupname"

*Defined in [spec/spec.ts:4432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4432)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentgroupname.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4433)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentgroupname.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4434)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentgroupname.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4435)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentstyle-1"></a>

###  DeploymentStyle

** DeploymentStyle**:  *`object`* 

*Defined in [spec/spec.ts:4437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4437)*




<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentstyle-1.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-deploymentstyle"

*Defined in [spec/spec.ts:4438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4438)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentstyle-1.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4439)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentstyle-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "DeploymentStyle"

*Defined in [spec/spec.ts:4440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4440)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.deploymentstyle-1.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4441)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.ec2tagfilters"></a>

###  Ec2TagFilters

** Ec2TagFilters**:  *`object`* 

*Defined in [spec/spec.ts:4443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4443)*




<a id="codedeploy.resources.deploymentgroup.properties-17.ec2tagfilters.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-ec2tagfilters"

*Defined in [spec/spec.ts:4444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4444)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.ec2tagfilters.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4445)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.ec2tagfilters.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "EC2TagFilter"

*Defined in [spec/spec.ts:4446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4446)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.ec2tagfilters.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4447)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.ec2tagfilters.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4448)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.ec2tagfilters.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4449)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.loadbalancerinfo-1"></a>

###  LoadBalancerInfo

** LoadBalancerInfo**:  *`object`* 

*Defined in [spec/spec.ts:4451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4451)*




<a id="codedeploy.resources.deploymentgroup.properties-17.loadbalancerinfo-1.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-loadbalancerinfo"

*Defined in [spec/spec.ts:4452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4452)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.loadbalancerinfo-1.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4453)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.loadbalancerinfo-1.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "LoadBalancerInfo"

*Defined in [spec/spec.ts:4454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4454)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.loadbalancerinfo-1.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4455)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.onpremisesinstancetagfilters"></a>

###  OnPremisesInstanceTagFilters

** OnPremisesInstanceTagFilters**:  *`object`* 

*Defined in [spec/spec.ts:4457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4457)*




<a id="codedeploy.resources.deploymentgroup.properties-17.onpremisesinstancetagfilters.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-onpremisesinstancetagfilters"

*Defined in [spec/spec.ts:4458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4458)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.onpremisesinstancetagfilters.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4459)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.onpremisesinstancetagfilters.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "TagFilter"

*Defined in [spec/spec.ts:4460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4460)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.onpremisesinstancetagfilters.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4461)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.onpremisesinstancetagfilters.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4462)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.onpremisesinstancetagfilters.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4463)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.servicerolearn"></a>

###  ServiceRoleArn

** ServiceRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:4465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4465)*




<a id="codedeploy.resources.deploymentgroup.properties-17.servicerolearn.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-servicerolearn"

*Defined in [spec/spec.ts:4466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4466)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.servicerolearn.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4467)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.servicerolearn.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4468)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.servicerolearn.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4469)*





___

___
<a id="codedeploy.resources.deploymentgroup.properties-17.triggerconfigurations"></a>

###  TriggerConfigurations

** TriggerConfigurations**:  *`object`* 

*Defined in [spec/spec.ts:4471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4471)*




<a id="codedeploy.resources.deploymentgroup.properties-17.triggerconfigurations.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codedeploy-deploymentgroup.html#cfn-codedeploy-deploymentgroup-triggerconfigurations"

*Defined in [spec/spec.ts:4472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4472)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.triggerconfigurations.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4473)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.triggerconfigurations.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "TriggerConfig"

*Defined in [spec/spec.ts:4474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4474)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.triggerconfigurations.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4475)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.triggerconfigurations.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4476)*





___
<a id="codedeploy.resources.deploymentgroup.properties-17.triggerconfigurations.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4477)*





___

___

___

___

___

<a id="codepipeline"></a>

## Object literal: CodePipeline


<a id="codepipeline.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:4901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4901)*




<a id="codepipeline.models.actiondeclaration"></a>

###  ActionDeclaration

** ActionDeclaration**:  *`object`* 

*Defined in [spec/spec.ts:4998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4998)*




<a id="codepipeline.models.actiondeclaration.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html"

*Defined in [spec/spec.ts:4999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4999)*





___
<a id="codepipeline.models.actiondeclaration.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.ActionDeclaration"

*Defined in [spec/spec.ts:5048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5048)*





___
<a id="codepipeline.models.actiondeclaration.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5000)*




<a id="codepipeline.models.actiondeclaration.properties.actiontypeid"></a>

###  ActionTypeId

** ActionTypeId**:  *`object`* 

*Defined in [spec/spec.ts:5001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5001)*




<a id="codepipeline.models.actiondeclaration.properties.actiontypeid.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid"

*Defined in [spec/spec.ts:5002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5002)*





___
<a id="codepipeline.models.actiondeclaration.properties.actiontypeid.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5003)*





___
<a id="codepipeline.models.actiondeclaration.properties.actiontypeid.type"></a>

###  Type

**●  Type**:  *`string`*  = "ActionTypeId"

*Defined in [spec/spec.ts:5004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5004)*





___
<a id="codepipeline.models.actiondeclaration.properties.actiontypeid.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5005)*





___

___
<a id="codepipeline.models.actiondeclaration.properties.configuration"></a>

###  Configuration

** Configuration**:  *`object`* 

*Defined in [spec/spec.ts:5007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5007)*




<a id="codepipeline.models.actiondeclaration.properties.configuration.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html#cfn-codepipeline-pipeline-stages-actions-configuration"

*Defined in [spec/spec.ts:5008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5008)*





___
<a id="codepipeline.models.actiondeclaration.properties.configuration.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:5009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5009)*





___
<a id="codepipeline.models.actiondeclaration.properties.configuration.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5010)*





___
<a id="codepipeline.models.actiondeclaration.properties.configuration.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5011)*





___

___
<a id="codepipeline.models.actiondeclaration.properties.inputartifacts"></a>

###  InputArtifacts

** InputArtifacts**:  *`object`* 

*Defined in [spec/spec.ts:5013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5013)*




<a id="codepipeline.models.actiondeclaration.properties.inputartifacts.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html#cfn-codepipeline-pipeline-stages-actions-inputartifacts"

*Defined in [spec/spec.ts:5014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5014)*





___
<a id="codepipeline.models.actiondeclaration.properties.inputartifacts.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5015)*





___
<a id="codepipeline.models.actiondeclaration.properties.inputartifacts.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "InputArtifact"

*Defined in [spec/spec.ts:5016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5016)*





___
<a id="codepipeline.models.actiondeclaration.properties.inputartifacts.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5017)*





___
<a id="codepipeline.models.actiondeclaration.properties.inputartifacts.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5018)*





___
<a id="codepipeline.models.actiondeclaration.properties.inputartifacts.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5019)*





___

___
<a id="codepipeline.models.actiondeclaration.properties.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5021)*




<a id="codepipeline.models.actiondeclaration.properties.name-1.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html#cfn-codepipeline-pipeline-stages-actions-name"

*Defined in [spec/spec.ts:5022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5022)*





___
<a id="codepipeline.models.actiondeclaration.properties.name-1.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5023)*





___
<a id="codepipeline.models.actiondeclaration.properties.name-1.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5024)*





___
<a id="codepipeline.models.actiondeclaration.properties.name-1.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5025)*





___

___
<a id="codepipeline.models.actiondeclaration.properties.outputartifacts"></a>

###  OutputArtifacts

** OutputArtifacts**:  *`object`* 

*Defined in [spec/spec.ts:5027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5027)*




<a id="codepipeline.models.actiondeclaration.properties.outputartifacts.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html#cfn-codepipeline-pipeline-stages-actions-outputartifacts"

*Defined in [spec/spec.ts:5028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5028)*





___
<a id="codepipeline.models.actiondeclaration.properties.outputartifacts.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5029)*





___
<a id="codepipeline.models.actiondeclaration.properties.outputartifacts.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "OutputArtifact"

*Defined in [spec/spec.ts:5030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5030)*





___
<a id="codepipeline.models.actiondeclaration.properties.outputartifacts.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5031)*





___
<a id="codepipeline.models.actiondeclaration.properties.outputartifacts.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5032)*





___
<a id="codepipeline.models.actiondeclaration.properties.outputartifacts.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5033)*





___

___
<a id="codepipeline.models.actiondeclaration.properties.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:5035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5035)*




<a id="codepipeline.models.actiondeclaration.properties.rolearn.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html#cfn-codepipeline-pipeline-stages-actions-rolearn"

*Defined in [spec/spec.ts:5036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5036)*





___
<a id="codepipeline.models.actiondeclaration.properties.rolearn.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5037)*





___
<a id="codepipeline.models.actiondeclaration.properties.rolearn.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5038)*





___
<a id="codepipeline.models.actiondeclaration.properties.rolearn.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5039)*





___

___
<a id="codepipeline.models.actiondeclaration.properties.runorder"></a>

###  RunOrder

** RunOrder**:  *`object`* 

*Defined in [spec/spec.ts:5041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5041)*




<a id="codepipeline.models.actiondeclaration.properties.runorder.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions.html#cfn-codepipeline-pipeline-stages-actions-runorder"

*Defined in [spec/spec.ts:5042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5042)*





___
<a id="codepipeline.models.actiondeclaration.properties.runorder.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:5043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5043)*





___
<a id="codepipeline.models.actiondeclaration.properties.runorder.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5044)*





___
<a id="codepipeline.models.actiondeclaration.properties.runorder.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5045)*





___

___

___

___
<a id="codepipeline.models.actiontypeid-1"></a>

###  ActionTypeId

** ActionTypeId**:  *`object`* 

*Defined in [spec/spec.ts:5050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5050)*




<a id="codepipeline.models.actiontypeid-1.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html"

*Defined in [spec/spec.ts:5051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5051)*





___
<a id="codepipeline.models.actiontypeid-1.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.ActionTypeId"

*Defined in [spec/spec.ts:5078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5078)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5052)*




<a id="codepipeline.models.actiontypeid-1.properties-1.category"></a>

###  Category

** Category**:  *`object`* 

*Defined in [spec/spec.ts:5053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5053)*




<a id="codepipeline.models.actiontypeid-1.properties-1.category.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-category"

*Defined in [spec/spec.ts:5054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5054)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.category.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5055)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.category.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5056)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.category.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5057)*





___

___
<a id="codepipeline.models.actiontypeid-1.properties-1.owner"></a>

###  Owner

** Owner**:  *`object`* 

*Defined in [spec/spec.ts:5059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5059)*




<a id="codepipeline.models.actiontypeid-1.properties-1.owner.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-owner"

*Defined in [spec/spec.ts:5060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5060)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.owner.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5061)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.owner.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5062)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.owner.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5063)*





___

___
<a id="codepipeline.models.actiontypeid-1.properties-1.provider"></a>

###  Provider

** Provider**:  *`object`* 

*Defined in [spec/spec.ts:5065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5065)*




<a id="codepipeline.models.actiontypeid-1.properties-1.provider.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-provider"

*Defined in [spec/spec.ts:5066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5066)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.provider.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5067)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.provider.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5068)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.provider.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5069)*





___

___
<a id="codepipeline.models.actiontypeid-1.properties-1.version"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:5071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5071)*




<a id="codepipeline.models.actiontypeid-1.properties-1.version.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-actiontypeid.html#cfn-codepipeline-pipeline-stages-actions-actiontypeid-version"

*Defined in [spec/spec.ts:5072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5072)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.version.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5073)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.version.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5074)*





___
<a id="codepipeline.models.actiontypeid-1.properties-1.version.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5075)*





___

___

___

___
<a id="codepipeline.models.artifactdetails"></a>

###  ArtifactDetails

** ArtifactDetails**:  *`object`* 

*Defined in [spec/spec.ts:4902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4902)*




<a id="codepipeline.models.artifactdetails.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html"

*Defined in [spec/spec.ts:4903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4903)*





___
<a id="codepipeline.models.artifactdetails.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::CustomActionType.ArtifactDetails"

*Defined in [spec/spec.ts:4918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4918)*





___
<a id="codepipeline.models.artifactdetails.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4904)*




<a id="codepipeline.models.artifactdetails.properties-2.maximumcount"></a>

###  MaximumCount

** MaximumCount**:  *`object`* 

*Defined in [spec/spec.ts:4905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4905)*




<a id="codepipeline.models.artifactdetails.properties-2.maximumcount.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-maximumcount"

*Defined in [spec/spec.ts:4906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4906)*





___
<a id="codepipeline.models.artifactdetails.properties-2.maximumcount.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:4907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4907)*





___
<a id="codepipeline.models.artifactdetails.properties-2.maximumcount.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4908)*





___
<a id="codepipeline.models.artifactdetails.properties-2.maximumcount.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4909)*





___

___
<a id="codepipeline.models.artifactdetails.properties-2.minimumcount"></a>

###  MinimumCount

** MinimumCount**:  *`object`* 

*Defined in [spec/spec.ts:4911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4911)*




<a id="codepipeline.models.artifactdetails.properties-2.minimumcount.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-artifactdetails.html#cfn-codepipeline-customactiontype-artifactdetails-minimumcount"

*Defined in [spec/spec.ts:4912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4912)*





___
<a id="codepipeline.models.artifactdetails.properties-2.minimumcount.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:4913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4913)*





___
<a id="codepipeline.models.artifactdetails.properties-2.minimumcount.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4914)*





___
<a id="codepipeline.models.artifactdetails.properties-2.minimumcount.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4915)*





___

___

___

___
<a id="codepipeline.models.artifactstore"></a>

###  ArtifactStore

** ArtifactStore**:  *`object`* 

*Defined in [spec/spec.ts:5080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5080)*




<a id="codepipeline.models.artifactstore.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html"

*Defined in [spec/spec.ts:5081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5081)*





___
<a id="codepipeline.models.artifactstore.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.ArtifactStore"

*Defined in [spec/spec.ts:5102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5102)*





___
<a id="codepipeline.models.artifactstore.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5082)*




<a id="codepipeline.models.artifactstore.properties-3.encryptionkey"></a>

###  EncryptionKey

** EncryptionKey**:  *`object`* 

*Defined in [spec/spec.ts:5083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5083)*




<a id="codepipeline.models.artifactstore.properties-3.encryptionkey.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey"

*Defined in [spec/spec.ts:5084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5084)*





___
<a id="codepipeline.models.artifactstore.properties-3.encryptionkey.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5085)*





___
<a id="codepipeline.models.artifactstore.properties-3.encryptionkey.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "EncryptionKey"

*Defined in [spec/spec.ts:5086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5086)*





___
<a id="codepipeline.models.artifactstore.properties-3.encryptionkey.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5087)*





___

___
<a id="codepipeline.models.artifactstore.properties-3.location"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:5089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5089)*




<a id="codepipeline.models.artifactstore.properties-3.location.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-location"

*Defined in [spec/spec.ts:5090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5090)*





___
<a id="codepipeline.models.artifactstore.properties-3.location.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5091)*





___
<a id="codepipeline.models.artifactstore.properties-3.location.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5092)*





___
<a id="codepipeline.models.artifactstore.properties-3.location.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5093)*





___

___
<a id="codepipeline.models.artifactstore.properties-3.type-4"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:5095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5095)*




<a id="codepipeline.models.artifactstore.properties-3.type-4.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore.html#cfn-codepipeline-pipeline-artifactstore-type"

*Defined in [spec/spec.ts:5096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5096)*





___
<a id="codepipeline.models.artifactstore.properties-3.type-4.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5097)*





___
<a id="codepipeline.models.artifactstore.properties-3.type-4.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5098)*





___
<a id="codepipeline.models.artifactstore.properties-3.type-4.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5099)*





___

___

___

___
<a id="codepipeline.models.blockerdeclaration"></a>

###  BlockerDeclaration

** BlockerDeclaration**:  *`object`* 

*Defined in [spec/spec.ts:5104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5104)*




<a id="codepipeline.models.blockerdeclaration.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-blockers.html"

*Defined in [spec/spec.ts:5105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5105)*





___
<a id="codepipeline.models.blockerdeclaration.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.BlockerDeclaration"

*Defined in [spec/spec.ts:5120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5120)*





___
<a id="codepipeline.models.blockerdeclaration.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5106)*




<a id="codepipeline.models.blockerdeclaration.properties-4.name-6"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5107)*




<a id="codepipeline.models.blockerdeclaration.properties-4.name-6.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-blockers.html#cfn-codepipeline-pipeline-stages-blockers-name"

*Defined in [spec/spec.ts:5108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5108)*





___
<a id="codepipeline.models.blockerdeclaration.properties-4.name-6.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5109)*





___
<a id="codepipeline.models.blockerdeclaration.properties-4.name-6.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5110)*





___
<a id="codepipeline.models.blockerdeclaration.properties-4.name-6.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5111)*





___

___
<a id="codepipeline.models.blockerdeclaration.properties-4.type-5"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:5113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5113)*




<a id="codepipeline.models.blockerdeclaration.properties-4.type-5.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-blockers.html#cfn-codepipeline-pipeline-stages-blockers-type"

*Defined in [spec/spec.ts:5114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5114)*





___
<a id="codepipeline.models.blockerdeclaration.properties-4.type-5.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5115)*





___
<a id="codepipeline.models.blockerdeclaration.properties-4.type-5.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5116)*





___
<a id="codepipeline.models.blockerdeclaration.properties-4.type-5.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5117)*





___

___

___

___
<a id="codepipeline.models.configurationproperties"></a>

###  ConfigurationProperties

** ConfigurationProperties**:  *`object`* 

*Defined in [spec/spec.ts:4920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4920)*




<a id="codepipeline.models.configurationproperties.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html"

*Defined in [spec/spec.ts:4921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4921)*





___
<a id="codepipeline.models.configurationproperties.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::CustomActionType.ConfigurationProperties"

*Defined in [spec/spec.ts:4966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4966)*





___
<a id="codepipeline.models.configurationproperties.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4922)*




<a id="codepipeline.models.configurationproperties.properties-5.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:4923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4923)*




<a id="codepipeline.models.configurationproperties.properties-5.description.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-description"

*Defined in [spec/spec.ts:4924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4924)*





___
<a id="codepipeline.models.configurationproperties.properties-5.description.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4925)*





___
<a id="codepipeline.models.configurationproperties.properties-5.description.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4926)*





___
<a id="codepipeline.models.configurationproperties.properties-5.description.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4927)*





___

___
<a id="codepipeline.models.configurationproperties.properties-5.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:4929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4929)*




<a id="codepipeline.models.configurationproperties.properties-5.key.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-key"

*Defined in [spec/spec.ts:4930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4930)*





___
<a id="codepipeline.models.configurationproperties.properties-5.key.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4931)*





___
<a id="codepipeline.models.configurationproperties.properties-5.key.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4932)*





___
<a id="codepipeline.models.configurationproperties.properties-5.key.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4933)*





___

___
<a id="codepipeline.models.configurationproperties.properties-5.name-8"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4935)*




<a id="codepipeline.models.configurationproperties.properties-5.name-8.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-name"

*Defined in [spec/spec.ts:4936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4936)*





___
<a id="codepipeline.models.configurationproperties.properties-5.name-8.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4937)*





___
<a id="codepipeline.models.configurationproperties.properties-5.name-8.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4938)*





___
<a id="codepipeline.models.configurationproperties.properties-5.name-8.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4939)*





___

___
<a id="codepipeline.models.configurationproperties.properties-5.queryable"></a>

###  Queryable

** Queryable**:  *`object`* 

*Defined in [spec/spec.ts:4941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4941)*




<a id="codepipeline.models.configurationproperties.properties-5.queryable.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-queryable"

*Defined in [spec/spec.ts:4942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4942)*





___
<a id="codepipeline.models.configurationproperties.properties-5.queryable.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4943)*





___
<a id="codepipeline.models.configurationproperties.properties-5.queryable.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4944)*





___
<a id="codepipeline.models.configurationproperties.properties-5.queryable.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4945)*





___

___
<a id="codepipeline.models.configurationproperties.properties-5.required-22"></a>

###  Required

** Required**:  *`object`* 

*Defined in [spec/spec.ts:4947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4947)*




<a id="codepipeline.models.configurationproperties.properties-5.required-22.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-required"

*Defined in [spec/spec.ts:4948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4948)*





___
<a id="codepipeline.models.configurationproperties.properties-5.required-22.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4949)*





___
<a id="codepipeline.models.configurationproperties.properties-5.required-22.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4950)*





___
<a id="codepipeline.models.configurationproperties.properties-5.required-22.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4951)*





___

___
<a id="codepipeline.models.configurationproperties.properties-5.secret"></a>

###  Secret

** Secret**:  *`object`* 

*Defined in [spec/spec.ts:4953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4953)*




<a id="codepipeline.models.configurationproperties.properties-5.secret.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-secret"

*Defined in [spec/spec.ts:4954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4954)*





___
<a id="codepipeline.models.configurationproperties.properties-5.secret.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4955)*





___
<a id="codepipeline.models.configurationproperties.properties-5.secret.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4956)*





___
<a id="codepipeline.models.configurationproperties.properties-5.secret.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4957)*





___

___
<a id="codepipeline.models.configurationproperties.properties-5.type-6"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:4959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4959)*




<a id="codepipeline.models.configurationproperties.properties-5.type-6.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-configurationproperties.html#cfn-codepipeline-customactiontype-configurationproperties-type"

*Defined in [spec/spec.ts:4960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4960)*





___
<a id="codepipeline.models.configurationproperties.properties-5.type-6.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4961)*





___
<a id="codepipeline.models.configurationproperties.properties-5.type-6.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4962)*





___
<a id="codepipeline.models.configurationproperties.properties-5.type-6.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4963)*





___

___

___

___
<a id="codepipeline.models.encryptionkey-1"></a>

###  EncryptionKey

** EncryptionKey**:  *`object`* 

*Defined in [spec/spec.ts:5122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5122)*




<a id="codepipeline.models.encryptionkey-1.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html"

*Defined in [spec/spec.ts:5123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5123)*





___
<a id="codepipeline.models.encryptionkey-1.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.EncryptionKey"

*Defined in [spec/spec.ts:5138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5138)*





___
<a id="codepipeline.models.encryptionkey-1.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5124)*




<a id="codepipeline.models.encryptionkey-1.properties-6.id"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:5125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5125)*




<a id="codepipeline.models.encryptionkey-1.properties-6.id.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-id"

*Defined in [spec/spec.ts:5126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5126)*





___
<a id="codepipeline.models.encryptionkey-1.properties-6.id.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5127)*





___
<a id="codepipeline.models.encryptionkey-1.properties-6.id.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5128)*





___
<a id="codepipeline.models.encryptionkey-1.properties-6.id.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5129)*





___

___
<a id="codepipeline.models.encryptionkey-1.properties-6.type-7"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:5131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5131)*




<a id="codepipeline.models.encryptionkey-1.properties-6.type-7.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-artifactstore-encryptionkey.html#cfn-codepipeline-pipeline-artifactstore-encryptionkey-type"

*Defined in [spec/spec.ts:5132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5132)*





___
<a id="codepipeline.models.encryptionkey-1.properties-6.type-7.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5133)*





___
<a id="codepipeline.models.encryptionkey-1.properties-6.type-7.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5134)*





___
<a id="codepipeline.models.encryptionkey-1.properties-6.type-7.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5135)*





___

___

___

___
<a id="codepipeline.models.inputartifact"></a>

###  InputArtifact

** InputArtifact**:  *`object`* 

*Defined in [spec/spec.ts:5140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5140)*




<a id="codepipeline.models.inputartifact.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-inputartifacts.html"

*Defined in [spec/spec.ts:5141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5141)*





___
<a id="codepipeline.models.inputartifact.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.InputArtifact"

*Defined in [spec/spec.ts:5150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5150)*





___
<a id="codepipeline.models.inputartifact.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5142)*




<a id="codepipeline.models.inputartifact.properties-7.name-11"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5143)*




<a id="codepipeline.models.inputartifact.properties-7.name-11.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-inputartifacts.html#cfn-codepipeline-pipeline-stages-actions-inputartifacts-name"

*Defined in [spec/spec.ts:5144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5144)*





___
<a id="codepipeline.models.inputartifact.properties-7.name-11.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5145)*





___
<a id="codepipeline.models.inputartifact.properties-7.name-11.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5146)*





___
<a id="codepipeline.models.inputartifact.properties-7.name-11.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5147)*





___

___

___

___
<a id="codepipeline.models.outputartifact"></a>

###  OutputArtifact

** OutputArtifact**:  *`object`* 

*Defined in [spec/spec.ts:5152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5152)*




<a id="codepipeline.models.outputartifact.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-outputartifacts.html"

*Defined in [spec/spec.ts:5153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5153)*





___
<a id="codepipeline.models.outputartifact.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.OutputArtifact"

*Defined in [spec/spec.ts:5162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5162)*





___
<a id="codepipeline.models.outputartifact.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5154)*




<a id="codepipeline.models.outputartifact.properties-8.name-13"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5155)*




<a id="codepipeline.models.outputartifact.properties-8.name-13.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages-actions-outputartifacts.html#cfn-codepipeline-pipeline-stages-actions-outputartifacts-name"

*Defined in [spec/spec.ts:5156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5156)*





___
<a id="codepipeline.models.outputartifact.properties-8.name-13.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5157)*





___
<a id="codepipeline.models.outputartifact.properties-8.name-13.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5158)*





___
<a id="codepipeline.models.outputartifact.properties-8.name-13.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5159)*





___

___

___

___
<a id="codepipeline.models.settings"></a>

###  Settings

** Settings**:  *`object`* 

*Defined in [spec/spec.ts:4968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4968)*




<a id="codepipeline.models.settings.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html"

*Defined in [spec/spec.ts:4969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4969)*





___
<a id="codepipeline.models.settings.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::CustomActionType.Settings"

*Defined in [spec/spec.ts:4996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4996)*





___
<a id="codepipeline.models.settings.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4970)*




<a id="codepipeline.models.settings.properties-9.entityurltemplate"></a>

###  EntityUrlTemplate

** EntityUrlTemplate**:  *`object`* 

*Defined in [spec/spec.ts:4971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4971)*




<a id="codepipeline.models.settings.properties-9.entityurltemplate.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-entityurltemplate"

*Defined in [spec/spec.ts:4972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4972)*





___
<a id="codepipeline.models.settings.properties-9.entityurltemplate.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4973)*





___
<a id="codepipeline.models.settings.properties-9.entityurltemplate.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4974)*





___
<a id="codepipeline.models.settings.properties-9.entityurltemplate.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4975)*





___

___
<a id="codepipeline.models.settings.properties-9.executionurltemplate"></a>

###  ExecutionUrlTemplate

** ExecutionUrlTemplate**:  *`object`* 

*Defined in [spec/spec.ts:4977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4977)*




<a id="codepipeline.models.settings.properties-9.executionurltemplate.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-executionurltemplate"

*Defined in [spec/spec.ts:4978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4978)*





___
<a id="codepipeline.models.settings.properties-9.executionurltemplate.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4979)*





___
<a id="codepipeline.models.settings.properties-9.executionurltemplate.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4980)*





___
<a id="codepipeline.models.settings.properties-9.executionurltemplate.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4981)*





___

___
<a id="codepipeline.models.settings.properties-9.revisionurltemplate"></a>

###  RevisionUrlTemplate

** RevisionUrlTemplate**:  *`object`* 

*Defined in [spec/spec.ts:4983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4983)*




<a id="codepipeline.models.settings.properties-9.revisionurltemplate.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-revisionurltemplate"

*Defined in [spec/spec.ts:4984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4984)*





___
<a id="codepipeline.models.settings.properties-9.revisionurltemplate.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4985)*





___
<a id="codepipeline.models.settings.properties-9.revisionurltemplate.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4986)*





___
<a id="codepipeline.models.settings.properties-9.revisionurltemplate.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4987)*





___

___
<a id="codepipeline.models.settings.properties-9.thirdpartyconfigurationurl"></a>

###  ThirdPartyConfigurationUrl

** ThirdPartyConfigurationUrl**:  *`object`* 

*Defined in [spec/spec.ts:4989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4989)*




<a id="codepipeline.models.settings.properties-9.thirdpartyconfigurationurl.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-customactiontype-settings.html#cfn-codepipeline-customactiontype-settings-thirdpartyconfigurationurl"

*Defined in [spec/spec.ts:4990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4990)*





___
<a id="codepipeline.models.settings.properties-9.thirdpartyconfigurationurl.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4991)*





___
<a id="codepipeline.models.settings.properties-9.thirdpartyconfigurationurl.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4992)*





___
<a id="codepipeline.models.settings.properties-9.thirdpartyconfigurationurl.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4993)*





___

___

___

___
<a id="codepipeline.models.stagedeclaration"></a>

###  StageDeclaration

** StageDeclaration**:  *`object`* 

*Defined in [spec/spec.ts:5164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5164)*




<a id="codepipeline.models.stagedeclaration.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html"

*Defined in [spec/spec.ts:5165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5165)*





___
<a id="codepipeline.models.stagedeclaration.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.StageDeclaration"

*Defined in [spec/spec.ts:5190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5190)*





___
<a id="codepipeline.models.stagedeclaration.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5166)*




<a id="codepipeline.models.stagedeclaration.properties-10.actions"></a>

###  Actions

** Actions**:  *`object`* 

*Defined in [spec/spec.ts:5167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5167)*




<a id="codepipeline.models.stagedeclaration.properties-10.actions.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html#cfn-codepipeline-pipeline-stages-actions"

*Defined in [spec/spec.ts:5168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5168)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.actions.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5169)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.actions.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ActionDeclaration"

*Defined in [spec/spec.ts:5170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5170)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.actions.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5171)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.actions.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5172)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.actions.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5173)*





___

___
<a id="codepipeline.models.stagedeclaration.properties-10.blockers"></a>

###  Blockers

** Blockers**:  *`object`* 

*Defined in [spec/spec.ts:5175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5175)*




<a id="codepipeline.models.stagedeclaration.properties-10.blockers.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html#cfn-codepipeline-pipeline-stages-blockers"

*Defined in [spec/spec.ts:5176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5176)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.blockers.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5177)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.blockers.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "BlockerDeclaration"

*Defined in [spec/spec.ts:5178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5178)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.blockers.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5179)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.blockers.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5180)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.blockers.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5181)*





___

___
<a id="codepipeline.models.stagedeclaration.properties-10.name-16"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5183)*




<a id="codepipeline.models.stagedeclaration.properties-10.name-16.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html#cfn-codepipeline-pipeline-stages-name"

*Defined in [spec/spec.ts:5184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5184)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.name-16.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5185)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.name-16.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5186)*





___
<a id="codepipeline.models.stagedeclaration.properties-10.name-16.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5187)*





___

___

___

___
<a id="codepipeline.models.stagetransition"></a>

###  StageTransition

** StageTransition**:  *`object`* 

*Defined in [spec/spec.ts:5192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5192)*




<a id="codepipeline.models.stagetransition.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-disableinboundstagetransitions.html"

*Defined in [spec/spec.ts:5193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5193)*





___
<a id="codepipeline.models.stagetransition.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline.StageTransition"

*Defined in [spec/spec.ts:5208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5208)*





___
<a id="codepipeline.models.stagetransition.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5194)*




<a id="codepipeline.models.stagetransition.properties-11.reason"></a>

###  Reason

** Reason**:  *`object`* 

*Defined in [spec/spec.ts:5195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5195)*




<a id="codepipeline.models.stagetransition.properties-11.reason.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-disableinboundstagetransitions.html#cfn-codepipeline-pipeline-disableinboundstagetransitions-reason"

*Defined in [spec/spec.ts:5196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5196)*





___
<a id="codepipeline.models.stagetransition.properties-11.reason.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5197)*





___
<a id="codepipeline.models.stagetransition.properties-11.reason.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5198)*





___
<a id="codepipeline.models.stagetransition.properties-11.reason.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5199)*





___

___
<a id="codepipeline.models.stagetransition.properties-11.stagename"></a>

###  StageName

** StageName**:  *`object`* 

*Defined in [spec/spec.ts:5201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5201)*




<a id="codepipeline.models.stagetransition.properties-11.stagename.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-disableinboundstagetransitions.html#cfn-codepipeline-pipeline-disableinboundstagetransitions-stagename"

*Defined in [spec/spec.ts:5202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5202)*





___
<a id="codepipeline.models.stagetransition.properties-11.stagename.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5203)*





___
<a id="codepipeline.models.stagetransition.properties-11.stagename.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5204)*





___
<a id="codepipeline.models.stagetransition.properties-11.stagename.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5205)*





___

___

___

___

___
<a id="codepipeline.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:4803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4803)*




<a id="codepipeline.resources.customactiontype"></a>

###  CustomActionType

** CustomActionType**:  *`object`* 

*Defined in [spec/spec.ts:4804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4804)*




<a id="codepipeline.resources.customactiontype.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html"

*Defined in [spec/spec.ts:4805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4805)*





___
<a id="codepipeline.resources.customactiontype.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::CustomActionType"

*Defined in [spec/spec.ts:4852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4852)*





___
<a id="codepipeline.resources.customactiontype.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4806)*




<a id="codepipeline.resources.customactiontype.properties-12.category-1"></a>

###  Category

** Category**:  *`object`* 

*Defined in [spec/spec.ts:4807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4807)*




<a id="codepipeline.resources.customactiontype.properties-12.category-1.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-category"

*Defined in [spec/spec.ts:4808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4808)*





___
<a id="codepipeline.resources.customactiontype.properties-12.category-1.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4809)*





___
<a id="codepipeline.resources.customactiontype.properties-12.category-1.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4810)*





___
<a id="codepipeline.resources.customactiontype.properties-12.category-1.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4811)*





___

___
<a id="codepipeline.resources.customactiontype.properties-12.configurationproperties-1"></a>

###  ConfigurationProperties

** ConfigurationProperties**:  *`object`* 

*Defined in [spec/spec.ts:4813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4813)*




<a id="codepipeline.resources.customactiontype.properties-12.configurationproperties-1.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-configurationproperties"

*Defined in [spec/spec.ts:4814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4814)*





___
<a id="codepipeline.resources.customactiontype.properties-12.configurationproperties-1.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4815)*





___
<a id="codepipeline.resources.customactiontype.properties-12.configurationproperties-1.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ConfigurationProperties"

*Defined in [spec/spec.ts:4816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4816)*





___
<a id="codepipeline.resources.customactiontype.properties-12.configurationproperties-1.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4817)*





___
<a id="codepipeline.resources.customactiontype.properties-12.configurationproperties-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4818)*





___
<a id="codepipeline.resources.customactiontype.properties-12.configurationproperties-1.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4819)*





___

___
<a id="codepipeline.resources.customactiontype.properties-12.inputartifactdetails"></a>

###  InputArtifactDetails

** InputArtifactDetails**:  *`object`* 

*Defined in [spec/spec.ts:4821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4821)*




<a id="codepipeline.resources.customactiontype.properties-12.inputartifactdetails.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-inputartifactdetails"

*Defined in [spec/spec.ts:4822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4822)*





___
<a id="codepipeline.resources.customactiontype.properties-12.inputartifactdetails.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4823)*





___
<a id="codepipeline.resources.customactiontype.properties-12.inputartifactdetails.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "ArtifactDetails"

*Defined in [spec/spec.ts:4824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4824)*





___
<a id="codepipeline.resources.customactiontype.properties-12.inputartifactdetails.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4825)*





___

___
<a id="codepipeline.resources.customactiontype.properties-12.outputartifactdetails"></a>

###  OutputArtifactDetails

** OutputArtifactDetails**:  *`object`* 

*Defined in [spec/spec.ts:4827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4827)*




<a id="codepipeline.resources.customactiontype.properties-12.outputartifactdetails.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-outputartifactdetails"

*Defined in [spec/spec.ts:4828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4828)*





___
<a id="codepipeline.resources.customactiontype.properties-12.outputartifactdetails.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4829)*





___
<a id="codepipeline.resources.customactiontype.properties-12.outputartifactdetails.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "ArtifactDetails"

*Defined in [spec/spec.ts:4830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4830)*





___
<a id="codepipeline.resources.customactiontype.properties-12.outputartifactdetails.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4831)*





___

___
<a id="codepipeline.resources.customactiontype.properties-12.provider-1"></a>

###  Provider

** Provider**:  *`object`* 

*Defined in [spec/spec.ts:4833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4833)*




<a id="codepipeline.resources.customactiontype.properties-12.provider-1.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-provider"

*Defined in [spec/spec.ts:4834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4834)*





___
<a id="codepipeline.resources.customactiontype.properties-12.provider-1.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4835)*





___
<a id="codepipeline.resources.customactiontype.properties-12.provider-1.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4836)*





___
<a id="codepipeline.resources.customactiontype.properties-12.provider-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4837)*





___

___
<a id="codepipeline.resources.customactiontype.properties-12.settings-1"></a>

###  Settings

** Settings**:  *`object`* 

*Defined in [spec/spec.ts:4839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4839)*




<a id="codepipeline.resources.customactiontype.properties-12.settings-1.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-settings"

*Defined in [spec/spec.ts:4840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4840)*





___
<a id="codepipeline.resources.customactiontype.properties-12.settings-1.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4841)*





___
<a id="codepipeline.resources.customactiontype.properties-12.settings-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "Settings"

*Defined in [spec/spec.ts:4842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4842)*





___
<a id="codepipeline.resources.customactiontype.properties-12.settings-1.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4843)*





___

___
<a id="codepipeline.resources.customactiontype.properties-12.version-1"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:4845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4845)*




<a id="codepipeline.resources.customactiontype.properties-12.version-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-customactiontype.html#cfn-codepipeline-customactiontype-version"

*Defined in [spec/spec.ts:4846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4846)*





___
<a id="codepipeline.resources.customactiontype.properties-12.version-1.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4847)*





___
<a id="codepipeline.resources.customactiontype.properties-12.version-1.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4848)*





___
<a id="codepipeline.resources.customactiontype.properties-12.version-1.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4849)*





___

___

___

___
<a id="codepipeline.resources.pipeline"></a>

###  Pipeline

** Pipeline**:  *`object`* 

*Defined in [spec/spec.ts:4854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4854)*




<a id="codepipeline.resources.pipeline.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html"

*Defined in [spec/spec.ts:4855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4855)*





___
<a id="codepipeline.resources.pipeline.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::CodePipeline::Pipeline"

*Defined in [spec/spec.ts:4898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4898)*





___
<a id="codepipeline.resources.pipeline.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:4856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4856)*




<a id="codepipeline.resources.pipeline.properties-13.artifactstore-1"></a>

###  ArtifactStore

** ArtifactStore**:  *`object`* 

*Defined in [spec/spec.ts:4857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4857)*




<a id="codepipeline.resources.pipeline.properties-13.artifactstore-1.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-artifactstore"

*Defined in [spec/spec.ts:4858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4858)*





___
<a id="codepipeline.resources.pipeline.properties-13.artifactstore-1.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4859)*





___
<a id="codepipeline.resources.pipeline.properties-13.artifactstore-1.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "ArtifactStore"

*Defined in [spec/spec.ts:4860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4860)*





___
<a id="codepipeline.resources.pipeline.properties-13.artifactstore-1.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4861)*





___

___
<a id="codepipeline.resources.pipeline.properties-13.disableinboundstagetransitions"></a>

###  DisableInboundStageTransitions

** DisableInboundStageTransitions**:  *`object`* 

*Defined in [spec/spec.ts:4863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4863)*




<a id="codepipeline.resources.pipeline.properties-13.disableinboundstagetransitions.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-disableinboundstagetransitions"

*Defined in [spec/spec.ts:4864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4864)*





___
<a id="codepipeline.resources.pipeline.properties-13.disableinboundstagetransitions.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4865)*





___
<a id="codepipeline.resources.pipeline.properties-13.disableinboundstagetransitions.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "StageTransition"

*Defined in [spec/spec.ts:4866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4866)*





___
<a id="codepipeline.resources.pipeline.properties-13.disableinboundstagetransitions.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4867)*





___
<a id="codepipeline.resources.pipeline.properties-13.disableinboundstagetransitions.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4868)*





___
<a id="codepipeline.resources.pipeline.properties-13.disableinboundstagetransitions.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4869)*





___

___
<a id="codepipeline.resources.pipeline.properties-13.name-20"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:4871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4871)*




<a id="codepipeline.resources.pipeline.properties-13.name-20.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-name"

*Defined in [spec/spec.ts:4872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4872)*





___
<a id="codepipeline.resources.pipeline.properties-13.name-20.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4873)*





___
<a id="codepipeline.resources.pipeline.properties-13.name-20.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4874)*





___
<a id="codepipeline.resources.pipeline.properties-13.name-20.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:4875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4875)*





___

___
<a id="codepipeline.resources.pipeline.properties-13.restartexecutiononupdate"></a>

###  RestartExecutionOnUpdate

** RestartExecutionOnUpdate**:  *`object`* 

*Defined in [spec/spec.ts:4877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4877)*




<a id="codepipeline.resources.pipeline.properties-13.restartexecutiononupdate.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-restartexecutiononupdate"

*Defined in [spec/spec.ts:4878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4878)*





___
<a id="codepipeline.resources.pipeline.properties-13.restartexecutiononupdate.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:4879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4879)*





___
<a id="codepipeline.resources.pipeline.properties-13.restartexecutiononupdate.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4880)*





___
<a id="codepipeline.resources.pipeline.properties-13.restartexecutiononupdate.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4881)*





___

___
<a id="codepipeline.resources.pipeline.properties-13.rolearn-1"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:4883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4883)*




<a id="codepipeline.resources.pipeline.properties-13.rolearn-1.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-rolearn"

*Defined in [spec/spec.ts:4884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4884)*





___
<a id="codepipeline.resources.pipeline.properties-13.rolearn-1.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:4885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4885)*





___
<a id="codepipeline.resources.pipeline.properties-13.rolearn-1.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4886)*





___
<a id="codepipeline.resources.pipeline.properties-13.rolearn-1.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4887)*





___

___
<a id="codepipeline.resources.pipeline.properties-13.stages"></a>

###  Stages

** Stages**:  *`object`* 

*Defined in [spec/spec.ts:4889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4889)*




<a id="codepipeline.resources.pipeline.properties-13.stages.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codepipeline-pipeline.html#cfn-codepipeline-pipeline-stages"

*Defined in [spec/spec.ts:4890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4890)*





___
<a id="codepipeline.resources.pipeline.properties-13.stages.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:4891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4891)*





___
<a id="codepipeline.resources.pipeline.properties-13.stages.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "StageDeclaration"

*Defined in [spec/spec.ts:4892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4892)*





___
<a id="codepipeline.resources.pipeline.properties-13.stages.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:4893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4893)*





___
<a id="codepipeline.resources.pipeline.properties-13.stages.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:4894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4894)*





___
<a id="codepipeline.resources.pipeline.properties-13.stages.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:4895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L4895)*





___

___

___

___

___

<a id="cognito"></a>

## Object literal: Cognito


<a id="cognito.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:5599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5599)*




<a id="cognito.models.admincreateuserconfig"></a>

###  AdminCreateUserConfig

** AdminCreateUserConfig**:  *`object`* 

*Defined in [spec/spec.ts:5734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5734)*




<a id="cognito.models.admincreateuserconfig.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html"

*Defined in [spec/spec.ts:5735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5735)*





___
<a id="cognito.models.admincreateuserconfig.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.AdminCreateUserConfig"

*Defined in [spec/spec.ts:5756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5756)*





___
<a id="cognito.models.admincreateuserconfig.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5736)*




<a id="cognito.models.admincreateuserconfig.properties.allowadmincreateuseronly"></a>

###  AllowAdminCreateUserOnly

** AllowAdminCreateUserOnly**:  *`object`* 

*Defined in [spec/spec.ts:5749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5749)*




<a id="cognito.models.admincreateuserconfig.properties.allowadmincreateuseronly.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-allowadmincreateuseronly"

*Defined in [spec/spec.ts:5751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5751)*





___
<a id="cognito.models.admincreateuserconfig.properties.allowadmincreateuseronly.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5752)*





___
<a id="cognito.models.admincreateuserconfig.properties.allowadmincreateuseronly.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5750)*





___
<a id="cognito.models.admincreateuserconfig.properties.allowadmincreateuseronly.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5753)*





___

___
<a id="cognito.models.admincreateuserconfig.properties.invitemessagetemplate"></a>

###  InviteMessageTemplate

** InviteMessageTemplate**:  *`object`* 

*Defined in [spec/spec.ts:5737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5737)*




<a id="cognito.models.admincreateuserconfig.properties.invitemessagetemplate.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-invitemessagetemplate"

*Defined in [spec/spec.ts:5740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5740)*





___
<a id="cognito.models.admincreateuserconfig.properties.invitemessagetemplate.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5739)*





___
<a id="cognito.models.admincreateuserconfig.properties.invitemessagetemplate.type"></a>

###  Type

**●  Type**:  *`string`*  = "InviteMessageTemplate"

*Defined in [spec/spec.ts:5738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5738)*





___
<a id="cognito.models.admincreateuserconfig.properties.invitemessagetemplate.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5741)*





___

___
<a id="cognito.models.admincreateuserconfig.properties.unusedaccountvaliditydays"></a>

###  UnusedAccountValidityDays

** UnusedAccountValidityDays**:  *`object`* 

*Defined in [spec/spec.ts:5743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5743)*




<a id="cognito.models.admincreateuserconfig.properties.unusedaccountvaliditydays.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-admincreateuserconfig.html#cfn-cognito-userpool-admincreateuserconfig-unusedaccountvaliditydays"

*Defined in [spec/spec.ts:5745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5745)*





___
<a id="cognito.models.admincreateuserconfig.properties.unusedaccountvaliditydays.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:5746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5746)*





___
<a id="cognito.models.admincreateuserconfig.properties.unusedaccountvaliditydays.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5744)*





___
<a id="cognito.models.admincreateuserconfig.properties.unusedaccountvaliditydays.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5747)*





___

___

___

___
<a id="cognito.models.attributetype"></a>

###  AttributeType

** AttributeType**:  *`object`* 

*Defined in [spec/spec.ts:6022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6022)*




<a id="cognito.models.attributetype.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooluser-attributetype.html"

*Defined in [spec/spec.ts:6023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6023)*





___
<a id="cognito.models.attributetype.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPoolUser.AttributeType"

*Defined in [spec/spec.ts:6038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6038)*





___
<a id="cognito.models.attributetype.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6024)*




<a id="cognito.models.attributetype.properties-1.name-2"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:6031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6031)*




<a id="cognito.models.attributetype.properties-1.name-2.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooluser-attributetype.html#cfn-cognito-userpooluser-attributetype-name"

*Defined in [spec/spec.ts:6033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6033)*





___
<a id="cognito.models.attributetype.properties-1.name-2.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6034)*





___
<a id="cognito.models.attributetype.properties-1.name-2.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6032)*





___
<a id="cognito.models.attributetype.properties-1.name-2.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6035)*





___

___
<a id="cognito.models.attributetype.properties-1.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:6025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6025)*




<a id="cognito.models.attributetype.properties-1.value.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpooluser-attributetype.html#cfn-cognito-userpooluser-attributetype-value"

*Defined in [spec/spec.ts:6027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6027)*





___
<a id="cognito.models.attributetype.properties-1.value.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6028)*





___
<a id="cognito.models.attributetype.properties-1.value.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6026)*





___
<a id="cognito.models.attributetype.properties-1.value.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6029)*





___

___

___

___
<a id="cognito.models.cognitoidentityprovider"></a>

###  CognitoIdentityProvider

** CognitoIdentityProvider**:  *`object`* 

*Defined in [spec/spec.ts:5600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5600)*




<a id="cognito.models.cognitoidentityprovider.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitoidentityprovider.html"

*Defined in [spec/spec.ts:5601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5601)*





___
<a id="cognito.models.cognitoidentityprovider.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPool.CognitoIdentityProvider"

*Defined in [spec/spec.ts:5622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5622)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5602)*




<a id="cognito.models.cognitoidentityprovider.properties-2.clientid"></a>

###  ClientId

** ClientId**:  *`object`* 

*Defined in [spec/spec.ts:5615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5615)*




<a id="cognito.models.cognitoidentityprovider.properties-2.clientid.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitoidentityprovider.html#cfn-cognito-identitypool-cognitoidentityprovider-clientid"

*Defined in [spec/spec.ts:5617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5617)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.clientid.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5618)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.clientid.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5616)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.clientid.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5619)*





___

___
<a id="cognito.models.cognitoidentityprovider.properties-2.providername"></a>

###  ProviderName

** ProviderName**:  *`object`* 

*Defined in [spec/spec.ts:5609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5609)*




<a id="cognito.models.cognitoidentityprovider.properties-2.providername.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitoidentityprovider.html#cfn-cognito-identitypool-cognitoidentityprovider-providername"

*Defined in [spec/spec.ts:5611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5611)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.providername.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5612)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.providername.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5610)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.providername.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5613)*





___

___
<a id="cognito.models.cognitoidentityprovider.properties-2.serversidetokencheck"></a>

###  ServerSideTokenCheck

** ServerSideTokenCheck**:  *`object`* 

*Defined in [spec/spec.ts:5603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5603)*




<a id="cognito.models.cognitoidentityprovider.properties-2.serversidetokencheck.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitoidentityprovider.html#cfn-cognito-identitypool-cognitoidentityprovider-serversidetokencheck"

*Defined in [spec/spec.ts:5605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5605)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.serversidetokencheck.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5606)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.serversidetokencheck.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5604)*





___
<a id="cognito.models.cognitoidentityprovider.properties-2.serversidetokencheck.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5607)*





___

___

___

___
<a id="cognito.models.cognitostreams"></a>

###  CognitoStreams

** CognitoStreams**:  *`object`* 

*Defined in [spec/spec.ts:5624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5624)*




<a id="cognito.models.cognitostreams.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html"

*Defined in [spec/spec.ts:5625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5625)*





___
<a id="cognito.models.cognitostreams.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPool.CognitoStreams"

*Defined in [spec/spec.ts:5646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5646)*





___
<a id="cognito.models.cognitostreams.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5626)*




<a id="cognito.models.cognitostreams.properties-3.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:5639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5639)*




<a id="cognito.models.cognitostreams.properties-3.rolearn.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-rolearn"

*Defined in [spec/spec.ts:5641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5641)*





___
<a id="cognito.models.cognitostreams.properties-3.rolearn.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5642)*





___
<a id="cognito.models.cognitostreams.properties-3.rolearn.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5640)*





___
<a id="cognito.models.cognitostreams.properties-3.rolearn.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5643)*





___

___
<a id="cognito.models.cognitostreams.properties-3.streamname"></a>

###  StreamName

** StreamName**:  *`object`* 

*Defined in [spec/spec.ts:5633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5633)*




<a id="cognito.models.cognitostreams.properties-3.streamname.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamname"

*Defined in [spec/spec.ts:5635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5635)*





___
<a id="cognito.models.cognitostreams.properties-3.streamname.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5636)*





___
<a id="cognito.models.cognitostreams.properties-3.streamname.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5634)*





___
<a id="cognito.models.cognitostreams.properties-3.streamname.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5637)*





___

___
<a id="cognito.models.cognitostreams.properties-3.streamingstatus"></a>

###  StreamingStatus

** StreamingStatus**:  *`object`* 

*Defined in [spec/spec.ts:5627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5627)*




<a id="cognito.models.cognitostreams.properties-3.streamingstatus.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-cognitostreams.html#cfn-cognito-identitypool-cognitostreams-streamingstatus"

*Defined in [spec/spec.ts:5629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5629)*





___
<a id="cognito.models.cognitostreams.properties-3.streamingstatus.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5630)*





___
<a id="cognito.models.cognitostreams.properties-3.streamingstatus.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5628)*





___
<a id="cognito.models.cognitostreams.properties-3.streamingstatus.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5631)*





___

___

___

___
<a id="cognito.models.deviceconfiguration"></a>

###  DeviceConfiguration

** DeviceConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5758)*




<a id="cognito.models.deviceconfiguration.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html"

*Defined in [spec/spec.ts:5759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5759)*





___
<a id="cognito.models.deviceconfiguration.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.DeviceConfiguration"

*Defined in [spec/spec.ts:5774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5774)*





___
<a id="cognito.models.deviceconfiguration.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5760)*




<a id="cognito.models.deviceconfiguration.properties-4.challengerequiredonnewdevice"></a>

###  ChallengeRequiredOnNewDevice

** ChallengeRequiredOnNewDevice**:  *`object`* 

*Defined in [spec/spec.ts:5767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5767)*




<a id="cognito.models.deviceconfiguration.properties-4.challengerequiredonnewdevice.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-challengerequiredonnewdevice"

*Defined in [spec/spec.ts:5769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5769)*





___
<a id="cognito.models.deviceconfiguration.properties-4.challengerequiredonnewdevice.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5770)*





___
<a id="cognito.models.deviceconfiguration.properties-4.challengerequiredonnewdevice.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5768)*





___
<a id="cognito.models.deviceconfiguration.properties-4.challengerequiredonnewdevice.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5771)*





___

___
<a id="cognito.models.deviceconfiguration.properties-4.deviceonlyrememberedonuserprompt"></a>

###  DeviceOnlyRememberedOnUserPrompt

** DeviceOnlyRememberedOnUserPrompt**:  *`object`* 

*Defined in [spec/spec.ts:5761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5761)*




<a id="cognito.models.deviceconfiguration.properties-4.deviceonlyrememberedonuserprompt.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-deviceconfiguration.html#cfn-cognito-userpool-deviceconfiguration-deviceonlyrememberedonuserprompt"

*Defined in [spec/spec.ts:5763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5763)*





___
<a id="cognito.models.deviceconfiguration.properties-4.deviceonlyrememberedonuserprompt.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5764)*





___
<a id="cognito.models.deviceconfiguration.properties-4.deviceonlyrememberedonuserprompt.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5762)*





___
<a id="cognito.models.deviceconfiguration.properties-4.deviceonlyrememberedonuserprompt.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5765)*





___

___

___

___
<a id="cognito.models.emailconfiguration"></a>

###  EmailConfiguration

** EmailConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5776)*




<a id="cognito.models.emailconfiguration.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html"

*Defined in [spec/spec.ts:5777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5777)*





___
<a id="cognito.models.emailconfiguration.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.EmailConfiguration"

*Defined in [spec/spec.ts:5792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5792)*





___
<a id="cognito.models.emailconfiguration.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5778)*




<a id="cognito.models.emailconfiguration.properties-5.replytoemailaddress"></a>

###  ReplyToEmailAddress

** ReplyToEmailAddress**:  *`object`* 

*Defined in [spec/spec.ts:5779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5779)*




<a id="cognito.models.emailconfiguration.properties-5.replytoemailaddress.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-replytoemailaddress"

*Defined in [spec/spec.ts:5781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5781)*





___
<a id="cognito.models.emailconfiguration.properties-5.replytoemailaddress.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5782)*





___
<a id="cognito.models.emailconfiguration.properties-5.replytoemailaddress.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5780)*





___
<a id="cognito.models.emailconfiguration.properties-5.replytoemailaddress.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5783)*





___

___
<a id="cognito.models.emailconfiguration.properties-5.sourcearn"></a>

###  SourceArn

** SourceArn**:  *`object`* 

*Defined in [spec/spec.ts:5785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5785)*




<a id="cognito.models.emailconfiguration.properties-5.sourcearn.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-emailconfiguration.html#cfn-cognito-userpool-emailconfiguration-sourcearn"

*Defined in [spec/spec.ts:5787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5787)*





___
<a id="cognito.models.emailconfiguration.properties-5.sourcearn.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5788)*





___
<a id="cognito.models.emailconfiguration.properties-5.sourcearn.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5786)*





___
<a id="cognito.models.emailconfiguration.properties-5.sourcearn.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5789)*





___

___

___

___
<a id="cognito.models.invitemessagetemplate-1"></a>

###  InviteMessageTemplate

** InviteMessageTemplate**:  *`object`* 

*Defined in [spec/spec.ts:5794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5794)*




<a id="cognito.models.invitemessagetemplate-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html"

*Defined in [spec/spec.ts:5795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5795)*





___
<a id="cognito.models.invitemessagetemplate-1.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.InviteMessageTemplate"

*Defined in [spec/spec.ts:5816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5816)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5796)*




<a id="cognito.models.invitemessagetemplate-1.properties-6.emailmessage"></a>

###  EmailMessage

** EmailMessage**:  *`object`* 

*Defined in [spec/spec.ts:5797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5797)*




<a id="cognito.models.invitemessagetemplate-1.properties-6.emailmessage.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailmessage"

*Defined in [spec/spec.ts:5799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5799)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.emailmessage.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5800)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.emailmessage.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5798)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.emailmessage.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5801)*





___

___
<a id="cognito.models.invitemessagetemplate-1.properties-6.emailsubject"></a>

###  EmailSubject

** EmailSubject**:  *`object`* 

*Defined in [spec/spec.ts:5809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5809)*




<a id="cognito.models.invitemessagetemplate-1.properties-6.emailsubject.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-emailsubject"

*Defined in [spec/spec.ts:5811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5811)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.emailsubject.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5812)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.emailsubject.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5810)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.emailsubject.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5813)*





___

___
<a id="cognito.models.invitemessagetemplate-1.properties-6.smsmessage"></a>

###  SMSMessage

** SMSMessage**:  *`object`* 

*Defined in [spec/spec.ts:5803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5803)*




<a id="cognito.models.invitemessagetemplate-1.properties-6.smsmessage.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-invitemessagetemplate.html#cfn-cognito-userpool-invitemessagetemplate-smsmessage"

*Defined in [spec/spec.ts:5805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5805)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.smsmessage.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5806)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.smsmessage.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5804)*





___
<a id="cognito.models.invitemessagetemplate-1.properties-6.smsmessage.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5807)*





___

___

___

___
<a id="cognito.models.lambdaconfig"></a>

###  LambdaConfig

** LambdaConfig**:  *`object`* 

*Defined in [spec/spec.ts:5818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5818)*




<a id="cognito.models.lambdaconfig.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html"

*Defined in [spec/spec.ts:5819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5819)*





___
<a id="cognito.models.lambdaconfig.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.LambdaConfig"

*Defined in [spec/spec.ts:5870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5870)*





___
<a id="cognito.models.lambdaconfig.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5820)*




<a id="cognito.models.lambdaconfig.properties-7.createauthchallenge"></a>

###  CreateAuthChallenge

** CreateAuthChallenge**:  *`object`* 

*Defined in [spec/spec.ts:5821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5821)*




<a id="cognito.models.lambdaconfig.properties-7.createauthchallenge.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-createauthchallenge"

*Defined in [spec/spec.ts:5823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5823)*





___
<a id="cognito.models.lambdaconfig.properties-7.createauthchallenge.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5824)*





___
<a id="cognito.models.lambdaconfig.properties-7.createauthchallenge.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5822)*





___
<a id="cognito.models.lambdaconfig.properties-7.createauthchallenge.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5825)*





___

___
<a id="cognito.models.lambdaconfig.properties-7.custommessage"></a>

###  CustomMessage

** CustomMessage**:  *`object`* 

*Defined in [spec/spec.ts:5857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5857)*




<a id="cognito.models.lambdaconfig.properties-7.custommessage.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-custommessage"

*Defined in [spec/spec.ts:5859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5859)*





___
<a id="cognito.models.lambdaconfig.properties-7.custommessage.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5860)*





___
<a id="cognito.models.lambdaconfig.properties-7.custommessage.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5858)*





___
<a id="cognito.models.lambdaconfig.properties-7.custommessage.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5861)*





___

___
<a id="cognito.models.lambdaconfig.properties-7.defineauthchallenge"></a>

###  DefineAuthChallenge

** DefineAuthChallenge**:  *`object`* 

*Defined in [spec/spec.ts:5833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5833)*




<a id="cognito.models.lambdaconfig.properties-7.defineauthchallenge.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-defineauthchallenge"

*Defined in [spec/spec.ts:5835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5835)*





___
<a id="cognito.models.lambdaconfig.properties-7.defineauthchallenge.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5836)*





___
<a id="cognito.models.lambdaconfig.properties-7.defineauthchallenge.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5834)*





___
<a id="cognito.models.lambdaconfig.properties-7.defineauthchallenge.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5837)*





___

___
<a id="cognito.models.lambdaconfig.properties-7.postauthentication"></a>

###  PostAuthentication

** PostAuthentication**:  *`object`* 

*Defined in [spec/spec.ts:5845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5845)*




<a id="cognito.models.lambdaconfig.properties-7.postauthentication.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postauthentication"

*Defined in [spec/spec.ts:5847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5847)*





___
<a id="cognito.models.lambdaconfig.properties-7.postauthentication.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5848)*





___
<a id="cognito.models.lambdaconfig.properties-7.postauthentication.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5846)*





___
<a id="cognito.models.lambdaconfig.properties-7.postauthentication.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5849)*





___

___
<a id="cognito.models.lambdaconfig.properties-7.postconfirmation"></a>

###  PostConfirmation

** PostConfirmation**:  *`object`* 

*Defined in [spec/spec.ts:5851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5851)*




<a id="cognito.models.lambdaconfig.properties-7.postconfirmation.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-postconfirmation"

*Defined in [spec/spec.ts:5853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5853)*





___
<a id="cognito.models.lambdaconfig.properties-7.postconfirmation.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5854)*





___
<a id="cognito.models.lambdaconfig.properties-7.postconfirmation.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5852)*





___
<a id="cognito.models.lambdaconfig.properties-7.postconfirmation.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5855)*





___

___
<a id="cognito.models.lambdaconfig.properties-7.preauthentication"></a>

###  PreAuthentication

** PreAuthentication**:  *`object`* 

*Defined in [spec/spec.ts:5827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5827)*




<a id="cognito.models.lambdaconfig.properties-7.preauthentication.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-preauthentication"

*Defined in [spec/spec.ts:5829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5829)*





___
<a id="cognito.models.lambdaconfig.properties-7.preauthentication.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5830)*





___
<a id="cognito.models.lambdaconfig.properties-7.preauthentication.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5828)*





___
<a id="cognito.models.lambdaconfig.properties-7.preauthentication.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5831)*





___

___
<a id="cognito.models.lambdaconfig.properties-7.presignup"></a>

###  PreSignUp

** PreSignUp**:  *`object`* 

*Defined in [spec/spec.ts:5839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5839)*




<a id="cognito.models.lambdaconfig.properties-7.presignup.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-presignup"

*Defined in [spec/spec.ts:5841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5841)*





___
<a id="cognito.models.lambdaconfig.properties-7.presignup.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5842)*





___
<a id="cognito.models.lambdaconfig.properties-7.presignup.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5840)*





___
<a id="cognito.models.lambdaconfig.properties-7.presignup.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5843)*





___

___
<a id="cognito.models.lambdaconfig.properties-7.verifyauthchallengeresponse"></a>

###  VerifyAuthChallengeResponse

** VerifyAuthChallengeResponse**:  *`object`* 

*Defined in [spec/spec.ts:5863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5863)*




<a id="cognito.models.lambdaconfig.properties-7.verifyauthchallengeresponse.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-lambdaconfig.html#cfn-cognito-userpool-lambdaconfig-verifyauthchallengeresponse"

*Defined in [spec/spec.ts:5865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5865)*





___
<a id="cognito.models.lambdaconfig.properties-7.verifyauthchallengeresponse.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5866)*





___
<a id="cognito.models.lambdaconfig.properties-7.verifyauthchallengeresponse.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5864)*





___
<a id="cognito.models.lambdaconfig.properties-7.verifyauthchallengeresponse.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5867)*





___

___

___

___
<a id="cognito.models.mappingrule"></a>

###  MappingRule

** MappingRule**:  *`object`* 

*Defined in [spec/spec.ts:5667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5667)*




<a id="cognito.models.mappingrule.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-mappingrule.html"

*Defined in [spec/spec.ts:5668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5668)*





___
<a id="cognito.models.mappingrule.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPoolRoleAttachment.MappingRule"

*Defined in [spec/spec.ts:5695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5695)*





___
<a id="cognito.models.mappingrule.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5669)*




<a id="cognito.models.mappingrule.properties-8.claim"></a>

###  Claim

** Claim**:  *`object`* 

*Defined in [spec/spec.ts:5682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5682)*




<a id="cognito.models.mappingrule.properties-8.claim.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-mappingrule.html#cfn-cognito-identitypoolroleattachment-mappingrule-claim"

*Defined in [spec/spec.ts:5684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5684)*





___
<a id="cognito.models.mappingrule.properties-8.claim.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5685)*





___
<a id="cognito.models.mappingrule.properties-8.claim.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5683)*





___
<a id="cognito.models.mappingrule.properties-8.claim.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5686)*





___

___
<a id="cognito.models.mappingrule.properties-8.matchtype"></a>

###  MatchType

** MatchType**:  *`object`* 

*Defined in [spec/spec.ts:5670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5670)*




<a id="cognito.models.mappingrule.properties-8.matchtype.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-mappingrule.html#cfn-cognito-identitypoolroleattachment-mappingrule-matchtype"

*Defined in [spec/spec.ts:5672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5672)*





___
<a id="cognito.models.mappingrule.properties-8.matchtype.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5673)*





___
<a id="cognito.models.mappingrule.properties-8.matchtype.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5671)*





___
<a id="cognito.models.mappingrule.properties-8.matchtype.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5674)*





___

___
<a id="cognito.models.mappingrule.properties-8.rolearn-1"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:5688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5688)*




<a id="cognito.models.mappingrule.properties-8.rolearn-1.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-mappingrule.html#cfn-cognito-identitypoolroleattachment-mappingrule-rolearn"

*Defined in [spec/spec.ts:5690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5690)*





___
<a id="cognito.models.mappingrule.properties-8.rolearn-1.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5691)*





___
<a id="cognito.models.mappingrule.properties-8.rolearn-1.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5689)*





___
<a id="cognito.models.mappingrule.properties-8.rolearn-1.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5692)*





___

___
<a id="cognito.models.mappingrule.properties-8.value-1"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:5676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5676)*




<a id="cognito.models.mappingrule.properties-8.value-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-mappingrule.html#cfn-cognito-identitypoolroleattachment-mappingrule-value"

*Defined in [spec/spec.ts:5678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5678)*





___
<a id="cognito.models.mappingrule.properties-8.value-1.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5679)*





___
<a id="cognito.models.mappingrule.properties-8.value-1.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5677)*





___
<a id="cognito.models.mappingrule.properties-8.value-1.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5680)*





___

___

___

___
<a id="cognito.models.numberattributeconstraints"></a>

###  NumberAttributeConstraints

** NumberAttributeConstraints**:  *`object`* 

*Defined in [spec/spec.ts:5872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5872)*




<a id="cognito.models.numberattributeconstraints.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-numberattributeconstraints.html"

*Defined in [spec/spec.ts:5873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5873)*





___
<a id="cognito.models.numberattributeconstraints.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.NumberAttributeConstraints"

*Defined in [spec/spec.ts:5888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5888)*





___
<a id="cognito.models.numberattributeconstraints.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5874)*




<a id="cognito.models.numberattributeconstraints.properties-9.maxvalue"></a>

###  MaxValue

** MaxValue**:  *`object`* 

*Defined in [spec/spec.ts:5881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5881)*




<a id="cognito.models.numberattributeconstraints.properties-9.maxvalue.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-numberattributeconstraints.html#cfn-cognito-userpool-numberattributeconstraints-maxvalue"

*Defined in [spec/spec.ts:5883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5883)*





___
<a id="cognito.models.numberattributeconstraints.properties-9.maxvalue.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5884)*





___
<a id="cognito.models.numberattributeconstraints.properties-9.maxvalue.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5882)*





___
<a id="cognito.models.numberattributeconstraints.properties-9.maxvalue.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5885)*





___

___
<a id="cognito.models.numberattributeconstraints.properties-9.minvalue"></a>

###  MinValue

** MinValue**:  *`object`* 

*Defined in [spec/spec.ts:5875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5875)*




<a id="cognito.models.numberattributeconstraints.properties-9.minvalue.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-numberattributeconstraints.html#cfn-cognito-userpool-numberattributeconstraints-minvalue"

*Defined in [spec/spec.ts:5877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5877)*





___
<a id="cognito.models.numberattributeconstraints.properties-9.minvalue.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5878)*





___
<a id="cognito.models.numberattributeconstraints.properties-9.minvalue.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5876)*





___
<a id="cognito.models.numberattributeconstraints.properties-9.minvalue.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5879)*





___

___

___

___
<a id="cognito.models.passwordpolicy"></a>

###  PasswordPolicy

** PasswordPolicy**:  *`object`* 

*Defined in [spec/spec.ts:5890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5890)*




<a id="cognito.models.passwordpolicy.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html"

*Defined in [spec/spec.ts:5891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5891)*





___
<a id="cognito.models.passwordpolicy.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.PasswordPolicy"

*Defined in [spec/spec.ts:5924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5924)*





___
<a id="cognito.models.passwordpolicy.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5892)*




<a id="cognito.models.passwordpolicy.properties-10.minimumlength"></a>

###  MinimumLength

** MinimumLength**:  *`object`* 

*Defined in [spec/spec.ts:5899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5899)*




<a id="cognito.models.passwordpolicy.properties-10.minimumlength.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-minimumlength"

*Defined in [spec/spec.ts:5901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5901)*





___
<a id="cognito.models.passwordpolicy.properties-10.minimumlength.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:5902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5902)*





___
<a id="cognito.models.passwordpolicy.properties-10.minimumlength.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5900)*





___
<a id="cognito.models.passwordpolicy.properties-10.minimumlength.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5903)*





___

___
<a id="cognito.models.passwordpolicy.properties-10.requirelowercase"></a>

###  RequireLowercase

** RequireLowercase**:  *`object`* 

*Defined in [spec/spec.ts:5911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5911)*




<a id="cognito.models.passwordpolicy.properties-10.requirelowercase.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirelowercase"

*Defined in [spec/spec.ts:5913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5913)*





___
<a id="cognito.models.passwordpolicy.properties-10.requirelowercase.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5914)*





___
<a id="cognito.models.passwordpolicy.properties-10.requirelowercase.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5912)*





___
<a id="cognito.models.passwordpolicy.properties-10.requirelowercase.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5915)*





___

___
<a id="cognito.models.passwordpolicy.properties-10.requirenumbers"></a>

###  RequireNumbers

** RequireNumbers**:  *`object`* 

*Defined in [spec/spec.ts:5893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5893)*




<a id="cognito.models.passwordpolicy.properties-10.requirenumbers.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requirenumbers"

*Defined in [spec/spec.ts:5895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5895)*





___
<a id="cognito.models.passwordpolicy.properties-10.requirenumbers.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5896)*





___
<a id="cognito.models.passwordpolicy.properties-10.requirenumbers.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5894)*





___
<a id="cognito.models.passwordpolicy.properties-10.requirenumbers.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5897)*





___

___
<a id="cognito.models.passwordpolicy.properties-10.requiresymbols"></a>

###  RequireSymbols

** RequireSymbols**:  *`object`* 

*Defined in [spec/spec.ts:5917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5917)*




<a id="cognito.models.passwordpolicy.properties-10.requiresymbols.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requiresymbols"

*Defined in [spec/spec.ts:5919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5919)*





___
<a id="cognito.models.passwordpolicy.properties-10.requiresymbols.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5920)*





___
<a id="cognito.models.passwordpolicy.properties-10.requiresymbols.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5918)*





___
<a id="cognito.models.passwordpolicy.properties-10.requiresymbols.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5921)*





___

___
<a id="cognito.models.passwordpolicy.properties-10.requireuppercase"></a>

###  RequireUppercase

** RequireUppercase**:  *`object`* 

*Defined in [spec/spec.ts:5905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5905)*




<a id="cognito.models.passwordpolicy.properties-10.requireuppercase.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-passwordpolicy.html#cfn-cognito-userpool-passwordpolicy-requireuppercase"

*Defined in [spec/spec.ts:5907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5907)*





___
<a id="cognito.models.passwordpolicy.properties-10.requireuppercase.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5908)*





___
<a id="cognito.models.passwordpolicy.properties-10.requireuppercase.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5906)*





___
<a id="cognito.models.passwordpolicy.properties-10.requireuppercase.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5909)*





___

___

___

___
<a id="cognito.models.policies"></a>

###  Policies

** Policies**:  *`object`* 

*Defined in [spec/spec.ts:5926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5926)*




<a id="cognito.models.policies.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-policies.html"

*Defined in [spec/spec.ts:5927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5927)*





___
<a id="cognito.models.policies.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.Policies"

*Defined in [spec/spec.ts:5936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5936)*





___
<a id="cognito.models.policies.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5928)*




<a id="cognito.models.policies.properties-11.passwordpolicy-1"></a>

###  PasswordPolicy

** PasswordPolicy**:  *`object`* 

*Defined in [spec/spec.ts:5929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5929)*




<a id="cognito.models.policies.properties-11.passwordpolicy-1.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-policies.html#cfn-cognito-userpool-policies-passwordpolicy"

*Defined in [spec/spec.ts:5932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5932)*





___
<a id="cognito.models.policies.properties-11.passwordpolicy-1.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5931)*





___
<a id="cognito.models.policies.properties-11.passwordpolicy-1.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "PasswordPolicy"

*Defined in [spec/spec.ts:5930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5930)*





___
<a id="cognito.models.policies.properties-11.passwordpolicy-1.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5933)*





___

___

___

___
<a id="cognito.models.pushsync"></a>

###  PushSync

** PushSync**:  *`object`* 

*Defined in [spec/spec.ts:5648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5648)*




<a id="cognito.models.pushsync.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html"

*Defined in [spec/spec.ts:5649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5649)*





___
<a id="cognito.models.pushsync.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPool.PushSync"

*Defined in [spec/spec.ts:5665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5665)*





___
<a id="cognito.models.pushsync.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5650)*




<a id="cognito.models.pushsync.properties-12.applicationarns"></a>

###  ApplicationArns

** ApplicationArns**:  *`object`* 

*Defined in [spec/spec.ts:5651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5651)*




<a id="cognito.models.pushsync.properties-12.applicationarns.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-applicationarns"

*Defined in [spec/spec.ts:5655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5655)*





___
<a id="cognito.models.pushsync.properties-12.applicationarns.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5652)*





___
<a id="cognito.models.pushsync.properties-12.applicationarns.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5654)*





___
<a id="cognito.models.pushsync.properties-12.applicationarns.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5653)*





___
<a id="cognito.models.pushsync.properties-12.applicationarns.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5656)*





___

___
<a id="cognito.models.pushsync.properties-12.rolearn-2"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:5658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5658)*




<a id="cognito.models.pushsync.properties-12.rolearn-2.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypool-pushsync.html#cfn-cognito-identitypool-pushsync-rolearn"

*Defined in [spec/spec.ts:5660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5660)*





___
<a id="cognito.models.pushsync.properties-12.rolearn-2.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5661)*





___
<a id="cognito.models.pushsync.properties-12.rolearn-2.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5659)*





___
<a id="cognito.models.pushsync.properties-12.rolearn-2.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5662)*





___

___

___

___
<a id="cognito.models.rolemapping"></a>

###  RoleMapping

** RoleMapping**:  *`object`* 

*Defined in [spec/spec.ts:5697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5697)*




<a id="cognito.models.rolemapping.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-rolemapping.html"

*Defined in [spec/spec.ts:5698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5698)*





___
<a id="cognito.models.rolemapping.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPoolRoleAttachment.RoleMapping"

*Defined in [spec/spec.ts:5719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5719)*





___
<a id="cognito.models.rolemapping.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5699)*




<a id="cognito.models.rolemapping.properties-13.ambiguousroleresolution"></a>

###  AmbiguousRoleResolution

** AmbiguousRoleResolution**:  *`object`* 

*Defined in [spec/spec.ts:5706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5706)*




<a id="cognito.models.rolemapping.properties-13.ambiguousroleresolution.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-rolemapping.html#cfn-cognito-identitypoolroleattachment-rolemapping-ambiguousroleresolution"

*Defined in [spec/spec.ts:5708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5708)*





___
<a id="cognito.models.rolemapping.properties-13.ambiguousroleresolution.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5709)*





___
<a id="cognito.models.rolemapping.properties-13.ambiguousroleresolution.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5707)*





___
<a id="cognito.models.rolemapping.properties-13.ambiguousroleresolution.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5710)*





___

___
<a id="cognito.models.rolemapping.properties-13.rulesconfiguration"></a>

###  RulesConfiguration

** RulesConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5712)*




<a id="cognito.models.rolemapping.properties-13.rulesconfiguration.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-rolemapping.html#cfn-cognito-identitypoolroleattachment-rolemapping-rulesconfiguration"

*Defined in [spec/spec.ts:5715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5715)*





___
<a id="cognito.models.rolemapping.properties-13.rulesconfiguration.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5714)*





___
<a id="cognito.models.rolemapping.properties-13.rulesconfiguration.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "RulesConfigurationType"

*Defined in [spec/spec.ts:5713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5713)*





___
<a id="cognito.models.rolemapping.properties-13.rulesconfiguration.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5716)*





___

___
<a id="cognito.models.rolemapping.properties-13.type-4"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:5700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5700)*




<a id="cognito.models.rolemapping.properties-13.type-4.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-rolemapping.html#cfn-cognito-identitypoolroleattachment-rolemapping-type"

*Defined in [spec/spec.ts:5702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5702)*





___
<a id="cognito.models.rolemapping.properties-13.type-4.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5703)*





___
<a id="cognito.models.rolemapping.properties-13.type-4.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5701)*





___
<a id="cognito.models.rolemapping.properties-13.type-4.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5704)*





___

___

___

___
<a id="cognito.models.rulesconfigurationtype"></a>

###  RulesConfigurationType

** RulesConfigurationType**:  *`object`* 

*Defined in [spec/spec.ts:5721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5721)*




<a id="cognito.models.rulesconfigurationtype.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-rulesconfigurationtype.html"

*Defined in [spec/spec.ts:5722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5722)*





___
<a id="cognito.models.rulesconfigurationtype.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPoolRoleAttachment.RulesConfigurationType"

*Defined in [spec/spec.ts:5732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5732)*





___
<a id="cognito.models.rulesconfigurationtype.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5723)*




<a id="cognito.models.rulesconfigurationtype.properties-14.rules"></a>

###  Rules

** Rules**:  *`object`* 

*Defined in [spec/spec.ts:5724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5724)*




<a id="cognito.models.rulesconfigurationtype.properties-14.rules.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-identitypoolroleattachment-rulesconfigurationtype.html#cfn-cognito-identitypoolroleattachment-rulesconfigurationtype-rules"

*Defined in [spec/spec.ts:5727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5727)*





___
<a id="cognito.models.rulesconfigurationtype.properties-14.rules.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MappingRule"

*Defined in [spec/spec.ts:5728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5728)*





___
<a id="cognito.models.rulesconfigurationtype.properties-14.rules.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5726)*





___
<a id="cognito.models.rulesconfigurationtype.properties-14.rules.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5725)*





___
<a id="cognito.models.rulesconfigurationtype.properties-14.rules.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5729)*





___

___

___

___
<a id="cognito.models.schemaattribute"></a>

###  SchemaAttribute

** SchemaAttribute**:  *`object`* 

*Defined in [spec/spec.ts:5938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5938)*




<a id="cognito.models.schemaattribute.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html"

*Defined in [spec/spec.ts:5939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5939)*





___
<a id="cognito.models.schemaattribute.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.SchemaAttribute"

*Defined in [spec/spec.ts:5984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5984)*





___
<a id="cognito.models.schemaattribute.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5940)*




<a id="cognito.models.schemaattribute.properties-15.attributedatatype"></a>

###  AttributeDataType

** AttributeDataType**:  *`object`* 

*Defined in [spec/spec.ts:5953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5953)*




<a id="cognito.models.schemaattribute.properties-15.attributedatatype.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html#cfn-cognito-userpool-schemaattribute-attributedatatype"

*Defined in [spec/spec.ts:5955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5955)*





___
<a id="cognito.models.schemaattribute.properties-15.attributedatatype.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5956)*





___
<a id="cognito.models.schemaattribute.properties-15.attributedatatype.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5954)*





___
<a id="cognito.models.schemaattribute.properties-15.attributedatatype.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5957)*





___

___
<a id="cognito.models.schemaattribute.properties-15.developeronlyattribute"></a>

###  DeveloperOnlyAttribute

** DeveloperOnlyAttribute**:  *`object`* 

*Defined in [spec/spec.ts:5941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5941)*




<a id="cognito.models.schemaattribute.properties-15.developeronlyattribute.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html#cfn-cognito-userpool-schemaattribute-developeronlyattribute"

*Defined in [spec/spec.ts:5943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5943)*





___
<a id="cognito.models.schemaattribute.properties-15.developeronlyattribute.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5944)*





___
<a id="cognito.models.schemaattribute.properties-15.developeronlyattribute.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5942)*





___
<a id="cognito.models.schemaattribute.properties-15.developeronlyattribute.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5945)*





___

___
<a id="cognito.models.schemaattribute.properties-15.mutable"></a>

###  Mutable

** Mutable**:  *`object`* 

*Defined in [spec/spec.ts:5947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5947)*




<a id="cognito.models.schemaattribute.properties-15.mutable.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html#cfn-cognito-userpool-schemaattribute-mutable"

*Defined in [spec/spec.ts:5949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5949)*





___
<a id="cognito.models.schemaattribute.properties-15.mutable.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5950)*





___
<a id="cognito.models.schemaattribute.properties-15.mutable.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5948)*





___
<a id="cognito.models.schemaattribute.properties-15.mutable.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5951)*





___

___
<a id="cognito.models.schemaattribute.properties-15.name-17"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5977)*




<a id="cognito.models.schemaattribute.properties-15.name-17.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html#cfn-cognito-userpool-schemaattribute-name"

*Defined in [spec/spec.ts:5979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5979)*





___
<a id="cognito.models.schemaattribute.properties-15.name-17.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5980)*





___
<a id="cognito.models.schemaattribute.properties-15.name-17.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5978)*





___
<a id="cognito.models.schemaattribute.properties-15.name-17.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5981)*





___

___
<a id="cognito.models.schemaattribute.properties-15.numberattributeconstraints-1"></a>

###  NumberAttributeConstraints

** NumberAttributeConstraints**:  *`object`* 

*Defined in [spec/spec.ts:5971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5971)*




<a id="cognito.models.schemaattribute.properties-15.numberattributeconstraints-1.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html#cfn-cognito-userpool-schemaattribute-numberattributeconstraints"

*Defined in [spec/spec.ts:5974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5974)*





___
<a id="cognito.models.schemaattribute.properties-15.numberattributeconstraints-1.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5973)*





___
<a id="cognito.models.schemaattribute.properties-15.numberattributeconstraints-1.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "NumberAttributeConstraints"

*Defined in [spec/spec.ts:5972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5972)*





___
<a id="cognito.models.schemaattribute.properties-15.numberattributeconstraints-1.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5975)*





___

___
<a id="cognito.models.schemaattribute.properties-15.required-49"></a>

###  Required

** Required**:  *`object`* 

*Defined in [spec/spec.ts:5965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5965)*




<a id="cognito.models.schemaattribute.properties-15.required-49.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html#cfn-cognito-userpool-schemaattribute-required"

*Defined in [spec/spec.ts:5967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5967)*





___
<a id="cognito.models.schemaattribute.properties-15.required-49.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5968)*





___
<a id="cognito.models.schemaattribute.properties-15.required-49.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5966)*





___
<a id="cognito.models.schemaattribute.properties-15.required-49.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5969)*





___

___
<a id="cognito.models.schemaattribute.properties-15.stringattributeconstraints"></a>

###  StringAttributeConstraints

** StringAttributeConstraints**:  *`object`* 

*Defined in [spec/spec.ts:5959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5959)*




<a id="cognito.models.schemaattribute.properties-15.stringattributeconstraints.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-schemaattribute.html#cfn-cognito-userpool-schemaattribute-stringattributeconstraints"

*Defined in [spec/spec.ts:5962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5962)*





___
<a id="cognito.models.schemaattribute.properties-15.stringattributeconstraints.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5961)*





___
<a id="cognito.models.schemaattribute.properties-15.stringattributeconstraints.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "StringAttributeConstraints"

*Defined in [spec/spec.ts:5960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5960)*





___
<a id="cognito.models.schemaattribute.properties-15.stringattributeconstraints.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5963)*





___

___

___

___
<a id="cognito.models.smsconfiguration"></a>

###  SmsConfiguration

** SmsConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5986)*




<a id="cognito.models.smsconfiguration.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html"

*Defined in [spec/spec.ts:5987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5987)*





___
<a id="cognito.models.smsconfiguration.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.SmsConfiguration"

*Defined in [spec/spec.ts:6002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6002)*





___
<a id="cognito.models.smsconfiguration.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5988)*




<a id="cognito.models.smsconfiguration.properties-16.externalid"></a>

###  ExternalId

** ExternalId**:  *`object`* 

*Defined in [spec/spec.ts:5989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5989)*




<a id="cognito.models.smsconfiguration.properties-16.externalid.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-externalid"

*Defined in [spec/spec.ts:5991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5991)*





___
<a id="cognito.models.smsconfiguration.properties-16.externalid.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5992)*





___
<a id="cognito.models.smsconfiguration.properties-16.externalid.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5990)*





___
<a id="cognito.models.smsconfiguration.properties-16.externalid.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5993)*





___

___
<a id="cognito.models.smsconfiguration.properties-16.snscallerarn"></a>

###  SnsCallerArn

** SnsCallerArn**:  *`object`* 

*Defined in [spec/spec.ts:5995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5995)*




<a id="cognito.models.smsconfiguration.properties-16.snscallerarn.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-smsconfiguration.html#cfn-cognito-userpool-smsconfiguration-snscallerarn"

*Defined in [spec/spec.ts:5997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5997)*





___
<a id="cognito.models.smsconfiguration.properties-16.snscallerarn.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5998)*





___
<a id="cognito.models.smsconfiguration.properties-16.snscallerarn.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5996)*





___
<a id="cognito.models.smsconfiguration.properties-16.snscallerarn.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5999)*





___

___

___

___
<a id="cognito.models.stringattributeconstraints-1"></a>

###  StringAttributeConstraints

** StringAttributeConstraints**:  *`object`* 

*Defined in [spec/spec.ts:6004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6004)*




<a id="cognito.models.stringattributeconstraints-1.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-stringattributeconstraints.html"

*Defined in [spec/spec.ts:6005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6005)*





___
<a id="cognito.models.stringattributeconstraints-1.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool.StringAttributeConstraints"

*Defined in [spec/spec.ts:6020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6020)*





___
<a id="cognito.models.stringattributeconstraints-1.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6006)*




<a id="cognito.models.stringattributeconstraints-1.properties-17.maxlength"></a>

###  MaxLength

** MaxLength**:  *`object`* 

*Defined in [spec/spec.ts:6013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6013)*




<a id="cognito.models.stringattributeconstraints-1.properties-17.maxlength.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-stringattributeconstraints.html#cfn-cognito-userpool-stringattributeconstraints-maxlength"

*Defined in [spec/spec.ts:6015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6015)*





___
<a id="cognito.models.stringattributeconstraints-1.properties-17.maxlength.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6016)*





___
<a id="cognito.models.stringattributeconstraints-1.properties-17.maxlength.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6014)*





___
<a id="cognito.models.stringattributeconstraints-1.properties-17.maxlength.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6017)*





___

___
<a id="cognito.models.stringattributeconstraints-1.properties-17.minlength"></a>

###  MinLength

** MinLength**:  *`object`* 

*Defined in [spec/spec.ts:6007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6007)*




<a id="cognito.models.stringattributeconstraints-1.properties-17.minlength.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpool-stringattributeconstraints.html#cfn-cognito-userpool-stringattributeconstraints-minlength"

*Defined in [spec/spec.ts:6009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6009)*





___
<a id="cognito.models.stringattributeconstraints-1.properties-17.minlength.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6010)*





___
<a id="cognito.models.stringattributeconstraints-1.properties-17.minlength.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6008)*





___
<a id="cognito.models.stringattributeconstraints-1.properties-17.minlength.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6011)*





___

___

___

___

___
<a id="cognito.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:5213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5213)*




<a id="cognito.resources.identitypool"></a>

###  IdentityPool

** IdentityPool**:  *`object`* 

*Defined in [spec/spec.ts:5214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5214)*




<a id="cognito.resources.identitypool.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html"

*Defined in [spec/spec.ts:5215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5215)*





___
<a id="cognito.resources.identitypool.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPool"

*Defined in [spec/spec.ts:5286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5286)*





___
<a id="cognito.resources.identitypool.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:5216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5216)*




<a id="cognito.resources.identitypool.attributes.name-21"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5217)*




<a id="cognito.resources.identitypool.attributes.name-21.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5218)*





___

___

___
<a id="cognito.resources.identitypool.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5221)*




<a id="cognito.resources.identitypool.properties-18.allowunauthenticatedidentities"></a>

###  AllowUnauthenticatedIdentities

** AllowUnauthenticatedIdentities**:  *`object`* 

*Defined in [spec/spec.ts:5259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5259)*




<a id="cognito.resources.identitypool.properties-18.allowunauthenticatedidentities.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-allowunauthenticatedidentities"

*Defined in [spec/spec.ts:5261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5261)*





___
<a id="cognito.resources.identitypool.properties-18.allowunauthenticatedidentities.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5262)*





___
<a id="cognito.resources.identitypool.properties-18.allowunauthenticatedidentities.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5260)*





___
<a id="cognito.resources.identitypool.properties-18.allowunauthenticatedidentities.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5263)*





___

___
<a id="cognito.resources.identitypool.properties-18.cognitoevents"></a>

###  CognitoEvents

** CognitoEvents**:  *`object`* 

*Defined in [spec/spec.ts:5235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5235)*




<a id="cognito.resources.identitypool.properties-18.cognitoevents.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoevents"

*Defined in [spec/spec.ts:5237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5237)*





___
<a id="cognito.resources.identitypool.properties-18.cognitoevents.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:5238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5238)*





___
<a id="cognito.resources.identitypool.properties-18.cognitoevents.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5236)*





___
<a id="cognito.resources.identitypool.properties-18.cognitoevents.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5239)*





___

___
<a id="cognito.resources.identitypool.properties-18.cognitoidentityproviders"></a>

###  CognitoIdentityProviders

** CognitoIdentityProviders**:  *`object`* 

*Defined in [spec/spec.ts:5228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5228)*




<a id="cognito.resources.identitypool.properties-18.cognitoidentityproviders.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitoidentityproviders"

*Defined in [spec/spec.ts:5231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5231)*





___
<a id="cognito.resources.identitypool.properties-18.cognitoidentityproviders.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "CognitoIdentityProvider"

*Defined in [spec/spec.ts:5232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5232)*





___
<a id="cognito.resources.identitypool.properties-18.cognitoidentityproviders.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5230)*





___
<a id="cognito.resources.identitypool.properties-18.cognitoidentityproviders.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5229)*





___
<a id="cognito.resources.identitypool.properties-18.cognitoidentityproviders.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5233)*





___

___
<a id="cognito.resources.identitypool.properties-18.cognitostreams-1"></a>

###  CognitoStreams

** CognitoStreams**:  *`object`* 

*Defined in [spec/spec.ts:5247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5247)*




<a id="cognito.resources.identitypool.properties-18.cognitostreams-1.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-cognitostreams"

*Defined in [spec/spec.ts:5250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5250)*





___
<a id="cognito.resources.identitypool.properties-18.cognitostreams-1.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5249)*





___
<a id="cognito.resources.identitypool.properties-18.cognitostreams-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "CognitoStreams"

*Defined in [spec/spec.ts:5248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5248)*





___
<a id="cognito.resources.identitypool.properties-18.cognitostreams-1.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5251)*





___

___
<a id="cognito.resources.identitypool.properties-18.developerprovidername"></a>

###  DeveloperProviderName

** DeveloperProviderName**:  *`object`* 

*Defined in [spec/spec.ts:5241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5241)*




<a id="cognito.resources.identitypool.properties-18.developerprovidername.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-developerprovidername"

*Defined in [spec/spec.ts:5243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5243)*





___
<a id="cognito.resources.identitypool.properties-18.developerprovidername.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5244)*





___
<a id="cognito.resources.identitypool.properties-18.developerprovidername.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5242)*





___
<a id="cognito.resources.identitypool.properties-18.developerprovidername.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5245)*





___

___
<a id="cognito.resources.identitypool.properties-18.identitypoolname"></a>

###  IdentityPoolName

** IdentityPoolName**:  *`object`* 

*Defined in [spec/spec.ts:5253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5253)*




<a id="cognito.resources.identitypool.properties-18.identitypoolname.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-identitypoolname"

*Defined in [spec/spec.ts:5255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5255)*





___
<a id="cognito.resources.identitypool.properties-18.identitypoolname.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5256)*





___
<a id="cognito.resources.identitypool.properties-18.identitypoolname.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5254)*





___
<a id="cognito.resources.identitypool.properties-18.identitypoolname.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5257)*





___

___
<a id="cognito.resources.identitypool.properties-18.openidconnectproviderarns"></a>

###  OpenIdConnectProviderARNs

** OpenIdConnectProviderARNs**:  *`object`* 

*Defined in [spec/spec.ts:5278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5278)*




<a id="cognito.resources.identitypool.properties-18.openidconnectproviderarns.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-openidconnectproviderarns"

*Defined in [spec/spec.ts:5282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5282)*





___
<a id="cognito.resources.identitypool.properties-18.openidconnectproviderarns.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5279](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5279)*





___
<a id="cognito.resources.identitypool.properties-18.openidconnectproviderarns.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5281)*





___
<a id="cognito.resources.identitypool.properties-18.openidconnectproviderarns.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5280](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5280)*





___
<a id="cognito.resources.identitypool.properties-18.openidconnectproviderarns.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5283)*





___

___
<a id="cognito.resources.identitypool.properties-18.pushsync-1"></a>

###  PushSync

** PushSync**:  *`object`* 

*Defined in [spec/spec.ts:5222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5222)*




<a id="cognito.resources.identitypool.properties-18.pushsync-1.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-pushsync"

*Defined in [spec/spec.ts:5225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5225)*





___
<a id="cognito.resources.identitypool.properties-18.pushsync-1.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5224)*





___
<a id="cognito.resources.identitypool.properties-18.pushsync-1.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "PushSync"

*Defined in [spec/spec.ts:5223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5223)*





___
<a id="cognito.resources.identitypool.properties-18.pushsync-1.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5226)*





___

___
<a id="cognito.resources.identitypool.properties-18.samlproviderarns"></a>

###  SamlProviderARNs

** SamlProviderARNs**:  *`object`* 

*Defined in [spec/spec.ts:5271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5271)*




<a id="cognito.resources.identitypool.properties-18.samlproviderarns.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-samlproviderarns"

*Defined in [spec/spec.ts:5275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5275)*





___
<a id="cognito.resources.identitypool.properties-18.samlproviderarns.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5272)*





___
<a id="cognito.resources.identitypool.properties-18.samlproviderarns.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5274)*





___
<a id="cognito.resources.identitypool.properties-18.samlproviderarns.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5273)*





___
<a id="cognito.resources.identitypool.properties-18.samlproviderarns.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5276)*





___

___
<a id="cognito.resources.identitypool.properties-18.supportedloginproviders"></a>

###  SupportedLoginProviders

** SupportedLoginProviders**:  *`object`* 

*Defined in [spec/spec.ts:5265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5265)*




<a id="cognito.resources.identitypool.properties-18.supportedloginproviders.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypool.html#cfn-cognito-identitypool-supportedloginproviders"

*Defined in [spec/spec.ts:5267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5267)*





___
<a id="cognito.resources.identitypool.properties-18.supportedloginproviders.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:5268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5268)*





___
<a id="cognito.resources.identitypool.properties-18.supportedloginproviders.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5266)*





___
<a id="cognito.resources.identitypool.properties-18.supportedloginproviders.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5269)*





___

___

___

___
<a id="cognito.resources.identitypoolroleattachment"></a>

###  IdentityPoolRoleAttachment

** IdentityPoolRoleAttachment**:  *`object`* 

*Defined in [spec/spec.ts:5288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5288)*




<a id="cognito.resources.identitypoolroleattachment.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html"

*Defined in [spec/spec.ts:5289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5289)*





___
<a id="cognito.resources.identitypoolroleattachment.name-22"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::IdentityPoolRoleAttachment"

*Defined in [spec/spec.ts:5310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5310)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5290)*




<a id="cognito.resources.identitypoolroleattachment.properties-19.identitypoolid"></a>

###  IdentityPoolId

** IdentityPoolId**:  *`object`* 

*Defined in [spec/spec.ts:5297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5297)*




<a id="cognito.resources.identitypoolroleattachment.properties-19.identitypoolid.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-identitypoolid"

*Defined in [spec/spec.ts:5299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5299)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.identitypoolid.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5300)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.identitypoolid.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5298)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.identitypoolid.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5301)*





___

___
<a id="cognito.resources.identitypoolroleattachment.properties-19.rolemappings"></a>

###  RoleMappings

** RoleMappings**:  *`object`* 

*Defined in [spec/spec.ts:5291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5291)*




<a id="cognito.resources.identitypoolroleattachment.properties-19.rolemappings.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-rolemappings"

*Defined in [spec/spec.ts:5293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5293)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.rolemappings.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:5294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5294)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.rolemappings.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5292)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.rolemappings.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5295)*





___

___
<a id="cognito.resources.identitypoolroleattachment.properties-19.roles"></a>

###  Roles

** Roles**:  *`object`* 

*Defined in [spec/spec.ts:5303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5303)*




<a id="cognito.resources.identitypoolroleattachment.properties-19.roles.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-identitypoolroleattachment.html#cfn-cognito-identitypoolroleattachment-roles"

*Defined in [spec/spec.ts:5305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5305)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.roles.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:5306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5306)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.roles.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5304)*





___
<a id="cognito.resources.identitypoolroleattachment.properties-19.roles.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5307)*





___

___

___

___
<a id="cognito.resources.userpool"></a>

###  UserPool

** UserPool**:  *`object`* 

*Defined in [spec/spec.ts:5312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5312)*




<a id="cognito.resources.userpool.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html"

*Defined in [spec/spec.ts:5313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5313)*





___
<a id="cognito.resources.userpool.name-23"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPool"

*Defined in [spec/spec.ts:5426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5426)*





___
<a id="cognito.resources.userpool.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:5314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5314)*




<a id="cognito.resources.userpool.attributes-1.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:5321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5321)*




<a id="cognito.resources.userpool.attributes-1.arn.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5322)*





___

___
<a id="cognito.resources.userpool.attributes-1.providername-1"></a>

###  ProviderName

** ProviderName**:  *`object`* 

*Defined in [spec/spec.ts:5315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5315)*




<a id="cognito.resources.userpool.attributes-1.providername-1.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5316)*





___

___
<a id="cognito.resources.userpool.attributes-1.providerurl"></a>

###  ProviderURL

** ProviderURL**:  *`object`* 

*Defined in [spec/spec.ts:5318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5318)*




<a id="cognito.resources.userpool.attributes-1.providerurl.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5319)*





___

___

___
<a id="cognito.resources.userpool.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5325)*




<a id="cognito.resources.userpool.properties-20.admincreateuserconfig-1"></a>

###  AdminCreateUserConfig

** AdminCreateUserConfig**:  *`object`* 

*Defined in [spec/spec.ts:5351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5351)*




<a id="cognito.resources.userpool.properties-20.admincreateuserconfig-1.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-admincreateuserconfig"

*Defined in [spec/spec.ts:5354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5354)*





___
<a id="cognito.resources.userpool.properties-20.admincreateuserconfig-1.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5353)*





___
<a id="cognito.resources.userpool.properties-20.admincreateuserconfig-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "AdminCreateUserConfig"

*Defined in [spec/spec.ts:5352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5352)*





___
<a id="cognito.resources.userpool.properties-20.admincreateuserconfig-1.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5355)*





___

___
<a id="cognito.resources.userpool.properties-20.aliasattributes"></a>

###  AliasAttributes

** AliasAttributes**:  *`object`* 

*Defined in [spec/spec.ts:5387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5387)*




<a id="cognito.resources.userpool.properties-20.aliasattributes.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-aliasattributes"

*Defined in [spec/spec.ts:5391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5391)*





___
<a id="cognito.resources.userpool.properties-20.aliasattributes.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5388)*





___
<a id="cognito.resources.userpool.properties-20.aliasattributes.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5390)*





___
<a id="cognito.resources.userpool.properties-20.aliasattributes.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5389)*





___
<a id="cognito.resources.userpool.properties-20.aliasattributes.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5392)*





___

___
<a id="cognito.resources.userpool.properties-20.autoverifiedattributes"></a>

###  AutoVerifiedAttributes

** AutoVerifiedAttributes**:  *`object`* 

*Defined in [spec/spec.ts:5406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5406)*




<a id="cognito.resources.userpool.properties-20.autoverifiedattributes.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-autoverifiedattributes"

*Defined in [spec/spec.ts:5410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5410)*





___
<a id="cognito.resources.userpool.properties-20.autoverifiedattributes.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5407)*





___
<a id="cognito.resources.userpool.properties-20.autoverifiedattributes.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5409)*





___
<a id="cognito.resources.userpool.properties-20.autoverifiedattributes.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5408)*





___
<a id="cognito.resources.userpool.properties-20.autoverifiedattributes.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5411)*





___

___
<a id="cognito.resources.userpool.properties-20.deviceconfiguration-1"></a>

###  DeviceConfiguration

** DeviceConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5413)*




<a id="cognito.resources.userpool.properties-20.deviceconfiguration-1.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-deviceconfiguration"

*Defined in [spec/spec.ts:5416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5416)*





___
<a id="cognito.resources.userpool.properties-20.deviceconfiguration-1.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5415)*





___
<a id="cognito.resources.userpool.properties-20.deviceconfiguration-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "DeviceConfiguration"

*Defined in [spec/spec.ts:5414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5414)*





___
<a id="cognito.resources.userpool.properties-20.deviceconfiguration-1.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5417)*





___

___
<a id="cognito.resources.userpool.properties-20.emailconfiguration-1"></a>

###  EmailConfiguration

** EmailConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5375)*




<a id="cognito.resources.userpool.properties-20.emailconfiguration-1.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailconfiguration"

*Defined in [spec/spec.ts:5378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5378)*





___
<a id="cognito.resources.userpool.properties-20.emailconfiguration-1.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5377)*





___
<a id="cognito.resources.userpool.properties-20.emailconfiguration-1.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "EmailConfiguration"

*Defined in [spec/spec.ts:5376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5376)*





___
<a id="cognito.resources.userpool.properties-20.emailconfiguration-1.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5379)*





___

___
<a id="cognito.resources.userpool.properties-20.emailverificationmessage"></a>

###  EmailVerificationMessage

** EmailVerificationMessage**:  *`object`* 

*Defined in [spec/spec.ts:5419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5419)*




<a id="cognito.resources.userpool.properties-20.emailverificationmessage.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationmessage"

*Defined in [spec/spec.ts:5421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5421)*





___
<a id="cognito.resources.userpool.properties-20.emailverificationmessage.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5422)*





___
<a id="cognito.resources.userpool.properties-20.emailverificationmessage.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5420)*





___
<a id="cognito.resources.userpool.properties-20.emailverificationmessage.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5423)*





___

___
<a id="cognito.resources.userpool.properties-20.emailverificationsubject"></a>

###  EmailVerificationSubject

** EmailVerificationSubject**:  *`object`* 

*Defined in [spec/spec.ts:5394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5394)*




<a id="cognito.resources.userpool.properties-20.emailverificationsubject.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-emailverificationsubject"

*Defined in [spec/spec.ts:5396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5396)*





___
<a id="cognito.resources.userpool.properties-20.emailverificationsubject.primitivetype-61"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5397)*





___
<a id="cognito.resources.userpool.properties-20.emailverificationsubject.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5395)*





___
<a id="cognito.resources.userpool.properties-20.emailverificationsubject.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5398)*





___

___
<a id="cognito.resources.userpool.properties-20.lambdaconfig-1"></a>

###  LambdaConfig

** LambdaConfig**:  *`object`* 

*Defined in [spec/spec.ts:5400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5400)*




<a id="cognito.resources.userpool.properties-20.lambdaconfig-1.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-lambdaconfig"

*Defined in [spec/spec.ts:5403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5403)*





___
<a id="cognito.resources.userpool.properties-20.lambdaconfig-1.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5402)*





___
<a id="cognito.resources.userpool.properties-20.lambdaconfig-1.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "LambdaConfig"

*Defined in [spec/spec.ts:5401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5401)*





___
<a id="cognito.resources.userpool.properties-20.lambdaconfig-1.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5404)*





___

___
<a id="cognito.resources.userpool.properties-20.mfaconfiguration"></a>

###  MfaConfiguration

** MfaConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5338)*




<a id="cognito.resources.userpool.properties-20.mfaconfiguration.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-mfaconfiguration"

*Defined in [spec/spec.ts:5340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5340)*





___
<a id="cognito.resources.userpool.properties-20.mfaconfiguration.primitivetype-62"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5341)*





___
<a id="cognito.resources.userpool.properties-20.mfaconfiguration.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5339)*





___
<a id="cognito.resources.userpool.properties-20.mfaconfiguration.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5342)*





___

___
<a id="cognito.resources.userpool.properties-20.policies-1"></a>

###  Policies

** Policies**:  *`object`* 

*Defined in [spec/spec.ts:5332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5332)*




<a id="cognito.resources.userpool.properties-20.policies-1.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-policies"

*Defined in [spec/spec.ts:5335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5335)*





___
<a id="cognito.resources.userpool.properties-20.policies-1.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5334)*





___
<a id="cognito.resources.userpool.properties-20.policies-1.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "Policies"

*Defined in [spec/spec.ts:5333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5333)*





___
<a id="cognito.resources.userpool.properties-20.policies-1.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5336)*





___

___
<a id="cognito.resources.userpool.properties-20.schema"></a>

###  Schema

** Schema**:  *`object`* 

*Defined in [spec/spec.ts:5344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5344)*




<a id="cognito.resources.userpool.properties-20.schema.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-schema"

*Defined in [spec/spec.ts:5347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5347)*





___
<a id="cognito.resources.userpool.properties-20.schema.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "SchemaAttribute"

*Defined in [spec/spec.ts:5348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5348)*





___
<a id="cognito.resources.userpool.properties-20.schema.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5346)*





___
<a id="cognito.resources.userpool.properties-20.schema.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5345)*





___
<a id="cognito.resources.userpool.properties-20.schema.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5349)*





___

___
<a id="cognito.resources.userpool.properties-20.smsauthenticationmessage"></a>

###  SmsAuthenticationMessage

** SmsAuthenticationMessage**:  *`object`* 

*Defined in [spec/spec.ts:5357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5357)*




<a id="cognito.resources.userpool.properties-20.smsauthenticationmessage.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsauthenticationmessage"

*Defined in [spec/spec.ts:5359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5359)*





___
<a id="cognito.resources.userpool.properties-20.smsauthenticationmessage.primitivetype-63"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5360)*





___
<a id="cognito.resources.userpool.properties-20.smsauthenticationmessage.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5358)*





___
<a id="cognito.resources.userpool.properties-20.smsauthenticationmessage.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5361)*





___

___
<a id="cognito.resources.userpool.properties-20.smsconfiguration-1"></a>

###  SmsConfiguration

** SmsConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:5381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5381)*




<a id="cognito.resources.userpool.properties-20.smsconfiguration-1.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsconfiguration"

*Defined in [spec/spec.ts:5384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5384)*





___
<a id="cognito.resources.userpool.properties-20.smsconfiguration-1.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5383)*





___
<a id="cognito.resources.userpool.properties-20.smsconfiguration-1.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "SmsConfiguration"

*Defined in [spec/spec.ts:5382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5382)*





___
<a id="cognito.resources.userpool.properties-20.smsconfiguration-1.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5385)*





___

___
<a id="cognito.resources.userpool.properties-20.smsverificationmessage"></a>

###  SmsVerificationMessage

** SmsVerificationMessage**:  *`object`* 

*Defined in [spec/spec.ts:5369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5369)*




<a id="cognito.resources.userpool.properties-20.smsverificationmessage.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-smsverificationmessage"

*Defined in [spec/spec.ts:5371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5371)*





___
<a id="cognito.resources.userpool.properties-20.smsverificationmessage.primitivetype-64"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5372)*





___
<a id="cognito.resources.userpool.properties-20.smsverificationmessage.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5370)*





___
<a id="cognito.resources.userpool.properties-20.smsverificationmessage.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5373)*





___

___
<a id="cognito.resources.userpool.properties-20.userpoolname"></a>

###  UserPoolName

** UserPoolName**:  *`object`* 

*Defined in [spec/spec.ts:5363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5363)*




<a id="cognito.resources.userpool.properties-20.userpoolname.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpoolname"

*Defined in [spec/spec.ts:5365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5365)*





___
<a id="cognito.resources.userpool.properties-20.userpoolname.primitivetype-65"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5366)*





___
<a id="cognito.resources.userpool.properties-20.userpoolname.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5364)*





___
<a id="cognito.resources.userpool.properties-20.userpoolname.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5367)*





___

___
<a id="cognito.resources.userpool.properties-20.userpooltags"></a>

###  UserPoolTags

** UserPoolTags**:  *`object`* 

*Defined in [spec/spec.ts:5326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5326)*




<a id="cognito.resources.userpool.properties-20.userpooltags.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html#cfn-cognito-userpool-userpooltags"

*Defined in [spec/spec.ts:5328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5328)*





___
<a id="cognito.resources.userpool.properties-20.userpooltags.primitivetype-66"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:5329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5329)*





___
<a id="cognito.resources.userpool.properties-20.userpooltags.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5327)*





___
<a id="cognito.resources.userpool.properties-20.userpooltags.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5330)*





___

___

___

___
<a id="cognito.resources.userpoolclient"></a>

###  UserPoolClient

** UserPoolClient**:  *`object`* 

*Defined in [spec/spec.ts:5428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5428)*




<a id="cognito.resources.userpoolclient.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html"

*Defined in [spec/spec.ts:5429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5429)*





___
<a id="cognito.resources.userpoolclient.name-24"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPoolClient"

*Defined in [spec/spec.ts:5485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5485)*





___
<a id="cognito.resources.userpoolclient.attributes-2"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:5430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5430)*




<a id="cognito.resources.userpoolclient.attributes-2.clientsecret"></a>

###  ClientSecret

** ClientSecret**:  *`object`* 

*Defined in [spec/spec.ts:5431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5431)*




<a id="cognito.resources.userpoolclient.attributes-2.clientsecret.primitivetype-67"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5432)*





___

___
<a id="cognito.resources.userpoolclient.attributes-2.name-25"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:5434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5434)*




<a id="cognito.resources.userpoolclient.attributes-2.name-25.primitivetype-68"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5435)*





___

___

___
<a id="cognito.resources.userpoolclient.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5438)*




<a id="cognito.resources.userpoolclient.properties-21.clientname"></a>

###  ClientName

** ClientName**:  *`object`* 

*Defined in [spec/spec.ts:5445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5445)*




<a id="cognito.resources.userpoolclient.properties-21.clientname.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-clientname"

*Defined in [spec/spec.ts:5447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5447)*





___
<a id="cognito.resources.userpoolclient.properties-21.clientname.primitivetype-69"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5448)*





___
<a id="cognito.resources.userpoolclient.properties-21.clientname.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5446)*





___
<a id="cognito.resources.userpoolclient.properties-21.clientname.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5449)*





___

___
<a id="cognito.resources.userpoolclient.properties-21.explicitauthflows"></a>

###  ExplicitAuthFlows

** ExplicitAuthFlows**:  *`object`* 

*Defined in [spec/spec.ts:5457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5457)*




<a id="cognito.resources.userpoolclient.properties-21.explicitauthflows.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-explicitauthflows"

*Defined in [spec/spec.ts:5461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5461)*





___
<a id="cognito.resources.userpoolclient.properties-21.explicitauthflows.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5458)*





___
<a id="cognito.resources.userpoolclient.properties-21.explicitauthflows.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5460)*





___
<a id="cognito.resources.userpoolclient.properties-21.explicitauthflows.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5459)*





___
<a id="cognito.resources.userpoolclient.properties-21.explicitauthflows.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5462)*





___

___
<a id="cognito.resources.userpoolclient.properties-21.generatesecret"></a>

###  GenerateSecret

** GenerateSecret**:  *`object`* 

*Defined in [spec/spec.ts:5439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5439)*




<a id="cognito.resources.userpoolclient.properties-21.generatesecret.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-generatesecret"

*Defined in [spec/spec.ts:5441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5441)*





___
<a id="cognito.resources.userpoolclient.properties-21.generatesecret.primitivetype-70"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5442)*





___
<a id="cognito.resources.userpoolclient.properties-21.generatesecret.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5440)*





___
<a id="cognito.resources.userpoolclient.properties-21.generatesecret.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5443)*





___

___
<a id="cognito.resources.userpoolclient.properties-21.readattributes"></a>

###  ReadAttributes

** ReadAttributes**:  *`object`* 

*Defined in [spec/spec.ts:5470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5470)*




<a id="cognito.resources.userpoolclient.properties-21.readattributes.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-readattributes"

*Defined in [spec/spec.ts:5474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5474)*





___
<a id="cognito.resources.userpoolclient.properties-21.readattributes.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5471)*





___
<a id="cognito.resources.userpoolclient.properties-21.readattributes.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5473)*





___
<a id="cognito.resources.userpoolclient.properties-21.readattributes.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5472)*





___
<a id="cognito.resources.userpoolclient.properties-21.readattributes.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5475)*





___

___
<a id="cognito.resources.userpoolclient.properties-21.refreshtokenvalidity"></a>

###  RefreshTokenValidity

** RefreshTokenValidity**:  *`object`* 

*Defined in [spec/spec.ts:5464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5464)*




<a id="cognito.resources.userpoolclient.properties-21.refreshtokenvalidity.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-refreshtokenvalidity"

*Defined in [spec/spec.ts:5466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5466)*





___
<a id="cognito.resources.userpoolclient.properties-21.refreshtokenvalidity.primitivetype-71"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:5467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5467)*





___
<a id="cognito.resources.userpoolclient.properties-21.refreshtokenvalidity.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5465)*





___
<a id="cognito.resources.userpoolclient.properties-21.refreshtokenvalidity.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5468)*





___

___
<a id="cognito.resources.userpoolclient.properties-21.userpoolid"></a>

###  UserPoolId

** UserPoolId**:  *`object`* 

*Defined in [spec/spec.ts:5451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5451)*




<a id="cognito.resources.userpoolclient.properties-21.userpoolid.documentation-111"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-userpoolid"

*Defined in [spec/spec.ts:5453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5453)*





___
<a id="cognito.resources.userpoolclient.properties-21.userpoolid.primitivetype-72"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5454)*





___
<a id="cognito.resources.userpoolclient.properties-21.userpoolid.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5452)*





___
<a id="cognito.resources.userpoolclient.properties-21.userpoolid.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5455)*





___

___
<a id="cognito.resources.userpoolclient.properties-21.writeattributes"></a>

###  WriteAttributes

** WriteAttributes**:  *`object`* 

*Defined in [spec/spec.ts:5477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5477)*




<a id="cognito.resources.userpoolclient.properties-21.writeattributes.documentation-112"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolclient.html#cfn-cognito-userpoolclient-writeattributes"

*Defined in [spec/spec.ts:5481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5481)*





___
<a id="cognito.resources.userpoolclient.properties-21.writeattributes.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5478)*





___
<a id="cognito.resources.userpoolclient.properties-21.writeattributes.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5480)*





___
<a id="cognito.resources.userpoolclient.properties-21.writeattributes.type-24"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5479)*





___
<a id="cognito.resources.userpoolclient.properties-21.writeattributes.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5482)*





___

___

___

___
<a id="cognito.resources.userpoolgroup"></a>

###  UserPoolGroup

** UserPoolGroup**:  *`object`* 

*Defined in [spec/spec.ts:5487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5487)*




<a id="cognito.resources.userpoolgroup.documentation-113"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html"

*Defined in [spec/spec.ts:5488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5488)*





___
<a id="cognito.resources.userpoolgroup.name-26"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPoolGroup"

*Defined in [spec/spec.ts:5521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5521)*





___
<a id="cognito.resources.userpoolgroup.properties-22"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5489)*




<a id="cognito.resources.userpoolgroup.properties-22.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:5496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5496)*




<a id="cognito.resources.userpoolgroup.properties-22.description.documentation-114"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-description"

*Defined in [spec/spec.ts:5498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5498)*





___
<a id="cognito.resources.userpoolgroup.properties-22.description.primitivetype-73"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5499)*





___
<a id="cognito.resources.userpoolgroup.properties-22.description.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5497)*





___
<a id="cognito.resources.userpoolgroup.properties-22.description.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5500)*





___

___
<a id="cognito.resources.userpoolgroup.properties-22.groupname"></a>

###  GroupName

** GroupName**:  *`object`* 

*Defined in [spec/spec.ts:5490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5490)*




<a id="cognito.resources.userpoolgroup.properties-22.groupname.documentation-115"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-groupname"

*Defined in [spec/spec.ts:5492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5492)*





___
<a id="cognito.resources.userpoolgroup.properties-22.groupname.primitivetype-74"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5493)*





___
<a id="cognito.resources.userpoolgroup.properties-22.groupname.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5491)*





___
<a id="cognito.resources.userpoolgroup.properties-22.groupname.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5494)*





___

___
<a id="cognito.resources.userpoolgroup.properties-22.precedence"></a>

###  Precedence

** Precedence**:  *`object`* 

*Defined in [spec/spec.ts:5508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5508)*




<a id="cognito.resources.userpoolgroup.properties-22.precedence.documentation-116"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-precedence"

*Defined in [spec/spec.ts:5510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5510)*





___
<a id="cognito.resources.userpoolgroup.properties-22.precedence.primitivetype-75"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:5511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5511)*





___
<a id="cognito.resources.userpoolgroup.properties-22.precedence.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5509)*





___
<a id="cognito.resources.userpoolgroup.properties-22.precedence.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5512)*





___

___
<a id="cognito.resources.userpoolgroup.properties-22.rolearn-3"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:5514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5514)*




<a id="cognito.resources.userpoolgroup.properties-22.rolearn-3.documentation-117"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-rolearn"

*Defined in [spec/spec.ts:5516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5516)*





___
<a id="cognito.resources.userpoolgroup.properties-22.rolearn-3.primitivetype-76"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5517)*





___
<a id="cognito.resources.userpoolgroup.properties-22.rolearn-3.required-95"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5515)*





___
<a id="cognito.resources.userpoolgroup.properties-22.rolearn-3.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:5518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5518)*





___

___
<a id="cognito.resources.userpoolgroup.properties-22.userpoolid-1"></a>

###  UserPoolId

** UserPoolId**:  *`object`* 

*Defined in [spec/spec.ts:5502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5502)*




<a id="cognito.resources.userpoolgroup.properties-22.userpoolid-1.documentation-118"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolgroup.html#cfn-cognito-userpoolgroup-userpoolid"

*Defined in [spec/spec.ts:5504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5504)*





___
<a id="cognito.resources.userpoolgroup.properties-22.userpoolid-1.primitivetype-77"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5505)*





___
<a id="cognito.resources.userpoolgroup.properties-22.userpoolid-1.required-96"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5503)*





___
<a id="cognito.resources.userpoolgroup.properties-22.userpoolid-1.updatetype-95"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5506)*





___

___

___

___
<a id="cognito.resources.userpooluser"></a>

###  UserPoolUser

** UserPoolUser**:  *`object`* 

*Defined in [spec/spec.ts:5523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5523)*




<a id="cognito.resources.userpooluser.documentation-119"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html"

*Defined in [spec/spec.ts:5524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5524)*





___
<a id="cognito.resources.userpooluser.name-27"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPoolUser"

*Defined in [spec/spec.ts:5572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5572)*





___
<a id="cognito.resources.userpooluser.properties-23"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5525)*




<a id="cognito.resources.userpooluser.properties-23.desireddeliverymediums"></a>

###  DesiredDeliveryMediums

** DesiredDeliveryMediums**:  *`object`* 

*Defined in [spec/spec.ts:5551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5551)*




<a id="cognito.resources.userpooluser.properties-23.desireddeliverymediums.documentation-120"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-desireddeliverymediums"

*Defined in [spec/spec.ts:5555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5555)*





___
<a id="cognito.resources.userpooluser.properties-23.desireddeliverymediums.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5552)*





___
<a id="cognito.resources.userpooluser.properties-23.desireddeliverymediums.required-97"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5554)*





___
<a id="cognito.resources.userpooluser.properties-23.desireddeliverymediums.type-25"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5553)*





___
<a id="cognito.resources.userpooluser.properties-23.desireddeliverymediums.updatetype-96"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5556)*





___

___
<a id="cognito.resources.userpooluser.properties-23.forcealiascreation"></a>

###  ForceAliasCreation

** ForceAliasCreation**:  *`object`* 

*Defined in [spec/spec.ts:5558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5558)*




<a id="cognito.resources.userpooluser.properties-23.forcealiascreation.documentation-121"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-forcealiascreation"

*Defined in [spec/spec.ts:5560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5560)*





___
<a id="cognito.resources.userpooluser.properties-23.forcealiascreation.primitivetype-78"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:5561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5561)*





___
<a id="cognito.resources.userpooluser.properties-23.forcealiascreation.required-98"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5559)*





___
<a id="cognito.resources.userpooluser.properties-23.forcealiascreation.updatetype-97"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5562)*





___

___
<a id="cognito.resources.userpooluser.properties-23.messageaction"></a>

###  MessageAction

** MessageAction**:  *`object`* 

*Defined in [spec/spec.ts:5545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5545)*




<a id="cognito.resources.userpooluser.properties-23.messageaction.documentation-122"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-messageaction"

*Defined in [spec/spec.ts:5547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5547)*





___
<a id="cognito.resources.userpooluser.properties-23.messageaction.primitivetype-79"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5548)*





___
<a id="cognito.resources.userpooluser.properties-23.messageaction.required-99"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5546)*





___
<a id="cognito.resources.userpooluser.properties-23.messageaction.updatetype-98"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5549)*





___

___
<a id="cognito.resources.userpooluser.properties-23.userattributes"></a>

###  UserAttributes

** UserAttributes**:  *`object`* 

*Defined in [spec/spec.ts:5564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5564)*




<a id="cognito.resources.userpooluser.properties-23.userattributes.documentation-123"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userattributes"

*Defined in [spec/spec.ts:5567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5567)*





___
<a id="cognito.resources.userpooluser.properties-23.userattributes.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "AttributeType"

*Defined in [spec/spec.ts:5568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5568)*





___
<a id="cognito.resources.userpooluser.properties-23.userattributes.required-100"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5566)*





___
<a id="cognito.resources.userpooluser.properties-23.userattributes.type-26"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5565)*





___
<a id="cognito.resources.userpooluser.properties-23.userattributes.updatetype-99"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5569)*





___

___
<a id="cognito.resources.userpooluser.properties-23.userpoolid-2"></a>

###  UserPoolId

** UserPoolId**:  *`object`* 

*Defined in [spec/spec.ts:5533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5533)*




<a id="cognito.resources.userpooluser.properties-23.userpoolid-2.documentation-124"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-userpoolid"

*Defined in [spec/spec.ts:5535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5535)*





___
<a id="cognito.resources.userpooluser.properties-23.userpoolid-2.primitivetype-80"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5536)*





___
<a id="cognito.resources.userpooluser.properties-23.userpoolid-2.required-101"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5534)*





___
<a id="cognito.resources.userpooluser.properties-23.userpoolid-2.updatetype-100"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5537)*





___

___
<a id="cognito.resources.userpooluser.properties-23.username"></a>

###  Username

** Username**:  *`object`* 

*Defined in [spec/spec.ts:5539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5539)*




<a id="cognito.resources.userpooluser.properties-23.username.documentation-125"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-username"

*Defined in [spec/spec.ts:5541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5541)*





___
<a id="cognito.resources.userpooluser.properties-23.username.primitivetype-81"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5542)*





___
<a id="cognito.resources.userpooluser.properties-23.username.required-102"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5540)*





___
<a id="cognito.resources.userpooluser.properties-23.username.updatetype-101"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5543)*





___

___
<a id="cognito.resources.userpooluser.properties-23.validationdata"></a>

###  ValidationData

** ValidationData**:  *`object`* 

*Defined in [spec/spec.ts:5526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5526)*




<a id="cognito.resources.userpooluser.properties-23.validationdata.documentation-126"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpooluser.html#cfn-cognito-userpooluser-validationdata"

*Defined in [spec/spec.ts:5529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5529)*





___
<a id="cognito.resources.userpooluser.properties-23.validationdata.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "AttributeType"

*Defined in [spec/spec.ts:5530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5530)*





___
<a id="cognito.resources.userpooluser.properties-23.validationdata.required-103"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:5528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5528)*





___
<a id="cognito.resources.userpooluser.properties-23.validationdata.type-27"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:5527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5527)*





___
<a id="cognito.resources.userpooluser.properties-23.validationdata.updatetype-102"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5531)*





___

___

___

___
<a id="cognito.resources.userpoolusertogroupattachment"></a>

###  UserPoolUserToGroupAttachment

** UserPoolUserToGroupAttachment**:  *`object`* 

*Defined in [spec/spec.ts:5574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5574)*




<a id="cognito.resources.userpoolusertogroupattachment.documentation-127"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html"

*Defined in [spec/spec.ts:5575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5575)*





___
<a id="cognito.resources.userpoolusertogroupattachment.name-28"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Cognito::UserPoolUserToGroupAttachment"

*Defined in [spec/spec.ts:5596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5596)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:5576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5576)*




<a id="cognito.resources.userpoolusertogroupattachment.properties-24.groupname-1"></a>

###  GroupName

** GroupName**:  *`object`* 

*Defined in [spec/spec.ts:5577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5577)*




<a id="cognito.resources.userpoolusertogroupattachment.properties-24.groupname-1.documentation-128"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-groupname"

*Defined in [spec/spec.ts:5579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5579)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.groupname-1.primitivetype-82"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5580)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.groupname-1.required-104"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5578)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.groupname-1.updatetype-103"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5581)*





___

___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.userpoolid-3"></a>

###  UserPoolId

** UserPoolId**:  *`object`* 

*Defined in [spec/spec.ts:5583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5583)*




<a id="cognito.resources.userpoolusertogroupattachment.properties-24.userpoolid-3.documentation-129"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-userpoolid"

*Defined in [spec/spec.ts:5585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5585)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.userpoolid-3.primitivetype-83"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5586)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.userpoolid-3.required-105"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5584)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.userpoolid-3.updatetype-104"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5587)*





___

___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.username-1"></a>

###  Username

** Username**:  *`object`* 

*Defined in [spec/spec.ts:5589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5589)*




<a id="cognito.resources.userpoolusertogroupattachment.properties-24.username-1.documentation-130"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolusertogroupattachment.html#cfn-cognito-userpoolusertogroupattachment-username"

*Defined in [spec/spec.ts:5591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5591)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.username-1.primitivetype-84"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:5592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5592)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.username-1.required-106"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:5590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5590)*





___
<a id="cognito.resources.userpoolusertogroupattachment.properties-24.username-1.updatetype-105"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:5593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L5593)*





___

___

___

___

___

<a id="config"></a>

## Object literal: Config


<a id="config.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:6158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6158)*




<a id="config.models.configsnapshotdeliveryproperties"></a>

###  ConfigSnapshotDeliveryProperties

** ConfigSnapshotDeliveryProperties**:  *`object`* 

*Defined in [spec/spec.ts:6267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6267)*




<a id="config.models.configsnapshotdeliveryproperties.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html"

*Defined in [spec/spec.ts:6268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6268)*





___
<a id="config.models.configsnapshotdeliveryproperties.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::DeliveryChannel.ConfigSnapshotDeliveryProperties"

*Defined in [spec/spec.ts:6277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6277)*





___
<a id="config.models.configsnapshotdeliveryproperties.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6269)*




<a id="config.models.configsnapshotdeliveryproperties.properties.deliveryfrequency"></a>

###  DeliveryFrequency

** DeliveryFrequency**:  *`object`* 

*Defined in [spec/spec.ts:6270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6270)*




<a id="config.models.configsnapshotdeliveryproperties.properties.deliveryfrequency.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-deliverychannel-configsnapshotdeliveryproperties.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties-deliveryfrequency"

*Defined in [spec/spec.ts:6271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6271)*





___
<a id="config.models.configsnapshotdeliveryproperties.properties.deliveryfrequency.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6272)*





___
<a id="config.models.configsnapshotdeliveryproperties.properties.deliveryfrequency.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6273)*





___
<a id="config.models.configsnapshotdeliveryproperties.properties.deliveryfrequency.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6274)*





___

___

___

___
<a id="config.models.recordinggroup"></a>

###  RecordingGroup

** RecordingGroup**:  *`object`* 

*Defined in [spec/spec.ts:6241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6241)*




<a id="config.models.recordinggroup.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html"

*Defined in [spec/spec.ts:6242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6242)*





___
<a id="config.models.recordinggroup.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::ConfigurationRecorder.RecordingGroup"

*Defined in [spec/spec.ts:6265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6265)*





___
<a id="config.models.recordinggroup.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6243)*




<a id="config.models.recordinggroup.properties-1.allsupported"></a>

###  AllSupported

** AllSupported**:  *`object`* 

*Defined in [spec/spec.ts:6244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6244)*




<a id="config.models.recordinggroup.properties-1.allsupported.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-allsupported"

*Defined in [spec/spec.ts:6245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6245)*





___
<a id="config.models.recordinggroup.properties-1.allsupported.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6246)*





___
<a id="config.models.recordinggroup.properties-1.allsupported.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6247)*





___
<a id="config.models.recordinggroup.properties-1.allsupported.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6248)*





___

___
<a id="config.models.recordinggroup.properties-1.includeglobalresourcetypes"></a>

###  IncludeGlobalResourceTypes

** IncludeGlobalResourceTypes**:  *`object`* 

*Defined in [spec/spec.ts:6250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6250)*




<a id="config.models.recordinggroup.properties-1.includeglobalresourcetypes.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-includeglobalresourcetypes"

*Defined in [spec/spec.ts:6251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6251)*





___
<a id="config.models.recordinggroup.properties-1.includeglobalresourcetypes.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6252)*





___
<a id="config.models.recordinggroup.properties-1.includeglobalresourcetypes.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6253)*





___
<a id="config.models.recordinggroup.properties-1.includeglobalresourcetypes.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6254)*





___

___
<a id="config.models.recordinggroup.properties-1.resourcetypes"></a>

###  ResourceTypes

** ResourceTypes**:  *`object`* 

*Defined in [spec/spec.ts:6256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6256)*




<a id="config.models.recordinggroup.properties-1.resourcetypes.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configurationrecorder-recordinggroup.html#cfn-config-configurationrecorder-recordinggroup-resourcetypes"

*Defined in [spec/spec.ts:6257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6257)*





___
<a id="config.models.recordinggroup.properties-1.resourcetypes.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6258)*





___
<a id="config.models.recordinggroup.properties-1.resourcetypes.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6259)*





___
<a id="config.models.recordinggroup.properties-1.resourcetypes.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6260)*





___
<a id="config.models.recordinggroup.properties-1.resourcetypes.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6261)*





___
<a id="config.models.recordinggroup.properties-1.resourcetypes.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6262)*





___

___

___

___
<a id="config.models.scope"></a>

###  Scope

** Scope**:  *`object`* 

*Defined in [spec/spec.ts:6159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6159)*




<a id="config.models.scope.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html"

*Defined in [spec/spec.ts:6160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6160)*





___
<a id="config.models.scope.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::ConfigRule.Scope"

*Defined in [spec/spec.ts:6189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6189)*





___
<a id="config.models.scope.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6161)*




<a id="config.models.scope.properties-2.complianceresourceid"></a>

###  ComplianceResourceId

** ComplianceResourceId**:  *`object`* 

*Defined in [spec/spec.ts:6162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6162)*




<a id="config.models.scope.properties-2.complianceresourceid.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourceid"

*Defined in [spec/spec.ts:6163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6163)*





___
<a id="config.models.scope.properties-2.complianceresourceid.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6164)*





___
<a id="config.models.scope.properties-2.complianceresourceid.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6165)*





___
<a id="config.models.scope.properties-2.complianceresourceid.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6166)*





___

___
<a id="config.models.scope.properties-2.complianceresourcetypes"></a>

###  ComplianceResourceTypes

** ComplianceResourceTypes**:  *`object`* 

*Defined in [spec/spec.ts:6168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6168)*




<a id="config.models.scope.properties-2.complianceresourcetypes.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-complianceresourcetypes"

*Defined in [spec/spec.ts:6169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6169)*





___
<a id="config.models.scope.properties-2.complianceresourcetypes.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6170)*





___
<a id="config.models.scope.properties-2.complianceresourcetypes.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6171)*





___
<a id="config.models.scope.properties-2.complianceresourcetypes.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6172)*





___
<a id="config.models.scope.properties-2.complianceresourcetypes.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6173)*





___
<a id="config.models.scope.properties-2.complianceresourcetypes.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6174)*





___

___
<a id="config.models.scope.properties-2.tagkey"></a>

###  TagKey

** TagKey**:  *`object`* 

*Defined in [spec/spec.ts:6176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6176)*




<a id="config.models.scope.properties-2.tagkey.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagkey"

*Defined in [spec/spec.ts:6177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6177)*





___
<a id="config.models.scope.properties-2.tagkey.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6178)*





___
<a id="config.models.scope.properties-2.tagkey.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6179)*





___
<a id="config.models.scope.properties-2.tagkey.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6180)*





___

___
<a id="config.models.scope.properties-2.tagvalue"></a>

###  TagValue

** TagValue**:  *`object`* 

*Defined in [spec/spec.ts:6182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6182)*




<a id="config.models.scope.properties-2.tagvalue.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-scope.html#cfn-config-configrule-scope-tagvalue"

*Defined in [spec/spec.ts:6183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6183)*





___
<a id="config.models.scope.properties-2.tagvalue.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6184)*





___
<a id="config.models.scope.properties-2.tagvalue.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6185)*





___
<a id="config.models.scope.properties-2.tagvalue.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6186)*





___

___

___

___
<a id="config.models.source"></a>

###  Source

** Source**:  *`object`* 

*Defined in [spec/spec.ts:6191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6191)*




<a id="config.models.source.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html"

*Defined in [spec/spec.ts:6192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6192)*





___
<a id="config.models.source.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::ConfigRule.Source"

*Defined in [spec/spec.ts:6215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6215)*





___
<a id="config.models.source.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6193)*




<a id="config.models.source.properties-3.owner"></a>

###  Owner

** Owner**:  *`object`* 

*Defined in [spec/spec.ts:6194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6194)*




<a id="config.models.source.properties-3.owner.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-owner"

*Defined in [spec/spec.ts:6195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6195)*





___
<a id="config.models.source.properties-3.owner.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6196)*





___
<a id="config.models.source.properties-3.owner.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6197)*





___
<a id="config.models.source.properties-3.owner.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6198)*





___

___
<a id="config.models.source.properties-3.sourcedetails"></a>

###  SourceDetails

** SourceDetails**:  *`object`* 

*Defined in [spec/spec.ts:6200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6200)*




<a id="config.models.source.properties-3.sourcedetails.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourcedetails"

*Defined in [spec/spec.ts:6201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6201)*





___
<a id="config.models.source.properties-3.sourcedetails.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6202)*





___
<a id="config.models.source.properties-3.sourcedetails.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "SourceDetail"

*Defined in [spec/spec.ts:6203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6203)*





___
<a id="config.models.source.properties-3.sourcedetails.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6204)*





___
<a id="config.models.source.properties-3.sourcedetails.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6205)*





___
<a id="config.models.source.properties-3.sourcedetails.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6206)*





___

___
<a id="config.models.source.properties-3.sourceidentifier"></a>

###  SourceIdentifier

** SourceIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:6208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6208)*




<a id="config.models.source.properties-3.sourceidentifier.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source.html#cfn-config-configrule-source-sourceidentifier"

*Defined in [spec/spec.ts:6209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6209)*





___
<a id="config.models.source.properties-3.sourceidentifier.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6210)*





___
<a id="config.models.source.properties-3.sourceidentifier.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6211)*





___
<a id="config.models.source.properties-3.sourceidentifier.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6212)*





___

___

___

___
<a id="config.models.sourcedetail"></a>

###  SourceDetail

** SourceDetail**:  *`object`* 

*Defined in [spec/spec.ts:6217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6217)*




<a id="config.models.sourcedetail.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source-sourcedetails.html"

*Defined in [spec/spec.ts:6218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6218)*





___
<a id="config.models.sourcedetail.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::ConfigRule.SourceDetail"

*Defined in [spec/spec.ts:6239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6239)*





___
<a id="config.models.sourcedetail.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6219)*




<a id="config.models.sourcedetail.properties-4.eventsource"></a>

###  EventSource

** EventSource**:  *`object`* 

*Defined in [spec/spec.ts:6220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6220)*




<a id="config.models.sourcedetail.properties-4.eventsource.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source-sourcedetails.html#cfn-config-configrule-source-sourcedetail-eventsource"

*Defined in [spec/spec.ts:6221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6221)*





___
<a id="config.models.sourcedetail.properties-4.eventsource.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6222)*





___
<a id="config.models.sourcedetail.properties-4.eventsource.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6223)*





___
<a id="config.models.sourcedetail.properties-4.eventsource.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6224)*





___

___
<a id="config.models.sourcedetail.properties-4.maximumexecutionfrequency"></a>

###  MaximumExecutionFrequency

** MaximumExecutionFrequency**:  *`object`* 

*Defined in [spec/spec.ts:6226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6226)*




<a id="config.models.sourcedetail.properties-4.maximumexecutionfrequency.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source-sourcedetails.html#cfn-config-configrule-sourcedetail-maximumexecutionfrequency"

*Defined in [spec/spec.ts:6227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6227)*





___
<a id="config.models.sourcedetail.properties-4.maximumexecutionfrequency.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6228)*





___
<a id="config.models.sourcedetail.properties-4.maximumexecutionfrequency.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6229)*





___
<a id="config.models.sourcedetail.properties-4.maximumexecutionfrequency.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6230)*





___

___
<a id="config.models.sourcedetail.properties-4.messagetype"></a>

###  MessageType

** MessageType**:  *`object`* 

*Defined in [spec/spec.ts:6232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6232)*




<a id="config.models.sourcedetail.properties-4.messagetype.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-config-configrule-source-sourcedetails.html#cfn-config-configrule-source-sourcedetail-messagetype"

*Defined in [spec/spec.ts:6233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6233)*





___
<a id="config.models.sourcedetail.properties-4.messagetype.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6234)*





___
<a id="config.models.sourcedetail.properties-4.messagetype.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6235)*





___
<a id="config.models.sourcedetail.properties-4.messagetype.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6236)*





___

___

___

___

___
<a id="config.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:6043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6043)*




<a id="config.resources.configrule"></a>

###  ConfigRule

** ConfigRule**:  *`object`* 

*Defined in [spec/spec.ts:6044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6044)*




<a id="config.resources.configrule.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html"

*Defined in [spec/spec.ts:6056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6056)*





___
<a id="config.resources.configrule.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::ConfigRule"

*Defined in [spec/spec.ts:6095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6095)*





___
<a id="config.resources.configrule.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:6045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6045)*




<a id="config.resources.configrule.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:6046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6046)*




<a id="config.resources.configrule.attributes.arn.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6047)*





___

___
<a id="config.resources.configrule.attributes.compliance_type"></a>

###  Compliance.Type

** Compliance.Type**:  *`object`* 

*Defined in [spec/spec.ts:6049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6049)*




<a id="config.resources.configrule.attributes.compliance_type.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6050)*





___

___
<a id="config.resources.configrule.attributes.configruleid"></a>

###  ConfigRuleId

** ConfigRuleId**:  *`object`* 

*Defined in [spec/spec.ts:6052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6052)*




<a id="config.resources.configrule.attributes.configruleid.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6053)*





___

___

___
<a id="config.resources.configrule.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6057)*




<a id="config.resources.configrule.properties-5.configrulename"></a>

###  ConfigRuleName

** ConfigRuleName**:  *`object`* 

*Defined in [spec/spec.ts:6058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6058)*




<a id="config.resources.configrule.properties-5.configrulename.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-configrulename"

*Defined in [spec/spec.ts:6059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6059)*





___
<a id="config.resources.configrule.properties-5.configrulename.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6060)*





___
<a id="config.resources.configrule.properties-5.configrulename.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6061)*





___
<a id="config.resources.configrule.properties-5.configrulename.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6062)*





___

___
<a id="config.resources.configrule.properties-5.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:6064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6064)*




<a id="config.resources.configrule.properties-5.description.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-description"

*Defined in [spec/spec.ts:6065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6065)*





___
<a id="config.resources.configrule.properties-5.description.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6066)*





___
<a id="config.resources.configrule.properties-5.description.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6067)*





___
<a id="config.resources.configrule.properties-5.description.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6068)*





___

___
<a id="config.resources.configrule.properties-5.inputparameters"></a>

###  InputParameters

** InputParameters**:  *`object`* 

*Defined in [spec/spec.ts:6070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6070)*




<a id="config.resources.configrule.properties-5.inputparameters.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-inputparameters"

*Defined in [spec/spec.ts:6071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6071)*





___
<a id="config.resources.configrule.properties-5.inputparameters.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:6072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6072)*





___
<a id="config.resources.configrule.properties-5.inputparameters.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6073)*





___
<a id="config.resources.configrule.properties-5.inputparameters.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6074)*





___

___
<a id="config.resources.configrule.properties-5.maximumexecutionfrequency-1"></a>

###  MaximumExecutionFrequency

** MaximumExecutionFrequency**:  *`object`* 

*Defined in [spec/spec.ts:6076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6076)*




<a id="config.resources.configrule.properties-5.maximumexecutionfrequency-1.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-maximumexecutionfrequency"

*Defined in [spec/spec.ts:6077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6077)*





___
<a id="config.resources.configrule.properties-5.maximumexecutionfrequency-1.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6078)*





___
<a id="config.resources.configrule.properties-5.maximumexecutionfrequency-1.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6079)*





___
<a id="config.resources.configrule.properties-5.maximumexecutionfrequency-1.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6080)*





___

___
<a id="config.resources.configrule.properties-5.scope-1"></a>

###  Scope

** Scope**:  *`object`* 

*Defined in [spec/spec.ts:6082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6082)*




<a id="config.resources.configrule.properties-5.scope-1.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-scope"

*Defined in [spec/spec.ts:6083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6083)*





___
<a id="config.resources.configrule.properties-5.scope-1.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6084)*





___
<a id="config.resources.configrule.properties-5.scope-1.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "Scope"

*Defined in [spec/spec.ts:6085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6085)*





___
<a id="config.resources.configrule.properties-5.scope-1.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6086)*





___

___
<a id="config.resources.configrule.properties-5.source-1"></a>

###  Source

** Source**:  *`object`* 

*Defined in [spec/spec.ts:6088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6088)*




<a id="config.resources.configrule.properties-5.source-1.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configrule.html#cfn-config-configrule-source"

*Defined in [spec/spec.ts:6089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6089)*





___
<a id="config.resources.configrule.properties-5.source-1.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6090)*





___
<a id="config.resources.configrule.properties-5.source-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "Source"

*Defined in [spec/spec.ts:6091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6091)*





___
<a id="config.resources.configrule.properties-5.source-1.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6092)*





___

___

___

___
<a id="config.resources.configurationrecorder"></a>

###  ConfigurationRecorder

** ConfigurationRecorder**:  *`object`* 

*Defined in [spec/spec.ts:6097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6097)*




<a id="config.resources.configurationrecorder.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html"

*Defined in [spec/spec.ts:6098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6098)*





___
<a id="config.resources.configurationrecorder.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::ConfigurationRecorder"

*Defined in [spec/spec.ts:6119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6119)*





___
<a id="config.resources.configurationrecorder.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6099)*




<a id="config.resources.configurationrecorder.properties-6.name-7"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:6100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6100)*




<a id="config.resources.configurationrecorder.properties-6.name-7.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-name"

*Defined in [spec/spec.ts:6101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6101)*





___
<a id="config.resources.configurationrecorder.properties-6.name-7.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6102)*





___
<a id="config.resources.configurationrecorder.properties-6.name-7.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6103)*





___
<a id="config.resources.configurationrecorder.properties-6.name-7.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6104)*





___

___
<a id="config.resources.configurationrecorder.properties-6.recordinggroup-1"></a>

###  RecordingGroup

** RecordingGroup**:  *`object`* 

*Defined in [spec/spec.ts:6106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6106)*




<a id="config.resources.configurationrecorder.properties-6.recordinggroup-1.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-recordinggroup"

*Defined in [spec/spec.ts:6107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6107)*





___
<a id="config.resources.configurationrecorder.properties-6.recordinggroup-1.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6108)*





___
<a id="config.resources.configurationrecorder.properties-6.recordinggroup-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "RecordingGroup"

*Defined in [spec/spec.ts:6109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6109)*





___
<a id="config.resources.configurationrecorder.properties-6.recordinggroup-1.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6110)*





___

___
<a id="config.resources.configurationrecorder.properties-6.rolearn"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:6112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6112)*




<a id="config.resources.configurationrecorder.properties-6.rolearn.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-configurationrecorder.html#cfn-config-configurationrecorder-rolearn"

*Defined in [spec/spec.ts:6113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6113)*





___
<a id="config.resources.configurationrecorder.properties-6.rolearn.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6114)*





___
<a id="config.resources.configurationrecorder.properties-6.rolearn.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6115)*





___
<a id="config.resources.configurationrecorder.properties-6.rolearn.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6116)*





___

___

___

___
<a id="config.resources.deliverychannel"></a>

###  DeliveryChannel

** DeliveryChannel**:  *`object`* 

*Defined in [spec/spec.ts:6121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6121)*




<a id="config.resources.deliverychannel.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html"

*Defined in [spec/spec.ts:6122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6122)*





___
<a id="config.resources.deliverychannel.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Config::DeliveryChannel"

*Defined in [spec/spec.ts:6155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6155)*





___
<a id="config.resources.deliverychannel.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6123)*




<a id="config.resources.deliverychannel.properties-7.configsnapshotdeliveryproperties-1"></a>

###  ConfigSnapshotDeliveryProperties

** ConfigSnapshotDeliveryProperties**:  *`object`* 

*Defined in [spec/spec.ts:6124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6124)*




<a id="config.resources.deliverychannel.properties-7.configsnapshotdeliveryproperties-1.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-configsnapshotdeliveryproperties"

*Defined in [spec/spec.ts:6125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6125)*





___
<a id="config.resources.deliverychannel.properties-7.configsnapshotdeliveryproperties-1.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6126)*





___
<a id="config.resources.deliverychannel.properties-7.configsnapshotdeliveryproperties-1.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "ConfigSnapshotDeliveryProperties"

*Defined in [spec/spec.ts:6127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6127)*





___
<a id="config.resources.deliverychannel.properties-7.configsnapshotdeliveryproperties-1.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6128)*





___

___
<a id="config.resources.deliverychannel.properties-7.name-9"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:6130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6130)*




<a id="config.resources.deliverychannel.properties-7.name-9.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-name"

*Defined in [spec/spec.ts:6131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6131)*





___
<a id="config.resources.deliverychannel.properties-7.name-9.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6132)*





___
<a id="config.resources.deliverychannel.properties-7.name-9.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6133)*





___
<a id="config.resources.deliverychannel.properties-7.name-9.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6134)*





___

___
<a id="config.resources.deliverychannel.properties-7.s3bucketname"></a>

###  S3BucketName

** S3BucketName**:  *`object`* 

*Defined in [spec/spec.ts:6136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6136)*




<a id="config.resources.deliverychannel.properties-7.s3bucketname.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3bucketname"

*Defined in [spec/spec.ts:6137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6137)*





___
<a id="config.resources.deliverychannel.properties-7.s3bucketname.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6138)*





___
<a id="config.resources.deliverychannel.properties-7.s3bucketname.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6139)*





___
<a id="config.resources.deliverychannel.properties-7.s3bucketname.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6140)*





___

___
<a id="config.resources.deliverychannel.properties-7.s3keyprefix"></a>

###  S3KeyPrefix

** S3KeyPrefix**:  *`object`* 

*Defined in [spec/spec.ts:6142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6142)*




<a id="config.resources.deliverychannel.properties-7.s3keyprefix.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-s3keyprefix"

*Defined in [spec/spec.ts:6143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6143)*





___
<a id="config.resources.deliverychannel.properties-7.s3keyprefix.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6144)*





___
<a id="config.resources.deliverychannel.properties-7.s3keyprefix.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6145)*





___
<a id="config.resources.deliverychannel.properties-7.s3keyprefix.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6146)*





___

___
<a id="config.resources.deliverychannel.properties-7.snstopicarn"></a>

###  SnsTopicARN

** SnsTopicARN**:  *`object`* 

*Defined in [spec/spec.ts:6148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6148)*




<a id="config.resources.deliverychannel.properties-7.snstopicarn.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-config-deliverychannel.html#cfn-config-deliverychannel-snstopicarn"

*Defined in [spec/spec.ts:6149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6149)*





___
<a id="config.resources.deliverychannel.properties-7.snstopicarn.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6150)*





___
<a id="config.resources.deliverychannel.properties-7.snstopicarn.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6151)*





___
<a id="config.resources.deliverychannel.properties-7.snstopicarn.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6152)*





___

___

___

___

___

<a id="dax"></a>

## Object literal: DAX


<a id="dax.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:6421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6421)*


#### Type declaration





___
<a id="dax.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:6282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6282)*




<a id="dax.resources.cluster"></a>

###  Cluster

** Cluster**:  *`object`* 

*Defined in [spec/spec.ts:6283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6283)*




<a id="dax.resources.cluster.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html"

*Defined in [spec/spec.ts:6284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6284)*





___
<a id="dax.resources.cluster.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DAX::Cluster"

*Defined in [spec/spec.ts:6369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6369)*





___
<a id="dax.resources.cluster.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:6285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6285)*




<a id="dax.resources.cluster.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:6289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6289)*




<a id="dax.resources.cluster.attributes.arn.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6290)*





___

___
<a id="dax.resources.cluster.attributes.clusterdiscoveryendpoint"></a>

###  ClusterDiscoveryEndpoint

** ClusterDiscoveryEndpoint**:  *`object`* 

*Defined in [spec/spec.ts:6286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6286)*




<a id="dax.resources.cluster.attributes.clusterdiscoveryendpoint.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6287)*





___

___

___
<a id="dax.resources.cluster.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6293)*




<a id="dax.resources.cluster.properties.availabilityzones"></a>

###  AvailabilityZones

** AvailabilityZones**:  *`object`* 

*Defined in [spec/spec.ts:6312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6312)*




<a id="dax.resources.cluster.properties.availabilityzones.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-availabilityzones"

*Defined in [spec/spec.ts:6316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6316)*





___
<a id="dax.resources.cluster.properties.availabilityzones.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6313)*





___
<a id="dax.resources.cluster.properties.availabilityzones.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6315)*





___
<a id="dax.resources.cluster.properties.availabilityzones.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6314)*





___
<a id="dax.resources.cluster.properties.availabilityzones.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6317](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6317)*





___

___
<a id="dax.resources.cluster.properties.clustername"></a>

###  ClusterName

** ClusterName**:  *`object`* 

*Defined in [spec/spec.ts:6337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6337)*




<a id="dax.resources.cluster.properties.clustername.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-clustername"

*Defined in [spec/spec.ts:6339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6339)*





___
<a id="dax.resources.cluster.properties.clustername.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6340)*





___
<a id="dax.resources.cluster.properties.clustername.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6338)*





___
<a id="dax.resources.cluster.properties.clustername.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6341)*





___

___
<a id="dax.resources.cluster.properties.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:6294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6294)*




<a id="dax.resources.cluster.properties.description.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-description"

*Defined in [spec/spec.ts:6296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6296)*





___
<a id="dax.resources.cluster.properties.description.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6297)*





___
<a id="dax.resources.cluster.properties.description.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6295)*





___
<a id="dax.resources.cluster.properties.description.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6298)*





___

___
<a id="dax.resources.cluster.properties.iamrolearn"></a>

###  IAMRoleARN

** IAMRoleARN**:  *`object`* 

*Defined in [spec/spec.ts:6325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6325)*




<a id="dax.resources.cluster.properties.iamrolearn.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-iamrolearn"

*Defined in [spec/spec.ts:6327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6327)*





___
<a id="dax.resources.cluster.properties.iamrolearn.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6328)*





___
<a id="dax.resources.cluster.properties.iamrolearn.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6326)*





___
<a id="dax.resources.cluster.properties.iamrolearn.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6329)*





___

___
<a id="dax.resources.cluster.properties.nodetype"></a>

###  NodeType

** NodeType**:  *`object`* 

*Defined in [spec/spec.ts:6319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6319)*




<a id="dax.resources.cluster.properties.nodetype.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-nodetype"

*Defined in [spec/spec.ts:6321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6321)*





___
<a id="dax.resources.cluster.properties.nodetype.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6322)*





___
<a id="dax.resources.cluster.properties.nodetype.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6320)*





___
<a id="dax.resources.cluster.properties.nodetype.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6323)*





___

___
<a id="dax.resources.cluster.properties.notificationtopicarn"></a>

###  NotificationTopicARN

** NotificationTopicARN**:  *`object`* 

*Defined in [spec/spec.ts:6349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6349)*




<a id="dax.resources.cluster.properties.notificationtopicarn.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-notificationtopicarn"

*Defined in [spec/spec.ts:6351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6351)*





___
<a id="dax.resources.cluster.properties.notificationtopicarn.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6352)*





___
<a id="dax.resources.cluster.properties.notificationtopicarn.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6350)*





___
<a id="dax.resources.cluster.properties.notificationtopicarn.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6353)*





___

___
<a id="dax.resources.cluster.properties.parametergroupname"></a>

###  ParameterGroupName

** ParameterGroupName**:  *`object`* 

*Defined in [spec/spec.ts:6306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6306)*




<a id="dax.resources.cluster.properties.parametergroupname.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-parametergroupname"

*Defined in [spec/spec.ts:6308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6308)*





___
<a id="dax.resources.cluster.properties.parametergroupname.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6309)*





___
<a id="dax.resources.cluster.properties.parametergroupname.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6307)*





___
<a id="dax.resources.cluster.properties.parametergroupname.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6310)*





___

___
<a id="dax.resources.cluster.properties.preferredmaintenancewindow"></a>

###  PreferredMaintenanceWindow

** PreferredMaintenanceWindow**:  *`object`* 

*Defined in [spec/spec.ts:6343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6343)*




<a id="dax.resources.cluster.properties.preferredmaintenancewindow.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-preferredmaintenancewindow"

*Defined in [spec/spec.ts:6345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6345)*





___
<a id="dax.resources.cluster.properties.preferredmaintenancewindow.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6346)*





___
<a id="dax.resources.cluster.properties.preferredmaintenancewindow.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6344)*





___
<a id="dax.resources.cluster.properties.preferredmaintenancewindow.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6347)*





___

___
<a id="dax.resources.cluster.properties.replicationfactor"></a>

###  ReplicationFactor

** ReplicationFactor**:  *`object`* 

*Defined in [spec/spec.ts:6300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6300)*




<a id="dax.resources.cluster.properties.replicationfactor.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-replicationfactor"

*Defined in [spec/spec.ts:6302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6302)*





___
<a id="dax.resources.cluster.properties.replicationfactor.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:6303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6303)*





___
<a id="dax.resources.cluster.properties.replicationfactor.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6301)*





___
<a id="dax.resources.cluster.properties.replicationfactor.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6304)*





___

___
<a id="dax.resources.cluster.properties.securitygroupids"></a>

###  SecurityGroupIds

** SecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:6355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6355)*




<a id="dax.resources.cluster.properties.securitygroupids.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-securitygroupids"

*Defined in [spec/spec.ts:6359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6359)*





___
<a id="dax.resources.cluster.properties.securitygroupids.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6356)*





___
<a id="dax.resources.cluster.properties.securitygroupids.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6358)*





___
<a id="dax.resources.cluster.properties.securitygroupids.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6357)*





___
<a id="dax.resources.cluster.properties.securitygroupids.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6360)*





___

___
<a id="dax.resources.cluster.properties.subnetgroupname"></a>

###  SubnetGroupName

** SubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:6331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6331)*




<a id="dax.resources.cluster.properties.subnetgroupname.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-subnetgroupname"

*Defined in [spec/spec.ts:6333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6333)*





___
<a id="dax.resources.cluster.properties.subnetgroupname.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6334)*





___
<a id="dax.resources.cluster.properties.subnetgroupname.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6332)*





___
<a id="dax.resources.cluster.properties.subnetgroupname.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6335)*





___

___
<a id="dax.resources.cluster.properties.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:6362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6362)*




<a id="dax.resources.cluster.properties.tags.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-cluster.html#cfn-dax-cluster-tags"

*Defined in [spec/spec.ts:6364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6364)*





___
<a id="dax.resources.cluster.properties.tags.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:6365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6365)*





___
<a id="dax.resources.cluster.properties.tags.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6363)*





___
<a id="dax.resources.cluster.properties.tags.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6366)*





___

___

___

___
<a id="dax.resources.parametergroup"></a>

###  ParameterGroup

** ParameterGroup**:  *`object`* 

*Defined in [spec/spec.ts:6371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6371)*




<a id="dax.resources.parametergroup.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html"

*Defined in [spec/spec.ts:6372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6372)*





___
<a id="dax.resources.parametergroup.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DAX::ParameterGroup"

*Defined in [spec/spec.ts:6393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6393)*





___
<a id="dax.resources.parametergroup.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6373)*




<a id="dax.resources.parametergroup.properties-1.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:6380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6380)*




<a id="dax.resources.parametergroup.properties-1.description-1.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-description"

*Defined in [spec/spec.ts:6382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6382)*





___
<a id="dax.resources.parametergroup.properties-1.description-1.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6383)*





___
<a id="dax.resources.parametergroup.properties-1.description-1.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6381)*





___
<a id="dax.resources.parametergroup.properties-1.description-1.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6384)*





___

___
<a id="dax.resources.parametergroup.properties-1.parametergroupname-1"></a>

###  ParameterGroupName

** ParameterGroupName**:  *`object`* 

*Defined in [spec/spec.ts:6386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6386)*




<a id="dax.resources.parametergroup.properties-1.parametergroupname-1.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parametergroupname"

*Defined in [spec/spec.ts:6388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6388)*





___
<a id="dax.resources.parametergroup.properties-1.parametergroupname-1.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6389)*





___
<a id="dax.resources.parametergroup.properties-1.parametergroupname-1.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6387)*





___
<a id="dax.resources.parametergroup.properties-1.parametergroupname-1.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6390)*





___

___
<a id="dax.resources.parametergroup.properties-1.parameternamevalues"></a>

###  ParameterNameValues

** ParameterNameValues**:  *`object`* 

*Defined in [spec/spec.ts:6374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6374)*




<a id="dax.resources.parametergroup.properties-1.parameternamevalues.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-parametergroup.html#cfn-dax-parametergroup-parameternamevalues"

*Defined in [spec/spec.ts:6376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6376)*





___
<a id="dax.resources.parametergroup.properties-1.parameternamevalues.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:6377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6377)*





___
<a id="dax.resources.parametergroup.properties-1.parameternamevalues.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6375)*





___
<a id="dax.resources.parametergroup.properties-1.parameternamevalues.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6378)*





___

___

___

___
<a id="dax.resources.subnetgroup"></a>

###  SubnetGroup

** SubnetGroup**:  *`object`* 

*Defined in [spec/spec.ts:6395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6395)*




<a id="dax.resources.subnetgroup.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html"

*Defined in [spec/spec.ts:6396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6396)*





___
<a id="dax.resources.subnetgroup.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DAX::SubnetGroup"

*Defined in [spec/spec.ts:6418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6418)*





___
<a id="dax.resources.subnetgroup.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6397)*




<a id="dax.resources.subnetgroup.properties-2.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:6398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6398)*




<a id="dax.resources.subnetgroup.properties-2.description-2.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-description"

*Defined in [spec/spec.ts:6400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6400)*





___
<a id="dax.resources.subnetgroup.properties-2.description-2.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6401)*





___
<a id="dax.resources.subnetgroup.properties-2.description-2.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6399)*





___
<a id="dax.resources.subnetgroup.properties-2.description-2.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6402)*





___

___
<a id="dax.resources.subnetgroup.properties-2.subnetgroupname-1"></a>

###  SubnetGroupName

** SubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:6404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6404)*




<a id="dax.resources.subnetgroup.properties-2.subnetgroupname-1.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetgroupname"

*Defined in [spec/spec.ts:6406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6406)*





___
<a id="dax.resources.subnetgroup.properties-2.subnetgroupname-1.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6407)*





___
<a id="dax.resources.subnetgroup.properties-2.subnetgroupname-1.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6405)*





___
<a id="dax.resources.subnetgroup.properties-2.subnetgroupname-1.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6408)*





___

___
<a id="dax.resources.subnetgroup.properties-2.subnetids"></a>

###  SubnetIds

** SubnetIds**:  *`object`* 

*Defined in [spec/spec.ts:6410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6410)*




<a id="dax.resources.subnetgroup.properties-2.subnetids.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dax-subnetgroup.html#cfn-dax-subnetgroup-subnetids"

*Defined in [spec/spec.ts:6414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6414)*





___
<a id="dax.resources.subnetgroup.properties-2.subnetids.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6411)*





___
<a id="dax.resources.subnetgroup.properties-2.subnetids.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6413)*





___
<a id="dax.resources.subnetgroup.properties-2.subnetids.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6412)*





___
<a id="dax.resources.subnetgroup.properties-2.subnetids.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6415)*





___

___

___

___

___

<a id="dms"></a>

## Object literal: DMS


<a id="dms.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:6804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6804)*




<a id="dms.models.dynamodbsettings"></a>

###  DynamoDbSettings

** DynamoDbSettings**:  *`object`* 

*Defined in [spec/spec.ts:6805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6805)*




<a id="dms.models.dynamodbsettings.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html"

*Defined in [spec/spec.ts:6806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6806)*





___
<a id="dms.models.dynamodbsettings.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::Endpoint.DynamoDbSettings"

*Defined in [spec/spec.ts:6815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6815)*





___
<a id="dms.models.dynamodbsettings.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6807)*




<a id="dms.models.dynamodbsettings.properties.serviceaccessrolearn"></a>

###  ServiceAccessRoleArn

** ServiceAccessRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:6808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6808)*




<a id="dms.models.dynamodbsettings.properties.serviceaccessrolearn.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-dynamodbsettings.html#cfn-dms-endpoint-dynamodbsettings-serviceaccessrolearn"

*Defined in [spec/spec.ts:6810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6810)*





___
<a id="dms.models.dynamodbsettings.properties.serviceaccessrolearn.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6811)*





___
<a id="dms.models.dynamodbsettings.properties.serviceaccessrolearn.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6809)*





___
<a id="dms.models.dynamodbsettings.properties.serviceaccessrolearn.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6812)*





___

___

___

___
<a id="dms.models.mongodbsettings"></a>

###  MongoDbSettings

** MongoDbSettings**:  *`object`* 

*Defined in [spec/spec.ts:6817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6817)*




<a id="dms.models.mongodbsettings.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html"

*Defined in [spec/spec.ts:6818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6818)*





___
<a id="dms.models.mongodbsettings.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::Endpoint.MongoDbSettings"

*Defined in [spec/spec.ts:6887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6887)*





___
<a id="dms.models.mongodbsettings.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6819)*




<a id="dms.models.mongodbsettings.properties-1.authmechanism"></a>

###  AuthMechanism

** AuthMechanism**:  *`object`* 

*Defined in [spec/spec.ts:6826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6826)*




<a id="dms.models.mongodbsettings.properties-1.authmechanism.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authmechanism"

*Defined in [spec/spec.ts:6828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6828)*





___
<a id="dms.models.mongodbsettings.properties-1.authmechanism.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6829)*





___
<a id="dms.models.mongodbsettings.properties-1.authmechanism.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6827)*





___
<a id="dms.models.mongodbsettings.properties-1.authmechanism.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6830)*





___

___
<a id="dms.models.mongodbsettings.properties-1.authsource"></a>

###  AuthSource

** AuthSource**:  *`object`* 

*Defined in [spec/spec.ts:6820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6820)*




<a id="dms.models.mongodbsettings.properties-1.authsource.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authsource"

*Defined in [spec/spec.ts:6822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6822)*





___
<a id="dms.models.mongodbsettings.properties-1.authsource.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6823)*





___
<a id="dms.models.mongodbsettings.properties-1.authsource.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6821)*





___
<a id="dms.models.mongodbsettings.properties-1.authsource.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6824)*





___

___
<a id="dms.models.mongodbsettings.properties-1.authtype"></a>

###  AuthType

** AuthType**:  *`object`* 

*Defined in [spec/spec.ts:6868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6868)*




<a id="dms.models.mongodbsettings.properties-1.authtype.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-authtype"

*Defined in [spec/spec.ts:6870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6870)*





___
<a id="dms.models.mongodbsettings.properties-1.authtype.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6871)*





___
<a id="dms.models.mongodbsettings.properties-1.authtype.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6869)*





___
<a id="dms.models.mongodbsettings.properties-1.authtype.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6872)*





___

___
<a id="dms.models.mongodbsettings.properties-1.databasename"></a>

###  DatabaseName

** DatabaseName**:  *`object`* 

*Defined in [spec/spec.ts:6862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6862)*




<a id="dms.models.mongodbsettings.properties-1.databasename.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-databasename"

*Defined in [spec/spec.ts:6864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6864)*





___
<a id="dms.models.mongodbsettings.properties-1.databasename.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6865)*





___
<a id="dms.models.mongodbsettings.properties-1.databasename.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6863)*





___
<a id="dms.models.mongodbsettings.properties-1.databasename.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6866)*





___

___
<a id="dms.models.mongodbsettings.properties-1.docstoinvestigate"></a>

###  DocsToInvestigate

** DocsToInvestigate**:  *`object`* 

*Defined in [spec/spec.ts:6838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6838)*




<a id="dms.models.mongodbsettings.properties-1.docstoinvestigate.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-docstoinvestigate"

*Defined in [spec/spec.ts:6840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6840)*





___
<a id="dms.models.mongodbsettings.properties-1.docstoinvestigate.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6841)*





___
<a id="dms.models.mongodbsettings.properties-1.docstoinvestigate.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6839)*





___
<a id="dms.models.mongodbsettings.properties-1.docstoinvestigate.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6842)*





___

___
<a id="dms.models.mongodbsettings.properties-1.extractdocid"></a>

###  ExtractDocId

** ExtractDocId**:  *`object`* 

*Defined in [spec/spec.ts:6856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6856)*




<a id="dms.models.mongodbsettings.properties-1.extractdocid.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-extractdocid"

*Defined in [spec/spec.ts:6858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6858)*





___
<a id="dms.models.mongodbsettings.properties-1.extractdocid.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6859)*





___
<a id="dms.models.mongodbsettings.properties-1.extractdocid.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6857)*





___
<a id="dms.models.mongodbsettings.properties-1.extractdocid.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6860)*





___

___
<a id="dms.models.mongodbsettings.properties-1.nestinglevel"></a>

###  NestingLevel

** NestingLevel**:  *`object`* 

*Defined in [spec/spec.ts:6880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6880)*




<a id="dms.models.mongodbsettings.properties-1.nestinglevel.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-nestinglevel"

*Defined in [spec/spec.ts:6882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6882)*





___
<a id="dms.models.mongodbsettings.properties-1.nestinglevel.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6883)*





___
<a id="dms.models.mongodbsettings.properties-1.nestinglevel.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6881)*





___
<a id="dms.models.mongodbsettings.properties-1.nestinglevel.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6884)*





___

___
<a id="dms.models.mongodbsettings.properties-1.password"></a>

###  Password

** Password**:  *`object`* 

*Defined in [spec/spec.ts:6874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6874)*




<a id="dms.models.mongodbsettings.properties-1.password.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-password"

*Defined in [spec/spec.ts:6876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6876)*





___
<a id="dms.models.mongodbsettings.properties-1.password.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6877)*





___
<a id="dms.models.mongodbsettings.properties-1.password.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6875)*





___
<a id="dms.models.mongodbsettings.properties-1.password.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6878)*





___

___
<a id="dms.models.mongodbsettings.properties-1.port"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:6850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6850)*




<a id="dms.models.mongodbsettings.properties-1.port.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-port"

*Defined in [spec/spec.ts:6852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6852)*





___
<a id="dms.models.mongodbsettings.properties-1.port.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:6853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6853)*





___
<a id="dms.models.mongodbsettings.properties-1.port.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6851)*





___
<a id="dms.models.mongodbsettings.properties-1.port.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6854)*





___

___
<a id="dms.models.mongodbsettings.properties-1.servername"></a>

###  ServerName

** ServerName**:  *`object`* 

*Defined in [spec/spec.ts:6844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6844)*




<a id="dms.models.mongodbsettings.properties-1.servername.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-servername"

*Defined in [spec/spec.ts:6846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6846)*





___
<a id="dms.models.mongodbsettings.properties-1.servername.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6847)*





___
<a id="dms.models.mongodbsettings.properties-1.servername.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6845)*





___
<a id="dms.models.mongodbsettings.properties-1.servername.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6848)*





___

___
<a id="dms.models.mongodbsettings.properties-1.username"></a>

###  Username

** Username**:  *`object`* 

*Defined in [spec/spec.ts:6832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6832)*




<a id="dms.models.mongodbsettings.properties-1.username.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-mongodbsettings.html#cfn-dms-endpoint-mongodbsettings-username"

*Defined in [spec/spec.ts:6834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6834)*





___
<a id="dms.models.mongodbsettings.properties-1.username.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6835)*





___
<a id="dms.models.mongodbsettings.properties-1.username.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6833)*





___
<a id="dms.models.mongodbsettings.properties-1.username.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6836)*





___

___

___

___
<a id="dms.models.s3settings"></a>

###  S3Settings

** S3Settings**:  *`object`* 

*Defined in [spec/spec.ts:6889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6889)*




<a id="dms.models.s3settings.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html"

*Defined in [spec/spec.ts:6890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6890)*





___
<a id="dms.models.s3settings.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::Endpoint.S3Settings"

*Defined in [spec/spec.ts:6935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6935)*





___
<a id="dms.models.s3settings.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6891)*




<a id="dms.models.s3settings.properties-2.bucketfolder"></a>

###  BucketFolder

** BucketFolder**:  *`object`* 

*Defined in [spec/spec.ts:6904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6904)*




<a id="dms.models.s3settings.properties-2.bucketfolder.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketfolder"

*Defined in [spec/spec.ts:6906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6906)*





___
<a id="dms.models.s3settings.properties-2.bucketfolder.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6907)*





___
<a id="dms.models.s3settings.properties-2.bucketfolder.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6905)*





___
<a id="dms.models.s3settings.properties-2.bucketfolder.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6908)*





___

___
<a id="dms.models.s3settings.properties-2.bucketname"></a>

###  BucketName

** BucketName**:  *`object`* 

*Defined in [spec/spec.ts:6898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6898)*




<a id="dms.models.s3settings.properties-2.bucketname.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-bucketname"

*Defined in [spec/spec.ts:6900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6900)*





___
<a id="dms.models.s3settings.properties-2.bucketname.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6901)*





___
<a id="dms.models.s3settings.properties-2.bucketname.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6899)*





___
<a id="dms.models.s3settings.properties-2.bucketname.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6902)*





___

___
<a id="dms.models.s3settings.properties-2.compressiontype"></a>

###  CompressionType

** CompressionType**:  *`object`* 

*Defined in [spec/spec.ts:6928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6928)*




<a id="dms.models.s3settings.properties-2.compressiontype.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-compressiontype"

*Defined in [spec/spec.ts:6930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6930)*





___
<a id="dms.models.s3settings.properties-2.compressiontype.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6931)*





___
<a id="dms.models.s3settings.properties-2.compressiontype.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6929)*





___
<a id="dms.models.s3settings.properties-2.compressiontype.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6932)*





___

___
<a id="dms.models.s3settings.properties-2.csvdelimiter"></a>

###  CsvDelimiter

** CsvDelimiter**:  *`object`* 

*Defined in [spec/spec.ts:6916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6916)*




<a id="dms.models.s3settings.properties-2.csvdelimiter.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvdelimiter"

*Defined in [spec/spec.ts:6918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6918)*





___
<a id="dms.models.s3settings.properties-2.csvdelimiter.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6919)*





___
<a id="dms.models.s3settings.properties-2.csvdelimiter.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6917)*





___
<a id="dms.models.s3settings.properties-2.csvdelimiter.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6920)*





___

___
<a id="dms.models.s3settings.properties-2.csvrowdelimiter"></a>

###  CsvRowDelimiter

** CsvRowDelimiter**:  *`object`* 

*Defined in [spec/spec.ts:6910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6910)*




<a id="dms.models.s3settings.properties-2.csvrowdelimiter.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-csvrowdelimiter"

*Defined in [spec/spec.ts:6912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6912)*





___
<a id="dms.models.s3settings.properties-2.csvrowdelimiter.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6913)*





___
<a id="dms.models.s3settings.properties-2.csvrowdelimiter.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6911)*





___
<a id="dms.models.s3settings.properties-2.csvrowdelimiter.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6914)*





___

___
<a id="dms.models.s3settings.properties-2.externaltabledefinition"></a>

###  ExternalTableDefinition

** ExternalTableDefinition**:  *`object`* 

*Defined in [spec/spec.ts:6892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6892)*




<a id="dms.models.s3settings.properties-2.externaltabledefinition.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-externaltabledefinition"

*Defined in [spec/spec.ts:6894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6894)*





___
<a id="dms.models.s3settings.properties-2.externaltabledefinition.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6895)*





___
<a id="dms.models.s3settings.properties-2.externaltabledefinition.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6893)*





___
<a id="dms.models.s3settings.properties-2.externaltabledefinition.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6896)*





___

___
<a id="dms.models.s3settings.properties-2.serviceaccessrolearn-1"></a>

###  ServiceAccessRoleArn

** ServiceAccessRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:6922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6922)*




<a id="dms.models.s3settings.properties-2.serviceaccessrolearn-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-endpoint-s3settings.html#cfn-dms-endpoint-s3settings-serviceaccessrolearn"

*Defined in [spec/spec.ts:6924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6924)*





___
<a id="dms.models.s3settings.properties-2.serviceaccessrolearn-1.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6925)*





___
<a id="dms.models.s3settings.properties-2.serviceaccessrolearn-1.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6923)*





___
<a id="dms.models.s3settings.properties-2.serviceaccessrolearn-1.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6926)*





___

___

___

___

___
<a id="dms.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:6424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6424)*




<a id="dms.resources.certificate"></a>

###  Certificate

** Certificate**:  *`object`* 

*Defined in [spec/spec.ts:6425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6425)*




<a id="dms.resources.certificate.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html"

*Defined in [spec/spec.ts:6426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6426)*





___
<a id="dms.resources.certificate.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::Certificate"

*Defined in [spec/spec.ts:6447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6447)*





___
<a id="dms.resources.certificate.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6427)*




<a id="dms.resources.certificate.properties-3.certificateidentifier"></a>

###  CertificateIdentifier

** CertificateIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:6428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6428)*




<a id="dms.resources.certificate.properties-3.certificateidentifier.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificateidentifier"

*Defined in [spec/spec.ts:6430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6430)*





___
<a id="dms.resources.certificate.properties-3.certificateidentifier.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6431)*





___
<a id="dms.resources.certificate.properties-3.certificateidentifier.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6429)*





___
<a id="dms.resources.certificate.properties-3.certificateidentifier.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6432)*





___

___
<a id="dms.resources.certificate.properties-3.certificatepem"></a>

###  CertificatePem

** CertificatePem**:  *`object`* 

*Defined in [spec/spec.ts:6434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6434)*




<a id="dms.resources.certificate.properties-3.certificatepem.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatepem"

*Defined in [spec/spec.ts:6436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6436)*





___
<a id="dms.resources.certificate.properties-3.certificatepem.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6437)*





___
<a id="dms.resources.certificate.properties-3.certificatepem.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6435)*





___
<a id="dms.resources.certificate.properties-3.certificatepem.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6438)*





___

___
<a id="dms.resources.certificate.properties-3.certificatewallet"></a>

###  CertificateWallet

** CertificateWallet**:  *`object`* 

*Defined in [spec/spec.ts:6440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6440)*




<a id="dms.resources.certificate.properties-3.certificatewallet.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-certificate.html#cfn-dms-certificate-certificatewallet"

*Defined in [spec/spec.ts:6442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6442)*





___
<a id="dms.resources.certificate.properties-3.certificatewallet.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6443)*





___
<a id="dms.resources.certificate.properties-3.certificatewallet.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6441)*





___
<a id="dms.resources.certificate.properties-3.certificatewallet.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6444)*





___

___

___

___
<a id="dms.resources.endpoint"></a>

###  Endpoint

** Endpoint**:  *`object`* 

*Defined in [spec/spec.ts:6449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6449)*




<a id="dms.resources.endpoint.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html"

*Defined in [spec/spec.ts:6450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6450)*





___
<a id="dms.resources.endpoint.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::Endpoint"

*Defined in [spec/spec.ts:6555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6555)*





___
<a id="dms.resources.endpoint.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:6451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6451)*




<a id="dms.resources.endpoint.attributes.externalid"></a>

###  ExternalId

** ExternalId**:  *`object`* 

*Defined in [spec/spec.ts:6452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6452)*




<a id="dms.resources.endpoint.attributes.externalid.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6453)*





___

___

___
<a id="dms.resources.endpoint.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6456)*




<a id="dms.resources.endpoint.properties-4.certificatearn"></a>

###  CertificateArn

** CertificateArn**:  *`object`* 

*Defined in [spec/spec.ts:6542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6542)*




<a id="dms.resources.endpoint.properties-4.certificatearn.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-certificatearn"

*Defined in [spec/spec.ts:6544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6544)*





___
<a id="dms.resources.endpoint.properties-4.certificatearn.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6545)*





___
<a id="dms.resources.endpoint.properties-4.certificatearn.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6543)*





___
<a id="dms.resources.endpoint.properties-4.certificatearn.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6546)*





___

___
<a id="dms.resources.endpoint.properties-4.databasename-1"></a>

###  DatabaseName

** DatabaseName**:  *`object`* 

*Defined in [spec/spec.ts:6469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6469)*




<a id="dms.resources.endpoint.properties-4.databasename-1.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-databasename"

*Defined in [spec/spec.ts:6471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6471)*





___
<a id="dms.resources.endpoint.properties-4.databasename-1.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6472)*





___
<a id="dms.resources.endpoint.properties-4.databasename-1.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6470)*





___
<a id="dms.resources.endpoint.properties-4.databasename-1.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6473)*





___

___
<a id="dms.resources.endpoint.properties-4.dynamodbsettings-1"></a>

###  DynamoDbSettings

** DynamoDbSettings**:  *`object`* 

*Defined in [spec/spec.ts:6487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6487)*




<a id="dms.resources.endpoint.properties-4.dynamodbsettings-1.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-dynamodbsettings"

*Defined in [spec/spec.ts:6490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6490)*





___
<a id="dms.resources.endpoint.properties-4.dynamodbsettings-1.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6489)*





___
<a id="dms.resources.endpoint.properties-4.dynamodbsettings-1.type"></a>

###  Type

**●  Type**:  *`string`*  = "DynamoDbSettings"

*Defined in [spec/spec.ts:6488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6488)*





___
<a id="dms.resources.endpoint.properties-4.dynamodbsettings-1.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6491)*





___

___
<a id="dms.resources.endpoint.properties-4.endpointidentifier"></a>

###  EndpointIdentifier

** EndpointIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:6530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6530)*




<a id="dms.resources.endpoint.properties-4.endpointidentifier.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointidentifier"

*Defined in [spec/spec.ts:6532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6532)*





___
<a id="dms.resources.endpoint.properties-4.endpointidentifier.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6533)*





___
<a id="dms.resources.endpoint.properties-4.endpointidentifier.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6531)*





___
<a id="dms.resources.endpoint.properties-4.endpointidentifier.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6534)*





___

___
<a id="dms.resources.endpoint.properties-4.endpointtype"></a>

###  EndpointType

** EndpointType**:  *`object`* 

*Defined in [spec/spec.ts:6517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6517)*




<a id="dms.resources.endpoint.properties-4.endpointtype.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-endpointtype"

*Defined in [spec/spec.ts:6519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6519)*





___
<a id="dms.resources.endpoint.properties-4.endpointtype.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6520)*





___
<a id="dms.resources.endpoint.properties-4.endpointtype.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6518)*





___
<a id="dms.resources.endpoint.properties-4.endpointtype.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6521)*





___

___
<a id="dms.resources.endpoint.properties-4.enginename"></a>

###  EngineName

** EngineName**:  *`object`* 

*Defined in [spec/spec.ts:6481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6481)*




<a id="dms.resources.endpoint.properties-4.enginename.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-enginename"

*Defined in [spec/spec.ts:6483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6483)*





___
<a id="dms.resources.endpoint.properties-4.enginename.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6484)*





___
<a id="dms.resources.endpoint.properties-4.enginename.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6482)*





___
<a id="dms.resources.endpoint.properties-4.enginename.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6485)*





___

___
<a id="dms.resources.endpoint.properties-4.extraconnectionattributes"></a>

###  ExtraConnectionAttributes

** ExtraConnectionAttributes**:  *`object`* 

*Defined in [spec/spec.ts:6511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6511)*




<a id="dms.resources.endpoint.properties-4.extraconnectionattributes.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-extraconnectionattributes"

*Defined in [spec/spec.ts:6513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6513)*





___
<a id="dms.resources.endpoint.properties-4.extraconnectionattributes.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6514)*





___
<a id="dms.resources.endpoint.properties-4.extraconnectionattributes.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6512)*





___
<a id="dms.resources.endpoint.properties-4.extraconnectionattributes.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6515)*





___

___
<a id="dms.resources.endpoint.properties-4.kmskeyid"></a>

###  KmsKeyId

** KmsKeyId**:  *`object`* 

*Defined in [spec/spec.ts:6457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6457)*




<a id="dms.resources.endpoint.properties-4.kmskeyid.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-kmskeyid"

*Defined in [spec/spec.ts:6459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6459)*





___
<a id="dms.resources.endpoint.properties-4.kmskeyid.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6460)*





___
<a id="dms.resources.endpoint.properties-4.kmskeyid.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6458)*





___
<a id="dms.resources.endpoint.properties-4.kmskeyid.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6461)*





___

___
<a id="dms.resources.endpoint.properties-4.mongodbsettings-1"></a>

###  MongoDbSettings

** MongoDbSettings**:  *`object`* 

*Defined in [spec/spec.ts:6548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6548)*




<a id="dms.resources.endpoint.properties-4.mongodbsettings-1.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-mongodbsettings"

*Defined in [spec/spec.ts:6551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6551)*





___
<a id="dms.resources.endpoint.properties-4.mongodbsettings-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6550)*





___
<a id="dms.resources.endpoint.properties-4.mongodbsettings-1.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "MongoDbSettings"

*Defined in [spec/spec.ts:6549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6549)*





___
<a id="dms.resources.endpoint.properties-4.mongodbsettings-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6552)*





___

___
<a id="dms.resources.endpoint.properties-4.password-1"></a>

###  Password

** Password**:  *`object`* 

*Defined in [spec/spec.ts:6536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6536)*




<a id="dms.resources.endpoint.properties-4.password-1.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-password"

*Defined in [spec/spec.ts:6538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6538)*





___
<a id="dms.resources.endpoint.properties-4.password-1.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6539)*





___
<a id="dms.resources.endpoint.properties-4.password-1.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6537)*





___
<a id="dms.resources.endpoint.properties-4.password-1.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6540)*





___

___
<a id="dms.resources.endpoint.properties-4.port-1"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:6463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6463)*




<a id="dms.resources.endpoint.properties-4.port-1.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-port"

*Defined in [spec/spec.ts:6465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6465)*





___
<a id="dms.resources.endpoint.properties-4.port-1.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:6466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6466)*





___
<a id="dms.resources.endpoint.properties-4.port-1.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6464)*





___
<a id="dms.resources.endpoint.properties-4.port-1.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6467)*





___

___
<a id="dms.resources.endpoint.properties-4.s3settings-1"></a>

###  S3Settings

** S3Settings**:  *`object`* 

*Defined in [spec/spec.ts:6475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6475)*




<a id="dms.resources.endpoint.properties-4.s3settings-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-s3settings"

*Defined in [spec/spec.ts:6478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6478)*





___
<a id="dms.resources.endpoint.properties-4.s3settings-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6477)*





___
<a id="dms.resources.endpoint.properties-4.s3settings-1.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "S3Settings"

*Defined in [spec/spec.ts:6476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6476)*





___
<a id="dms.resources.endpoint.properties-4.s3settings-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6479)*





___

___
<a id="dms.resources.endpoint.properties-4.servername-1"></a>

###  ServerName

** ServerName**:  *`object`* 

*Defined in [spec/spec.ts:6505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6505)*




<a id="dms.resources.endpoint.properties-4.servername-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-servername"

*Defined in [spec/spec.ts:6507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6507)*





___
<a id="dms.resources.endpoint.properties-4.servername-1.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6508)*





___
<a id="dms.resources.endpoint.properties-4.servername-1.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6506)*





___
<a id="dms.resources.endpoint.properties-4.servername-1.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6509)*





___

___
<a id="dms.resources.endpoint.properties-4.sslmode"></a>

###  SslMode

** SslMode**:  *`object`* 

*Defined in [spec/spec.ts:6499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6499)*




<a id="dms.resources.endpoint.properties-4.sslmode.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-sslmode"

*Defined in [spec/spec.ts:6501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6501)*





___
<a id="dms.resources.endpoint.properties-4.sslmode.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6502)*





___
<a id="dms.resources.endpoint.properties-4.sslmode.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6500)*





___
<a id="dms.resources.endpoint.properties-4.sslmode.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6503)*





___

___
<a id="dms.resources.endpoint.properties-4.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:6523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6523)*




<a id="dms.resources.endpoint.properties-4.tags.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-tags"

*Defined in [spec/spec.ts:6526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6526)*





___
<a id="dms.resources.endpoint.properties-4.tags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:6527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6527)*





___
<a id="dms.resources.endpoint.properties-4.tags.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6525)*





___
<a id="dms.resources.endpoint.properties-4.tags.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6524)*





___
<a id="dms.resources.endpoint.properties-4.tags.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6528)*





___

___
<a id="dms.resources.endpoint.properties-4.username-1"></a>

###  Username

** Username**:  *`object`* 

*Defined in [spec/spec.ts:6493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6493)*




<a id="dms.resources.endpoint.properties-4.username-1.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-endpoint.html#cfn-dms-endpoint-username"

*Defined in [spec/spec.ts:6495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6495)*





___
<a id="dms.resources.endpoint.properties-4.username-1.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6496)*





___
<a id="dms.resources.endpoint.properties-4.username-1.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6494)*





___
<a id="dms.resources.endpoint.properties-4.username-1.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6497)*





___

___

___

___
<a id="dms.resources.eventsubscription"></a>

###  EventSubscription

** EventSubscription**:  *`object`* 

*Defined in [spec/spec.ts:6557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6557)*




<a id="dms.resources.eventsubscription.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html"

*Defined in [spec/spec.ts:6558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6558)*





___
<a id="dms.resources.eventsubscription.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::EventSubscription"

*Defined in [spec/spec.ts:6606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6606)*





___
<a id="dms.resources.eventsubscription.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6559)*




<a id="dms.resources.eventsubscription.properties-5.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:6573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6573)*




<a id="dms.resources.eventsubscription.properties-5.enabled.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-enabled"

*Defined in [spec/spec.ts:6575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6575)*





___
<a id="dms.resources.eventsubscription.properties-5.enabled.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6576)*





___
<a id="dms.resources.eventsubscription.properties-5.enabled.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6574)*





___
<a id="dms.resources.eventsubscription.properties-5.enabled.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6577)*





___

___
<a id="dms.resources.eventsubscription.properties-5.eventcategories"></a>

###  EventCategories

** EventCategories**:  *`object`* 

*Defined in [spec/spec.ts:6566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6566)*




<a id="dms.resources.eventsubscription.properties-5.eventcategories.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-eventcategories"

*Defined in [spec/spec.ts:6570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6570)*





___
<a id="dms.resources.eventsubscription.properties-5.eventcategories.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6567)*





___
<a id="dms.resources.eventsubscription.properties-5.eventcategories.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6569)*





___
<a id="dms.resources.eventsubscription.properties-5.eventcategories.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6568)*





___
<a id="dms.resources.eventsubscription.properties-5.eventcategories.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6571)*





___

___
<a id="dms.resources.eventsubscription.properties-5.snstopicarn"></a>

###  SnsTopicArn

** SnsTopicArn**:  *`object`* 

*Defined in [spec/spec.ts:6585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6585)*




<a id="dms.resources.eventsubscription.properties-5.snstopicarn.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-snstopicarn"

*Defined in [spec/spec.ts:6587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6587)*





___
<a id="dms.resources.eventsubscription.properties-5.snstopicarn.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6588)*





___
<a id="dms.resources.eventsubscription.properties-5.snstopicarn.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6586)*





___
<a id="dms.resources.eventsubscription.properties-5.snstopicarn.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6589)*





___

___
<a id="dms.resources.eventsubscription.properties-5.sourceids"></a>

###  SourceIds

** SourceIds**:  *`object`* 

*Defined in [spec/spec.ts:6591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6591)*




<a id="dms.resources.eventsubscription.properties-5.sourceids.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourceids"

*Defined in [spec/spec.ts:6595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6595)*





___
<a id="dms.resources.eventsubscription.properties-5.sourceids.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6592)*





___
<a id="dms.resources.eventsubscription.properties-5.sourceids.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6594)*





___
<a id="dms.resources.eventsubscription.properties-5.sourceids.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6593)*





___
<a id="dms.resources.eventsubscription.properties-5.sourceids.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6596)*





___

___
<a id="dms.resources.eventsubscription.properties-5.sourcetype"></a>

###  SourceType

** SourceType**:  *`object`* 

*Defined in [spec/spec.ts:6560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6560)*




<a id="dms.resources.eventsubscription.properties-5.sourcetype.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-sourcetype"

*Defined in [spec/spec.ts:6562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6562)*





___
<a id="dms.resources.eventsubscription.properties-5.sourcetype.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6563)*





___
<a id="dms.resources.eventsubscription.properties-5.sourcetype.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6561)*





___
<a id="dms.resources.eventsubscription.properties-5.sourcetype.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6564)*





___

___
<a id="dms.resources.eventsubscription.properties-5.subscriptionname"></a>

###  SubscriptionName

** SubscriptionName**:  *`object`* 

*Defined in [spec/spec.ts:6579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6579)*




<a id="dms.resources.eventsubscription.properties-5.subscriptionname.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-subscriptionname"

*Defined in [spec/spec.ts:6581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6581)*





___
<a id="dms.resources.eventsubscription.properties-5.subscriptionname.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6582)*





___
<a id="dms.resources.eventsubscription.properties-5.subscriptionname.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6580)*





___
<a id="dms.resources.eventsubscription.properties-5.subscriptionname.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6583)*





___

___
<a id="dms.resources.eventsubscription.properties-5.tags-1"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:6598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6598)*




<a id="dms.resources.eventsubscription.properties-5.tags-1.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-eventsubscription.html#cfn-dms-eventsubscription-tags"

*Defined in [spec/spec.ts:6601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6601)*





___
<a id="dms.resources.eventsubscription.properties-5.tags-1.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:6602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6602)*





___
<a id="dms.resources.eventsubscription.properties-5.tags-1.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6600)*





___
<a id="dms.resources.eventsubscription.properties-5.tags-1.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6599)*





___
<a id="dms.resources.eventsubscription.properties-5.tags-1.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6603)*





___

___

___

___
<a id="dms.resources.replicationinstance"></a>

###  ReplicationInstance

** ReplicationInstance**:  *`object`* 

*Defined in [spec/spec.ts:6608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6608)*




<a id="dms.resources.replicationinstance.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html"

*Defined in [spec/spec.ts:6609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6609)*





___
<a id="dms.resources.replicationinstance.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::ReplicationInstance"

*Defined in [spec/spec.ts:6708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6708)*





___
<a id="dms.resources.replicationinstance.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:6610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6610)*




<a id="dms.resources.replicationinstance.attributes-1.replicationinstanceprivateipaddresses"></a>

###  ReplicationInstancePrivateIpAddresses

** ReplicationInstancePrivateIpAddresses**:  *`object`* 

*Defined in [spec/spec.ts:6615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6615)*




<a id="dms.resources.replicationinstance.attributes-1.replicationinstanceprivateipaddresses.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6616)*





___
<a id="dms.resources.replicationinstance.attributes-1.replicationinstanceprivateipaddresses.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6617)*





___

___
<a id="dms.resources.replicationinstance.attributes-1.replicationinstancepublicipaddresses"></a>

###  ReplicationInstancePublicIpAddresses

** ReplicationInstancePublicIpAddresses**:  *`object`* 

*Defined in [spec/spec.ts:6611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6611)*




<a id="dms.resources.replicationinstance.attributes-1.replicationinstancepublicipaddresses.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6612)*





___
<a id="dms.resources.replicationinstance.attributes-1.replicationinstancepublicipaddresses.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6613)*





___

___

___
<a id="dms.resources.replicationinstance.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6620)*




<a id="dms.resources.replicationinstance.properties-6.allocatedstorage"></a>

###  AllocatedStorage

** AllocatedStorage**:  *`object`* 

*Defined in [spec/spec.ts:6663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6663)*




<a id="dms.resources.replicationinstance.properties-6.allocatedstorage.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allocatedstorage"

*Defined in [spec/spec.ts:6665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6665)*





___
<a id="dms.resources.replicationinstance.properties-6.allocatedstorage.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:6666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6666)*





___
<a id="dms.resources.replicationinstance.properties-6.allocatedstorage.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6664)*





___
<a id="dms.resources.replicationinstance.properties-6.allocatedstorage.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6667)*





___

___
<a id="dms.resources.replicationinstance.properties-6.allowmajorversionupgrade"></a>

###  AllowMajorVersionUpgrade

** AllowMajorVersionUpgrade**:  *`object`* 

*Defined in [spec/spec.ts:6676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6676)*




<a id="dms.resources.replicationinstance.properties-6.allowmajorversionupgrade.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-allowmajorversionupgrade"

*Defined in [spec/spec.ts:6678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6678)*





___
<a id="dms.resources.replicationinstance.properties-6.allowmajorversionupgrade.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6679)*





___
<a id="dms.resources.replicationinstance.properties-6.allowmajorversionupgrade.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6677)*





___
<a id="dms.resources.replicationinstance.properties-6.allowmajorversionupgrade.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6680)*





___

___
<a id="dms.resources.replicationinstance.properties-6.autominorversionupgrade"></a>

###  AutoMinorVersionUpgrade

** AutoMinorVersionUpgrade**:  *`object`* 

*Defined in [spec/spec.ts:6651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6651)*




<a id="dms.resources.replicationinstance.properties-6.autominorversionupgrade.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-autominorversionupgrade"

*Defined in [spec/spec.ts:6653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6653)*





___
<a id="dms.resources.replicationinstance.properties-6.autominorversionupgrade.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6654)*





___
<a id="dms.resources.replicationinstance.properties-6.autominorversionupgrade.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6652)*





___
<a id="dms.resources.replicationinstance.properties-6.autominorversionupgrade.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6655)*





___

___
<a id="dms.resources.replicationinstance.properties-6.availabilityzone"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:6639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6639)*




<a id="dms.resources.replicationinstance.properties-6.availabilityzone.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-availabilityzone"

*Defined in [spec/spec.ts:6641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6641)*





___
<a id="dms.resources.replicationinstance.properties-6.availabilityzone.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6642)*





___
<a id="dms.resources.replicationinstance.properties-6.availabilityzone.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6640)*





___
<a id="dms.resources.replicationinstance.properties-6.availabilityzone.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6643)*





___

___
<a id="dms.resources.replicationinstance.properties-6.engineversion"></a>

###  EngineVersion

** EngineVersion**:  *`object`* 

*Defined in [spec/spec.ts:6627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6627)*




<a id="dms.resources.replicationinstance.properties-6.engineversion.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-engineversion"

*Defined in [spec/spec.ts:6629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6629)*





___
<a id="dms.resources.replicationinstance.properties-6.engineversion.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6630)*





___
<a id="dms.resources.replicationinstance.properties-6.engineversion.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6628)*





___
<a id="dms.resources.replicationinstance.properties-6.engineversion.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6631)*





___

___
<a id="dms.resources.replicationinstance.properties-6.kmskeyid-1"></a>

###  KmsKeyId

** KmsKeyId**:  *`object`* 

*Defined in [spec/spec.ts:6633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6633)*




<a id="dms.resources.replicationinstance.properties-6.kmskeyid-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-kmskeyid"

*Defined in [spec/spec.ts:6635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6635)*





___
<a id="dms.resources.replicationinstance.properties-6.kmskeyid-1.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6636)*





___
<a id="dms.resources.replicationinstance.properties-6.kmskeyid-1.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6634)*





___
<a id="dms.resources.replicationinstance.properties-6.kmskeyid-1.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6637)*





___

___
<a id="dms.resources.replicationinstance.properties-6.multiaz"></a>

###  MultiAZ

** MultiAZ**:  *`object`* 

*Defined in [spec/spec.ts:6694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6694)*




<a id="dms.resources.replicationinstance.properties-6.multiaz.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-multiaz"

*Defined in [spec/spec.ts:6696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6696)*





___
<a id="dms.resources.replicationinstance.properties-6.multiaz.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6697)*





___
<a id="dms.resources.replicationinstance.properties-6.multiaz.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6695)*





___
<a id="dms.resources.replicationinstance.properties-6.multiaz.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6698)*





___

___
<a id="dms.resources.replicationinstance.properties-6.preferredmaintenancewindow"></a>

###  PreferredMaintenanceWindow

** PreferredMaintenanceWindow**:  *`object`* 

*Defined in [spec/spec.ts:6645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6645)*




<a id="dms.resources.replicationinstance.properties-6.preferredmaintenancewindow.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-preferredmaintenancewindow"

*Defined in [spec/spec.ts:6647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6647)*





___
<a id="dms.resources.replicationinstance.properties-6.preferredmaintenancewindow.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6648)*





___
<a id="dms.resources.replicationinstance.properties-6.preferredmaintenancewindow.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6646)*





___
<a id="dms.resources.replicationinstance.properties-6.preferredmaintenancewindow.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6649)*





___

___
<a id="dms.resources.replicationinstance.properties-6.publiclyaccessible"></a>

###  PubliclyAccessible

** PubliclyAccessible**:  *`object`* 

*Defined in [spec/spec.ts:6688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6688)*




<a id="dms.resources.replicationinstance.properties-6.publiclyaccessible.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-publiclyaccessible"

*Defined in [spec/spec.ts:6690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6690)*





___
<a id="dms.resources.replicationinstance.properties-6.publiclyaccessible.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6691)*





___
<a id="dms.resources.replicationinstance.properties-6.publiclyaccessible.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6689)*





___
<a id="dms.resources.replicationinstance.properties-6.publiclyaccessible.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6692)*





___

___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceclass"></a>

###  ReplicationInstanceClass

** ReplicationInstanceClass**:  *`object`* 

*Defined in [spec/spec.ts:6682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6682)*




<a id="dms.resources.replicationinstance.properties-6.replicationinstanceclass.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceclass"

*Defined in [spec/spec.ts:6684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6684)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceclass.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6685)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceclass.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6683)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceclass.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6686)*





___

___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceidentifier"></a>

###  ReplicationInstanceIdentifier

** ReplicationInstanceIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:6621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6621)*




<a id="dms.resources.replicationinstance.properties-6.replicationinstanceidentifier.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationinstanceidentifier"

*Defined in [spec/spec.ts:6623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6623)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceidentifier.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6624)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceidentifier.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6622)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationinstanceidentifier.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6625)*





___

___
<a id="dms.resources.replicationinstance.properties-6.replicationsubnetgroupidentifier"></a>

###  ReplicationSubnetGroupIdentifier

** ReplicationSubnetGroupIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:6657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6657)*




<a id="dms.resources.replicationinstance.properties-6.replicationsubnetgroupidentifier.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-replicationsubnetgroupidentifier"

*Defined in [spec/spec.ts:6659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6659)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationsubnetgroupidentifier.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6660)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationsubnetgroupidentifier.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6658)*





___
<a id="dms.resources.replicationinstance.properties-6.replicationsubnetgroupidentifier.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6661)*





___

___
<a id="dms.resources.replicationinstance.properties-6.tags-2"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:6700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6700)*




<a id="dms.resources.replicationinstance.properties-6.tags-2.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-tags"

*Defined in [spec/spec.ts:6703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6703)*





___
<a id="dms.resources.replicationinstance.properties-6.tags-2.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:6704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6704)*





___
<a id="dms.resources.replicationinstance.properties-6.tags-2.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6702)*





___
<a id="dms.resources.replicationinstance.properties-6.tags-2.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6701)*





___
<a id="dms.resources.replicationinstance.properties-6.tags-2.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6705)*





___

___
<a id="dms.resources.replicationinstance.properties-6.vpcsecuritygroupids"></a>

###  VpcSecurityGroupIds

** VpcSecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:6669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6669)*




<a id="dms.resources.replicationinstance.properties-6.vpcsecuritygroupids.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationinstance.html#cfn-dms-replicationinstance-vpcsecuritygroupids"

*Defined in [spec/spec.ts:6673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6673)*





___
<a id="dms.resources.replicationinstance.properties-6.vpcsecuritygroupids.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6670)*





___
<a id="dms.resources.replicationinstance.properties-6.vpcsecuritygroupids.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6672)*





___
<a id="dms.resources.replicationinstance.properties-6.vpcsecuritygroupids.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6671)*





___
<a id="dms.resources.replicationinstance.properties-6.vpcsecuritygroupids.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6674)*





___

___

___

___
<a id="dms.resources.replicationsubnetgroup"></a>

###  ReplicationSubnetGroup

** ReplicationSubnetGroup**:  *`object`* 

*Defined in [spec/spec.ts:6710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6710)*




<a id="dms.resources.replicationsubnetgroup.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html"

*Defined in [spec/spec.ts:6711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6711)*





___
<a id="dms.resources.replicationsubnetgroup.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::ReplicationSubnetGroup"

*Defined in [spec/spec.ts:6740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6740)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6712)*




<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupdescription"></a>

###  ReplicationSubnetGroupDescription

** ReplicationSubnetGroupDescription**:  *`object`* 

*Defined in [spec/spec.ts:6713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6713)*




<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupdescription.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupdescription"

*Defined in [spec/spec.ts:6715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6715)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupdescription.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6716)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupdescription.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6714)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupdescription.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6717)*





___

___
<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupidentifier-1"></a>

###  ReplicationSubnetGroupIdentifier

** ReplicationSubnetGroupIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:6719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6719)*




<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupidentifier-1.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-replicationsubnetgroupidentifier"

*Defined in [spec/spec.ts:6721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6721)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupidentifier-1.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6722)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupidentifier-1.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6720)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.replicationsubnetgroupidentifier-1.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6723)*





___

___
<a id="dms.resources.replicationsubnetgroup.properties-7.subnetids"></a>

###  SubnetIds

** SubnetIds**:  *`object`* 

*Defined in [spec/spec.ts:6725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6725)*




<a id="dms.resources.replicationsubnetgroup.properties-7.subnetids.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-subnetids"

*Defined in [spec/spec.ts:6729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6729)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.subnetids.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6726)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.subnetids.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6728)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.subnetids.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6727)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.subnetids.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6730)*





___

___
<a id="dms.resources.replicationsubnetgroup.properties-7.tags-3"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:6732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6732)*




<a id="dms.resources.replicationsubnetgroup.properties-7.tags-3.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationsubnetgroup.html#cfn-dms-replicationsubnetgroup-tags"

*Defined in [spec/spec.ts:6735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6735)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.tags-3.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:6736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6736)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.tags-3.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6734)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.tags-3.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6733)*





___
<a id="dms.resources.replicationsubnetgroup.properties-7.tags-3.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6737)*





___

___

___

___
<a id="dms.resources.replicationtask"></a>

###  ReplicationTask

** ReplicationTask**:  *`object`* 

*Defined in [spec/spec.ts:6742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6742)*




<a id="dms.resources.replicationtask.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html"

*Defined in [spec/spec.ts:6743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6743)*





___
<a id="dms.resources.replicationtask.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DMS::ReplicationTask"

*Defined in [spec/spec.ts:6801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6801)*





___
<a id="dms.resources.replicationtask.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6744)*




<a id="dms.resources.replicationtask.properties-8.cdcstarttime"></a>

###  CdcStartTime

** CdcStartTime**:  *`object`* 

*Defined in [spec/spec.ts:6794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6794)*




<a id="dms.resources.replicationtask.properties-8.cdcstarttime.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-cdcstarttime"

*Defined in [spec/spec.ts:6796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6796)*





___
<a id="dms.resources.replicationtask.properties-8.cdcstarttime.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:6797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6797)*





___
<a id="dms.resources.replicationtask.properties-8.cdcstarttime.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6795)*





___
<a id="dms.resources.replicationtask.properties-8.cdcstarttime.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6798)*





___

___
<a id="dms.resources.replicationtask.properties-8.migrationtype"></a>

###  MigrationType

** MigrationType**:  *`object`* 

*Defined in [spec/spec.ts:6769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6769)*




<a id="dms.resources.replicationtask.properties-8.migrationtype.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-migrationtype"

*Defined in [spec/spec.ts:6771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6771)*





___
<a id="dms.resources.replicationtask.properties-8.migrationtype.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6772)*





___
<a id="dms.resources.replicationtask.properties-8.migrationtype.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6770)*





___
<a id="dms.resources.replicationtask.properties-8.migrationtype.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6773)*





___

___
<a id="dms.resources.replicationtask.properties-8.replicationinstancearn"></a>

###  ReplicationInstanceArn

** ReplicationInstanceArn**:  *`object`* 

*Defined in [spec/spec.ts:6781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6781)*




<a id="dms.resources.replicationtask.properties-8.replicationinstancearn.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationinstancearn"

*Defined in [spec/spec.ts:6783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6783)*





___
<a id="dms.resources.replicationtask.properties-8.replicationinstancearn.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6784)*





___
<a id="dms.resources.replicationtask.properties-8.replicationinstancearn.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6782)*





___
<a id="dms.resources.replicationtask.properties-8.replicationinstancearn.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6785)*





___

___
<a id="dms.resources.replicationtask.properties-8.replicationtaskidentifier"></a>

###  ReplicationTaskIdentifier

** ReplicationTaskIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:6757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6757)*




<a id="dms.resources.replicationtask.properties-8.replicationtaskidentifier.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtaskidentifier"

*Defined in [spec/spec.ts:6759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6759)*





___
<a id="dms.resources.replicationtask.properties-8.replicationtaskidentifier.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6760)*





___
<a id="dms.resources.replicationtask.properties-8.replicationtaskidentifier.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6758)*





___
<a id="dms.resources.replicationtask.properties-8.replicationtaskidentifier.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6761)*





___

___
<a id="dms.resources.replicationtask.properties-8.replicationtasksettings"></a>

###  ReplicationTaskSettings

** ReplicationTaskSettings**:  *`object`* 

*Defined in [spec/spec.ts:6745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6745)*




<a id="dms.resources.replicationtask.properties-8.replicationtasksettings.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-replicationtasksettings"

*Defined in [spec/spec.ts:6747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6747)*





___
<a id="dms.resources.replicationtask.properties-8.replicationtasksettings.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6748)*





___
<a id="dms.resources.replicationtask.properties-8.replicationtasksettings.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6746)*





___
<a id="dms.resources.replicationtask.properties-8.replicationtasksettings.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6749)*





___

___
<a id="dms.resources.replicationtask.properties-8.sourceendpointarn"></a>

###  SourceEndpointArn

** SourceEndpointArn**:  *`object`* 

*Defined in [spec/spec.ts:6763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6763)*




<a id="dms.resources.replicationtask.properties-8.sourceendpointarn.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-sourceendpointarn"

*Defined in [spec/spec.ts:6765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6765)*





___
<a id="dms.resources.replicationtask.properties-8.sourceendpointarn.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6766)*





___
<a id="dms.resources.replicationtask.properties-8.sourceendpointarn.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6764)*





___
<a id="dms.resources.replicationtask.properties-8.sourceendpointarn.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6767)*





___

___
<a id="dms.resources.replicationtask.properties-8.tablemappings"></a>

###  TableMappings

** TableMappings**:  *`object`* 

*Defined in [spec/spec.ts:6751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6751)*




<a id="dms.resources.replicationtask.properties-8.tablemappings.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tablemappings"

*Defined in [spec/spec.ts:6753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6753)*





___
<a id="dms.resources.replicationtask.properties-8.tablemappings.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6754)*





___
<a id="dms.resources.replicationtask.properties-8.tablemappings.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6752)*





___
<a id="dms.resources.replicationtask.properties-8.tablemappings.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6755)*





___

___
<a id="dms.resources.replicationtask.properties-8.tags-4"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:6787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6787)*




<a id="dms.resources.replicationtask.properties-8.tags-4.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-tags"

*Defined in [spec/spec.ts:6790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6790)*





___
<a id="dms.resources.replicationtask.properties-8.tags-4.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:6791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6791)*





___
<a id="dms.resources.replicationtask.properties-8.tags-4.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6789)*





___
<a id="dms.resources.replicationtask.properties-8.tags-4.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6788)*





___
<a id="dms.resources.replicationtask.properties-8.tags-4.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6792)*





___

___
<a id="dms.resources.replicationtask.properties-8.targetendpointarn"></a>

###  TargetEndpointArn

** TargetEndpointArn**:  *`object`* 

*Defined in [spec/spec.ts:6775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6775)*




<a id="dms.resources.replicationtask.properties-8.targetendpointarn.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-replicationtask.html#cfn-dms-replicationtask-targetendpointarn"

*Defined in [spec/spec.ts:6777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6777)*





___
<a id="dms.resources.replicationtask.properties-8.targetendpointarn.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6778)*





___
<a id="dms.resources.replicationtask.properties-8.targetendpointarn.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6776)*





___
<a id="dms.resources.replicationtask.properties-8.targetendpointarn.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6779)*





___

___

___

___

___

<a id="datapipeline"></a>

## Object literal: DataPipeline


<a id="datapipeline.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:6998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6998)*




<a id="datapipeline.models.field"></a>

###  Field

** Field**:  *`object`* 

*Defined in [spec/spec.ts:6999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6999)*




<a id="datapipeline.models.field.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects-fields.html"

*Defined in [spec/spec.ts:7000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7000)*





___
<a id="datapipeline.models.field.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DataPipeline::Pipeline.Field"

*Defined in [spec/spec.ts:7021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7021)*





___
<a id="datapipeline.models.field.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7001)*




<a id="datapipeline.models.field.properties.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:7002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7002)*




<a id="datapipeline.models.field.properties.key.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects-fields.html#cfn-datapipeline-pipeline-pipelineobjects-fields-key"

*Defined in [spec/spec.ts:7003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7003)*





___
<a id="datapipeline.models.field.properties.key.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7004)*





___
<a id="datapipeline.models.field.properties.key.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7005)*





___
<a id="datapipeline.models.field.properties.key.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7006)*





___

___
<a id="datapipeline.models.field.properties.refvalue"></a>

###  RefValue

** RefValue**:  *`object`* 

*Defined in [spec/spec.ts:7008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7008)*




<a id="datapipeline.models.field.properties.refvalue.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects-fields.html#cfn-datapipeline-pipeline-pipelineobjects-fields-refvalue"

*Defined in [spec/spec.ts:7009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7009)*





___
<a id="datapipeline.models.field.properties.refvalue.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7010)*





___
<a id="datapipeline.models.field.properties.refvalue.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7011)*





___
<a id="datapipeline.models.field.properties.refvalue.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7012)*





___

___
<a id="datapipeline.models.field.properties.stringvalue"></a>

###  StringValue

** StringValue**:  *`object`* 

*Defined in [spec/spec.ts:7014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7014)*




<a id="datapipeline.models.field.properties.stringvalue.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects-fields.html#cfn-datapipeline-pipeline-pipelineobjects-fields-stringvalue"

*Defined in [spec/spec.ts:7015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7015)*





___
<a id="datapipeline.models.field.properties.stringvalue.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7016)*





___
<a id="datapipeline.models.field.properties.stringvalue.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7017)*





___
<a id="datapipeline.models.field.properties.stringvalue.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7018)*





___

___

___

___
<a id="datapipeline.models.parameterattribute"></a>

###  ParameterAttribute

** ParameterAttribute**:  *`object`* 

*Defined in [spec/spec.ts:7023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7023)*




<a id="datapipeline.models.parameterattribute.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterobjects-attributes.html"

*Defined in [spec/spec.ts:7024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7024)*





___
<a id="datapipeline.models.parameterattribute.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DataPipeline::Pipeline.ParameterAttribute"

*Defined in [spec/spec.ts:7039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7039)*





___
<a id="datapipeline.models.parameterattribute.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7025)*




<a id="datapipeline.models.parameterattribute.properties-1.key-1"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:7026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7026)*




<a id="datapipeline.models.parameterattribute.properties-1.key-1.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterobjects-attributes.html#cfn-datapipeline-pipeline-parameterobjects-attribtues-key"

*Defined in [spec/spec.ts:7027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7027)*





___
<a id="datapipeline.models.parameterattribute.properties-1.key-1.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7028)*





___
<a id="datapipeline.models.parameterattribute.properties-1.key-1.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7029)*





___
<a id="datapipeline.models.parameterattribute.properties-1.key-1.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7030)*





___

___
<a id="datapipeline.models.parameterattribute.properties-1.stringvalue-1"></a>

###  StringValue

** StringValue**:  *`object`* 

*Defined in [spec/spec.ts:7032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7032)*




<a id="datapipeline.models.parameterattribute.properties-1.stringvalue-1.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterobjects-attributes.html#cfn-datapipeline-pipeline-parameterobjects-attribtues-stringvalue"

*Defined in [spec/spec.ts:7033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7033)*





___
<a id="datapipeline.models.parameterattribute.properties-1.stringvalue-1.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7034)*





___
<a id="datapipeline.models.parameterattribute.properties-1.stringvalue-1.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7035)*





___
<a id="datapipeline.models.parameterattribute.properties-1.stringvalue-1.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7036)*





___

___

___

___
<a id="datapipeline.models.parameterobject"></a>

###  ParameterObject

** ParameterObject**:  *`object`* 

*Defined in [spec/spec.ts:7041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7041)*




<a id="datapipeline.models.parameterobject.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterobjects.html"

*Defined in [spec/spec.ts:7042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7042)*





___
<a id="datapipeline.models.parameterobject.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DataPipeline::Pipeline.ParameterObject"

*Defined in [spec/spec.ts:7059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7059)*





___
<a id="datapipeline.models.parameterobject.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7043)*




<a id="datapipeline.models.parameterobject.properties-2.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:7044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7044)*




<a id="datapipeline.models.parameterobject.properties-2.attributes.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterobjects.html#cfn-datapipeline-pipeline-parameterobjects-attributes"

*Defined in [spec/spec.ts:7045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7045)*





___
<a id="datapipeline.models.parameterobject.properties-2.attributes.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7046)*





___
<a id="datapipeline.models.parameterobject.properties-2.attributes.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ParameterAttribute"

*Defined in [spec/spec.ts:7047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7047)*





___
<a id="datapipeline.models.parameterobject.properties-2.attributes.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7048)*





___
<a id="datapipeline.models.parameterobject.properties-2.attributes.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7049)*





___
<a id="datapipeline.models.parameterobject.properties-2.attributes.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7050)*





___

___
<a id="datapipeline.models.parameterobject.properties-2.id"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:7052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7052)*




<a id="datapipeline.models.parameterobject.properties-2.id.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parameterobjects.html#cfn-datapipeline-pipeline-parameterobjects-id"

*Defined in [spec/spec.ts:7053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7053)*





___
<a id="datapipeline.models.parameterobject.properties-2.id.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7054)*





___
<a id="datapipeline.models.parameterobject.properties-2.id.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7055)*





___
<a id="datapipeline.models.parameterobject.properties-2.id.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7056)*





___

___

___

___
<a id="datapipeline.models.parametervalue"></a>

###  ParameterValue

** ParameterValue**:  *`object`* 

*Defined in [spec/spec.ts:7061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7061)*




<a id="datapipeline.models.parametervalue.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parametervalues.html"

*Defined in [spec/spec.ts:7062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7062)*





___
<a id="datapipeline.models.parametervalue.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DataPipeline::Pipeline.ParameterValue"

*Defined in [spec/spec.ts:7077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7077)*





___
<a id="datapipeline.models.parametervalue.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7063)*




<a id="datapipeline.models.parametervalue.properties-3.id-1"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:7064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7064)*




<a id="datapipeline.models.parametervalue.properties-3.id-1.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parametervalues.html#cfn-datapipeline-pipeline-parametervalues-id"

*Defined in [spec/spec.ts:7065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7065)*





___
<a id="datapipeline.models.parametervalue.properties-3.id-1.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7066)*





___
<a id="datapipeline.models.parametervalue.properties-3.id-1.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7067)*





___
<a id="datapipeline.models.parametervalue.properties-3.id-1.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7068)*





___

___
<a id="datapipeline.models.parametervalue.properties-3.stringvalue-2"></a>

###  StringValue

** StringValue**:  *`object`* 

*Defined in [spec/spec.ts:7070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7070)*




<a id="datapipeline.models.parametervalue.properties-3.stringvalue-2.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-parametervalues.html#cfn-datapipeline-pipeline-parametervalues-stringvalue"

*Defined in [spec/spec.ts:7071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7071)*





___
<a id="datapipeline.models.parametervalue.properties-3.stringvalue-2.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7072)*





___
<a id="datapipeline.models.parametervalue.properties-3.stringvalue-2.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7073)*





___
<a id="datapipeline.models.parametervalue.properties-3.stringvalue-2.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7074)*





___

___

___

___
<a id="datapipeline.models.pipelineobject"></a>

###  PipelineObject

** PipelineObject**:  *`object`* 

*Defined in [spec/spec.ts:7079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7079)*




<a id="datapipeline.models.pipelineobject.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects.html"

*Defined in [spec/spec.ts:7080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7080)*





___
<a id="datapipeline.models.pipelineobject.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DataPipeline::Pipeline.PipelineObject"

*Defined in [spec/spec.ts:7103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7103)*





___
<a id="datapipeline.models.pipelineobject.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7081)*




<a id="datapipeline.models.pipelineobject.properties-4.fields"></a>

###  Fields

** Fields**:  *`object`* 

*Defined in [spec/spec.ts:7082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7082)*




<a id="datapipeline.models.pipelineobject.properties-4.fields.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects.html#cfn-datapipeline-pipeline-pipelineobjects-fields"

*Defined in [spec/spec.ts:7083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7083)*





___
<a id="datapipeline.models.pipelineobject.properties-4.fields.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7084)*





___
<a id="datapipeline.models.pipelineobject.properties-4.fields.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Field"

*Defined in [spec/spec.ts:7085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7085)*





___
<a id="datapipeline.models.pipelineobject.properties-4.fields.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7086)*





___
<a id="datapipeline.models.pipelineobject.properties-4.fields.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7087)*





___
<a id="datapipeline.models.pipelineobject.properties-4.fields.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7088)*





___

___
<a id="datapipeline.models.pipelineobject.properties-4.id-2"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:7090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7090)*




<a id="datapipeline.models.pipelineobject.properties-4.id-2.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects.html#cfn-datapipeline-pipeline-pipelineobjects-id"

*Defined in [spec/spec.ts:7091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7091)*





___
<a id="datapipeline.models.pipelineobject.properties-4.id-2.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7092)*





___
<a id="datapipeline.models.pipelineobject.properties-4.id-2.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7093)*





___
<a id="datapipeline.models.pipelineobject.properties-4.id-2.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7094)*





___

___
<a id="datapipeline.models.pipelineobject.properties-4.name-5"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:7096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7096)*




<a id="datapipeline.models.pipelineobject.properties-4.name-5.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelineobjects.html#cfn-datapipeline-pipeline-pipelineobjects-name"

*Defined in [spec/spec.ts:7097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7097)*





___
<a id="datapipeline.models.pipelineobject.properties-4.name-5.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7098)*





___
<a id="datapipeline.models.pipelineobject.properties-4.name-5.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7099)*





___
<a id="datapipeline.models.pipelineobject.properties-4.name-5.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7100)*





___

___

___

___
<a id="datapipeline.models.pipelinetag"></a>

###  PipelineTag

** PipelineTag**:  *`object`* 

*Defined in [spec/spec.ts:7105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7105)*




<a id="datapipeline.models.pipelinetag.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetags.html"

*Defined in [spec/spec.ts:7106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7106)*





___
<a id="datapipeline.models.pipelinetag.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DataPipeline::Pipeline.PipelineTag"

*Defined in [spec/spec.ts:7121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7121)*





___
<a id="datapipeline.models.pipelinetag.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7107)*




<a id="datapipeline.models.pipelinetag.properties-5.key-2"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:7108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7108)*




<a id="datapipeline.models.pipelinetag.properties-5.key-2.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetags.html#cfn-datapipeline-pipeline-pipelinetags-key"

*Defined in [spec/spec.ts:7109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7109)*





___
<a id="datapipeline.models.pipelinetag.properties-5.key-2.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7110)*





___
<a id="datapipeline.models.pipelinetag.properties-5.key-2.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7111)*





___
<a id="datapipeline.models.pipelinetag.properties-5.key-2.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7112)*





___

___
<a id="datapipeline.models.pipelinetag.properties-5.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:7114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7114)*




<a id="datapipeline.models.pipelinetag.properties-5.value.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datapipeline-pipeline-pipelinetags.html#cfn-datapipeline-pipeline-pipelinetags-value"

*Defined in [spec/spec.ts:7115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7115)*





___
<a id="datapipeline.models.pipelinetag.properties-5.value.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7116)*





___
<a id="datapipeline.models.pipelinetag.properties-5.value.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7117)*





___
<a id="datapipeline.models.pipelinetag.properties-5.value.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7118)*





___

___

___

___

___
<a id="datapipeline.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:6940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6940)*




<a id="datapipeline.resources.pipeline"></a>

###  Pipeline

** Pipeline**:  *`object`* 

*Defined in [spec/spec.ts:6941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6941)*




<a id="datapipeline.resources.pipeline.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html"

*Defined in [spec/spec.ts:6942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6942)*





___
<a id="datapipeline.resources.pipeline.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DataPipeline::Pipeline"

*Defined in [spec/spec.ts:6995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6995)*





___
<a id="datapipeline.resources.pipeline.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:6943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6943)*




<a id="datapipeline.resources.pipeline.properties-6.activate"></a>

###  Activate

** Activate**:  *`object`* 

*Defined in [spec/spec.ts:6944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6944)*




<a id="datapipeline.resources.pipeline.properties-6.activate.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-activate"

*Defined in [spec/spec.ts:6945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6945)*





___
<a id="datapipeline.resources.pipeline.properties-6.activate.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:6946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6946)*





___
<a id="datapipeline.resources.pipeline.properties-6.activate.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6947)*





___
<a id="datapipeline.resources.pipeline.properties-6.activate.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6948)*





___

___
<a id="datapipeline.resources.pipeline.properties-6.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:6950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6950)*




<a id="datapipeline.resources.pipeline.properties-6.description.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-description"

*Defined in [spec/spec.ts:6951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6951)*





___
<a id="datapipeline.resources.pipeline.properties-6.description.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6952)*





___
<a id="datapipeline.resources.pipeline.properties-6.description.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6953)*





___
<a id="datapipeline.resources.pipeline.properties-6.description.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6954)*





___

___
<a id="datapipeline.resources.pipeline.properties-6.name-8"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:6956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6956)*




<a id="datapipeline.resources.pipeline.properties-6.name-8.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-name"

*Defined in [spec/spec.ts:6957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6957)*





___
<a id="datapipeline.resources.pipeline.properties-6.name-8.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:6958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6958)*





___
<a id="datapipeline.resources.pipeline.properties-6.name-8.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6959)*





___
<a id="datapipeline.resources.pipeline.properties-6.name-8.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:6960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6960)*





___

___
<a id="datapipeline.resources.pipeline.properties-6.parameterobjects"></a>

###  ParameterObjects

** ParameterObjects**:  *`object`* 

*Defined in [spec/spec.ts:6962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6962)*




<a id="datapipeline.resources.pipeline.properties-6.parameterobjects.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-parameterobjects"

*Defined in [spec/spec.ts:6963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6963)*





___
<a id="datapipeline.resources.pipeline.properties-6.parameterobjects.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6964)*





___
<a id="datapipeline.resources.pipeline.properties-6.parameterobjects.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ParameterObject"

*Defined in [spec/spec.ts:6965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6965)*





___
<a id="datapipeline.resources.pipeline.properties-6.parameterobjects.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6966)*





___
<a id="datapipeline.resources.pipeline.properties-6.parameterobjects.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6967)*





___
<a id="datapipeline.resources.pipeline.properties-6.parameterobjects.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6968)*





___

___
<a id="datapipeline.resources.pipeline.properties-6.parametervalues"></a>

###  ParameterValues

** ParameterValues**:  *`object`* 

*Defined in [spec/spec.ts:6970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6970)*




<a id="datapipeline.resources.pipeline.properties-6.parametervalues.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-parametervalues"

*Defined in [spec/spec.ts:6971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6971)*





___
<a id="datapipeline.resources.pipeline.properties-6.parametervalues.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6972)*





___
<a id="datapipeline.resources.pipeline.properties-6.parametervalues.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ParameterValue"

*Defined in [spec/spec.ts:6973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6973)*





___
<a id="datapipeline.resources.pipeline.properties-6.parametervalues.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6974)*





___
<a id="datapipeline.resources.pipeline.properties-6.parametervalues.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6975)*





___
<a id="datapipeline.resources.pipeline.properties-6.parametervalues.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6976)*





___

___
<a id="datapipeline.resources.pipeline.properties-6.pipelineobjects"></a>

###  PipelineObjects

** PipelineObjects**:  *`object`* 

*Defined in [spec/spec.ts:6978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6978)*




<a id="datapipeline.resources.pipeline.properties-6.pipelineobjects.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-pipelineobjects"

*Defined in [spec/spec.ts:6979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6979)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelineobjects.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6980)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelineobjects.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "PipelineObject"

*Defined in [spec/spec.ts:6981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6981)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelineobjects.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6982)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelineobjects.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6983)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelineobjects.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6984)*





___

___
<a id="datapipeline.resources.pipeline.properties-6.pipelinetags"></a>

###  PipelineTags

** PipelineTags**:  *`object`* 

*Defined in [spec/spec.ts:6986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6986)*




<a id="datapipeline.resources.pipeline.properties-6.pipelinetags.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datapipeline-pipeline.html#cfn-datapipeline-pipeline-pipelinetags"

*Defined in [spec/spec.ts:6987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6987)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelinetags.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:6988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6988)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelinetags.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "PipelineTag"

*Defined in [spec/spec.ts:6989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6989)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelinetags.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:6990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6990)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelinetags.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:6991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6991)*





___
<a id="datapipeline.resources.pipeline.properties-6.pipelinetags.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:6992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L6992)*





___

___

___

___

___

<a id="directoryservice"></a>

## Object literal: DirectoryService


<a id="directoryservice.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:7242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7242)*




<a id="directoryservice.models.vpcsettings"></a>

###  VpcSettings

** VpcSettings**:  *`object`* 

*Defined in [spec/spec.ts:7243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7243)*




<a id="directoryservice.models.vpcsettings.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html"

*Defined in [spec/spec.ts:7244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7244)*





___
<a id="directoryservice.models.vpcsettings.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DirectoryService::SimpleAD.VpcSettings"

*Defined in [spec/spec.ts:7261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7261)*





___
<a id="directoryservice.models.vpcsettings.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7245)*




<a id="directoryservice.models.vpcsettings.properties.subnetids"></a>

###  SubnetIds

** SubnetIds**:  *`object`* 

*Defined in [spec/spec.ts:7246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7246)*




<a id="directoryservice.models.vpcsettings.properties.subnetids.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-subnetids"

*Defined in [spec/spec.ts:7247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7247)*





___
<a id="directoryservice.models.vpcsettings.properties.subnetids.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7248)*





___
<a id="directoryservice.models.vpcsettings.properties.subnetids.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7249)*





___
<a id="directoryservice.models.vpcsettings.properties.subnetids.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7250)*





___
<a id="directoryservice.models.vpcsettings.properties.subnetids.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7251)*





___
<a id="directoryservice.models.vpcsettings.properties.subnetids.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7252)*





___

___
<a id="directoryservice.models.vpcsettings.properties.vpcid"></a>

###  VpcId

** VpcId**:  *`object`* 

*Defined in [spec/spec.ts:7254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7254)*




<a id="directoryservice.models.vpcsettings.properties.vpcid.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-directoryservice-simplead-vpcsettings.html#cfn-directoryservice-simplead-vpcsettings-vpcid"

*Defined in [spec/spec.ts:7255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7255)*





___
<a id="directoryservice.models.vpcsettings.properties.vpcid.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7256)*





___
<a id="directoryservice.models.vpcsettings.properties.vpcid.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7257)*





___
<a id="directoryservice.models.vpcsettings.properties.vpcid.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7258)*





___

___

___

___

___
<a id="directoryservice.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:7126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7126)*




<a id="directoryservice.resources.microsoftad"></a>

###  MicrosoftAD

** MicrosoftAD**:  *`object`* 

*Defined in [spec/spec.ts:7127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7127)*




<a id="directoryservice.resources.microsoftad.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html"

*Defined in [spec/spec.ts:7137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7137)*





___
<a id="directoryservice.resources.microsoftad.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DirectoryService::MicrosoftAD"

*Defined in [spec/spec.ts:7176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7176)*





___
<a id="directoryservice.resources.microsoftad.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:7128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7128)*




<a id="directoryservice.resources.microsoftad.attributes.alias"></a>

###  Alias

** Alias**:  *`object`* 

*Defined in [spec/spec.ts:7129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7129)*




<a id="directoryservice.resources.microsoftad.attributes.alias.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7130)*





___

___
<a id="directoryservice.resources.microsoftad.attributes.dnsipaddresses"></a>

###  DnsIpAddresses

** DnsIpAddresses**:  *`object`* 

*Defined in [spec/spec.ts:7132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7132)*




<a id="directoryservice.resources.microsoftad.attributes.dnsipaddresses.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7133)*





___
<a id="directoryservice.resources.microsoftad.attributes.dnsipaddresses.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7134)*





___

___

___
<a id="directoryservice.resources.microsoftad.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7138)*




<a id="directoryservice.resources.microsoftad.properties-1.createalias"></a>

###  CreateAlias

** CreateAlias**:  *`object`* 

*Defined in [spec/spec.ts:7139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7139)*




<a id="directoryservice.resources.microsoftad.properties-1.createalias.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-createalias"

*Defined in [spec/spec.ts:7140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7140)*





___
<a id="directoryservice.resources.microsoftad.properties-1.createalias.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:7141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7141)*





___
<a id="directoryservice.resources.microsoftad.properties-1.createalias.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7142)*





___
<a id="directoryservice.resources.microsoftad.properties-1.createalias.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7143)*





___

___
<a id="directoryservice.resources.microsoftad.properties-1.enablesso"></a>

###  EnableSso

** EnableSso**:  *`object`* 

*Defined in [spec/spec.ts:7145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7145)*




<a id="directoryservice.resources.microsoftad.properties-1.enablesso.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-enablesso"

*Defined in [spec/spec.ts:7146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7146)*





___
<a id="directoryservice.resources.microsoftad.properties-1.enablesso.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:7147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7147)*





___
<a id="directoryservice.resources.microsoftad.properties-1.enablesso.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7148)*





___
<a id="directoryservice.resources.microsoftad.properties-1.enablesso.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7149)*





___

___
<a id="directoryservice.resources.microsoftad.properties-1.name-2"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:7151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7151)*




<a id="directoryservice.resources.microsoftad.properties-1.name-2.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-name"

*Defined in [spec/spec.ts:7152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7152)*





___
<a id="directoryservice.resources.microsoftad.properties-1.name-2.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7153)*





___
<a id="directoryservice.resources.microsoftad.properties-1.name-2.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7154)*





___
<a id="directoryservice.resources.microsoftad.properties-1.name-2.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7155)*





___

___
<a id="directoryservice.resources.microsoftad.properties-1.password"></a>

###  Password

** Password**:  *`object`* 

*Defined in [spec/spec.ts:7157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7157)*




<a id="directoryservice.resources.microsoftad.properties-1.password.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-password"

*Defined in [spec/spec.ts:7158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7158)*





___
<a id="directoryservice.resources.microsoftad.properties-1.password.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7159)*





___
<a id="directoryservice.resources.microsoftad.properties-1.password.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7160)*





___
<a id="directoryservice.resources.microsoftad.properties-1.password.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7161)*





___

___
<a id="directoryservice.resources.microsoftad.properties-1.shortname"></a>

###  ShortName

** ShortName**:  *`object`* 

*Defined in [spec/spec.ts:7163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7163)*




<a id="directoryservice.resources.microsoftad.properties-1.shortname.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-shortname"

*Defined in [spec/spec.ts:7164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7164)*





___
<a id="directoryservice.resources.microsoftad.properties-1.shortname.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7165)*





___
<a id="directoryservice.resources.microsoftad.properties-1.shortname.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7166)*





___
<a id="directoryservice.resources.microsoftad.properties-1.shortname.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7167)*





___

___
<a id="directoryservice.resources.microsoftad.properties-1.vpcsettings-1"></a>

###  VpcSettings

** VpcSettings**:  *`object`* 

*Defined in [spec/spec.ts:7169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7169)*




<a id="directoryservice.resources.microsoftad.properties-1.vpcsettings-1.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-microsoftad.html#cfn-directoryservice-microsoftad-vpcsettings"

*Defined in [spec/spec.ts:7170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7170)*





___
<a id="directoryservice.resources.microsoftad.properties-1.vpcsettings-1.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7171)*





___
<a id="directoryservice.resources.microsoftad.properties-1.vpcsettings-1.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "VpcSettings"

*Defined in [spec/spec.ts:7172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7172)*





___
<a id="directoryservice.resources.microsoftad.properties-1.vpcsettings-1.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7173)*





___

___

___

___
<a id="directoryservice.resources.simplead"></a>

###  SimpleAD

** SimpleAD**:  *`object`* 

*Defined in [spec/spec.ts:7178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7178)*




<a id="directoryservice.resources.simplead.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html"

*Defined in [spec/spec.ts:7188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7188)*





___
<a id="directoryservice.resources.simplead.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DirectoryService::SimpleAD"

*Defined in [spec/spec.ts:7239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7239)*





___
<a id="directoryservice.resources.simplead.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:7179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7179)*




<a id="directoryservice.resources.simplead.attributes-1.alias-1"></a>

###  Alias

** Alias**:  *`object`* 

*Defined in [spec/spec.ts:7180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7180)*




<a id="directoryservice.resources.simplead.attributes-1.alias-1.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7181)*





___

___
<a id="directoryservice.resources.simplead.attributes-1.dnsipaddresses-1"></a>

###  DnsIpAddresses

** DnsIpAddresses**:  *`object`* 

*Defined in [spec/spec.ts:7183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7183)*




<a id="directoryservice.resources.simplead.attributes-1.dnsipaddresses-1.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7184)*





___
<a id="directoryservice.resources.simplead.attributes-1.dnsipaddresses-1.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7185)*





___

___

___
<a id="directoryservice.resources.simplead.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7189)*




<a id="directoryservice.resources.simplead.properties-2.createalias-1"></a>

###  CreateAlias

** CreateAlias**:  *`object`* 

*Defined in [spec/spec.ts:7190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7190)*




<a id="directoryservice.resources.simplead.properties-2.createalias-1.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-createalias"

*Defined in [spec/spec.ts:7191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7191)*





___
<a id="directoryservice.resources.simplead.properties-2.createalias-1.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:7192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7192)*





___
<a id="directoryservice.resources.simplead.properties-2.createalias-1.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7193)*





___
<a id="directoryservice.resources.simplead.properties-2.createalias-1.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7194)*





___

___
<a id="directoryservice.resources.simplead.properties-2.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:7196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7196)*




<a id="directoryservice.resources.simplead.properties-2.description.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-description"

*Defined in [spec/spec.ts:7197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7197)*





___
<a id="directoryservice.resources.simplead.properties-2.description.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7198)*





___
<a id="directoryservice.resources.simplead.properties-2.description.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7199)*





___
<a id="directoryservice.resources.simplead.properties-2.description.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7200)*





___

___
<a id="directoryservice.resources.simplead.properties-2.enablesso-1"></a>

###  EnableSso

** EnableSso**:  *`object`* 

*Defined in [spec/spec.ts:7202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7202)*




<a id="directoryservice.resources.simplead.properties-2.enablesso-1.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-enablesso"

*Defined in [spec/spec.ts:7203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7203)*





___
<a id="directoryservice.resources.simplead.properties-2.enablesso-1.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:7204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7204)*





___
<a id="directoryservice.resources.simplead.properties-2.enablesso-1.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7205)*





___
<a id="directoryservice.resources.simplead.properties-2.enablesso-1.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7206)*





___

___
<a id="directoryservice.resources.simplead.properties-2.name-4"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:7208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7208)*




<a id="directoryservice.resources.simplead.properties-2.name-4.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-name"

*Defined in [spec/spec.ts:7209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7209)*





___
<a id="directoryservice.resources.simplead.properties-2.name-4.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7210)*





___
<a id="directoryservice.resources.simplead.properties-2.name-4.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7211)*





___
<a id="directoryservice.resources.simplead.properties-2.name-4.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7212)*





___

___
<a id="directoryservice.resources.simplead.properties-2.password-1"></a>

###  Password

** Password**:  *`object`* 

*Defined in [spec/spec.ts:7214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7214)*




<a id="directoryservice.resources.simplead.properties-2.password-1.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-password"

*Defined in [spec/spec.ts:7215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7215)*





___
<a id="directoryservice.resources.simplead.properties-2.password-1.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7216)*





___
<a id="directoryservice.resources.simplead.properties-2.password-1.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7217)*





___
<a id="directoryservice.resources.simplead.properties-2.password-1.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7218)*





___

___
<a id="directoryservice.resources.simplead.properties-2.shortname-1"></a>

###  ShortName

** ShortName**:  *`object`* 

*Defined in [spec/spec.ts:7220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7220)*




<a id="directoryservice.resources.simplead.properties-2.shortname-1.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-shortname"

*Defined in [spec/spec.ts:7221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7221)*





___
<a id="directoryservice.resources.simplead.properties-2.shortname-1.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7222)*





___
<a id="directoryservice.resources.simplead.properties-2.shortname-1.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7223)*





___
<a id="directoryservice.resources.simplead.properties-2.shortname-1.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7224)*





___

___
<a id="directoryservice.resources.simplead.properties-2.size"></a>

###  Size

** Size**:  *`object`* 

*Defined in [spec/spec.ts:7226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7226)*




<a id="directoryservice.resources.simplead.properties-2.size.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-size"

*Defined in [spec/spec.ts:7227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7227)*





___
<a id="directoryservice.resources.simplead.properties-2.size.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7228)*





___
<a id="directoryservice.resources.simplead.properties-2.size.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7229)*





___
<a id="directoryservice.resources.simplead.properties-2.size.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7230)*





___

___
<a id="directoryservice.resources.simplead.properties-2.vpcsettings-2"></a>

###  VpcSettings

** VpcSettings**:  *`object`* 

*Defined in [spec/spec.ts:7232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7232)*




<a id="directoryservice.resources.simplead.properties-2.vpcsettings-2.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-directoryservice-simplead.html#cfn-directoryservice-simplead-vpcsettings"

*Defined in [spec/spec.ts:7233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7233)*





___
<a id="directoryservice.resources.simplead.properties-2.vpcsettings-2.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7234)*





___
<a id="directoryservice.resources.simplead.properties-2.vpcsettings-2.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "VpcSettings"

*Defined in [spec/spec.ts:7235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7235)*





___
<a id="directoryservice.resources.simplead.properties-2.vpcsettings-2.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7236)*





___

___

___

___

___

<a id="dynamodb"></a>

## Object literal: DynamoDB


<a id="dynamodb.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:7346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7346)*




<a id="dynamodb.models.attributedefinition"></a>

###  AttributeDefinition

** AttributeDefinition**:  *`object`* 

*Defined in [spec/spec.ts:7347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7347)*




<a id="dynamodb.models.attributedefinition.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-attributedef.html"

*Defined in [spec/spec.ts:7348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7348)*





___
<a id="dynamodb.models.attributedefinition.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.AttributeDefinition"

*Defined in [spec/spec.ts:7363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7363)*





___
<a id="dynamodb.models.attributedefinition.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7349)*




<a id="dynamodb.models.attributedefinition.properties.attributename"></a>

###  AttributeName

** AttributeName**:  *`object`* 

*Defined in [spec/spec.ts:7350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7350)*




<a id="dynamodb.models.attributedefinition.properties.attributename.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-attributedef.html#cfn-dynamodb-attributedef-attributename"

*Defined in [spec/spec.ts:7351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7351)*





___
<a id="dynamodb.models.attributedefinition.properties.attributename.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7352)*





___
<a id="dynamodb.models.attributedefinition.properties.attributename.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7353)*





___
<a id="dynamodb.models.attributedefinition.properties.attributename.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7354)*





___

___
<a id="dynamodb.models.attributedefinition.properties.attributetype"></a>

###  AttributeType

** AttributeType**:  *`object`* 

*Defined in [spec/spec.ts:7356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7356)*




<a id="dynamodb.models.attributedefinition.properties.attributetype.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-attributedef.html#cfn-dynamodb-attributedef-attributename-attributetype"

*Defined in [spec/spec.ts:7357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7357)*





___
<a id="dynamodb.models.attributedefinition.properties.attributetype.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7358)*





___
<a id="dynamodb.models.attributedefinition.properties.attributetype.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7359)*





___
<a id="dynamodb.models.attributedefinition.properties.attributetype.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7360)*





___

___

___

___
<a id="dynamodb.models.globalsecondaryindex"></a>

###  GlobalSecondaryIndex

** GlobalSecondaryIndex**:  *`object`* 

*Defined in [spec/spec.ts:7365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7365)*




<a id="dynamodb.models.globalsecondaryindex.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-gsi.html"

*Defined in [spec/spec.ts:7366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7366)*





___
<a id="dynamodb.models.globalsecondaryindex.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.GlobalSecondaryIndex"

*Defined in [spec/spec.ts:7395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7395)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7367)*




<a id="dynamodb.models.globalsecondaryindex.properties-1.indexname"></a>

###  IndexName

** IndexName**:  *`object`* 

*Defined in [spec/spec.ts:7368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7368)*




<a id="dynamodb.models.globalsecondaryindex.properties-1.indexname.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-gsi.html#cfn-dynamodb-gsi-indexname"

*Defined in [spec/spec.ts:7369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7369)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.indexname.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7370)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.indexname.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7371)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.indexname.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7372)*





___

___
<a id="dynamodb.models.globalsecondaryindex.properties-1.keyschema"></a>

###  KeySchema

** KeySchema**:  *`object`* 

*Defined in [spec/spec.ts:7374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7374)*




<a id="dynamodb.models.globalsecondaryindex.properties-1.keyschema.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-gsi.html#cfn-dynamodb-gsi-keyschema"

*Defined in [spec/spec.ts:7375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7375)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.keyschema.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7376)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.keyschema.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "KeySchema"

*Defined in [spec/spec.ts:7377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7377)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.keyschema.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7378)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.keyschema.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7379)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.keyschema.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7380)*





___

___
<a id="dynamodb.models.globalsecondaryindex.properties-1.projection"></a>

###  Projection

** Projection**:  *`object`* 

*Defined in [spec/spec.ts:7382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7382)*




<a id="dynamodb.models.globalsecondaryindex.properties-1.projection.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-gsi.html#cfn-dynamodb-gsi-projection"

*Defined in [spec/spec.ts:7383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7383)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.projection.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7384)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.projection.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "Projection"

*Defined in [spec/spec.ts:7385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7385)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.projection.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7386)*





___

___
<a id="dynamodb.models.globalsecondaryindex.properties-1.provisionedthroughput"></a>

###  ProvisionedThroughput

** ProvisionedThroughput**:  *`object`* 

*Defined in [spec/spec.ts:7388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7388)*




<a id="dynamodb.models.globalsecondaryindex.properties-1.provisionedthroughput.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-gsi.html#cfn-dynamodb-gsi-provisionedthroughput"

*Defined in [spec/spec.ts:7389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7389)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.provisionedthroughput.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7390)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.provisionedthroughput.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "ProvisionedThroughput"

*Defined in [spec/spec.ts:7391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7391)*





___
<a id="dynamodb.models.globalsecondaryindex.properties-1.provisionedthroughput.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7392)*





___

___

___

___
<a id="dynamodb.models.keyschema-1"></a>

###  KeySchema

** KeySchema**:  *`object`* 

*Defined in [spec/spec.ts:7397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7397)*




<a id="dynamodb.models.keyschema-1.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-keyschema.html"

*Defined in [spec/spec.ts:7398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7398)*





___
<a id="dynamodb.models.keyschema-1.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.KeySchema"

*Defined in [spec/spec.ts:7413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7413)*





___
<a id="dynamodb.models.keyschema-1.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7399)*




<a id="dynamodb.models.keyschema-1.properties-2.attributename-1"></a>

###  AttributeName

** AttributeName**:  *`object`* 

*Defined in [spec/spec.ts:7400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7400)*




<a id="dynamodb.models.keyschema-1.properties-2.attributename-1.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-keyschema.html#aws-properties-dynamodb-keyschema-attributename"

*Defined in [spec/spec.ts:7401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7401)*





___
<a id="dynamodb.models.keyschema-1.properties-2.attributename-1.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7402)*





___
<a id="dynamodb.models.keyschema-1.properties-2.attributename-1.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7403)*





___
<a id="dynamodb.models.keyschema-1.properties-2.attributename-1.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7404)*





___

___
<a id="dynamodb.models.keyschema-1.properties-2.keytype"></a>

###  KeyType

** KeyType**:  *`object`* 

*Defined in [spec/spec.ts:7406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7406)*




<a id="dynamodb.models.keyschema-1.properties-2.keytype.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-keyschema.html#aws-properties-dynamodb-keyschema-keytype"

*Defined in [spec/spec.ts:7407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7407)*





___
<a id="dynamodb.models.keyschema-1.properties-2.keytype.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7408)*





___
<a id="dynamodb.models.keyschema-1.properties-2.keytype.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7409)*





___
<a id="dynamodb.models.keyschema-1.properties-2.keytype.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7410)*





___

___

___

___
<a id="dynamodb.models.localsecondaryindex"></a>

###  LocalSecondaryIndex

** LocalSecondaryIndex**:  *`object`* 

*Defined in [spec/spec.ts:7415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7415)*




<a id="dynamodb.models.localsecondaryindex.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-lsi.html"

*Defined in [spec/spec.ts:7416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7416)*





___
<a id="dynamodb.models.localsecondaryindex.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.LocalSecondaryIndex"

*Defined in [spec/spec.ts:7439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7439)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7417)*




<a id="dynamodb.models.localsecondaryindex.properties-3.indexname-1"></a>

###  IndexName

** IndexName**:  *`object`* 

*Defined in [spec/spec.ts:7418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7418)*




<a id="dynamodb.models.localsecondaryindex.properties-3.indexname-1.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-lsi.html#cfn-dynamodb-lsi-indexname"

*Defined in [spec/spec.ts:7419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7419)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.indexname-1.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7420)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.indexname-1.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7421)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.indexname-1.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7422)*





___

___
<a id="dynamodb.models.localsecondaryindex.properties-3.keyschema-2"></a>

###  KeySchema

** KeySchema**:  *`object`* 

*Defined in [spec/spec.ts:7424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7424)*




<a id="dynamodb.models.localsecondaryindex.properties-3.keyschema-2.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-lsi.html#cfn-dynamodb-lsi-keyschema"

*Defined in [spec/spec.ts:7425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7425)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.keyschema-2.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7426)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.keyschema-2.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "KeySchema"

*Defined in [spec/spec.ts:7427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7427)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.keyschema-2.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7428)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.keyschema-2.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7429)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.keyschema-2.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7430)*





___

___
<a id="dynamodb.models.localsecondaryindex.properties-3.projection-1"></a>

###  Projection

** Projection**:  *`object`* 

*Defined in [spec/spec.ts:7432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7432)*




<a id="dynamodb.models.localsecondaryindex.properties-3.projection-1.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-lsi.html#cfn-dynamodb-lsi-projection"

*Defined in [spec/spec.ts:7433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7433)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.projection-1.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7434)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.projection-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "Projection"

*Defined in [spec/spec.ts:7435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7435)*





___
<a id="dynamodb.models.localsecondaryindex.properties-3.projection-1.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7436)*





___

___

___

___
<a id="dynamodb.models.projection-2"></a>

###  Projection

** Projection**:  *`object`* 

*Defined in [spec/spec.ts:7441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7441)*




<a id="dynamodb.models.projection-2.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-projectionobject.html"

*Defined in [spec/spec.ts:7442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7442)*





___
<a id="dynamodb.models.projection-2.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.Projection"

*Defined in [spec/spec.ts:7459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7459)*





___
<a id="dynamodb.models.projection-2.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7443)*




<a id="dynamodb.models.projection-2.properties-4.nonkeyattributes"></a>

###  NonKeyAttributes

** NonKeyAttributes**:  *`object`* 

*Defined in [spec/spec.ts:7444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7444)*




<a id="dynamodb.models.projection-2.properties-4.nonkeyattributes.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-projectionobject.html#cfn-dynamodb-projectionobj-nonkeyatt"

*Defined in [spec/spec.ts:7445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7445)*





___
<a id="dynamodb.models.projection-2.properties-4.nonkeyattributes.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7446)*





___
<a id="dynamodb.models.projection-2.properties-4.nonkeyattributes.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7447)*





___
<a id="dynamodb.models.projection-2.properties-4.nonkeyattributes.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7448)*





___
<a id="dynamodb.models.projection-2.properties-4.nonkeyattributes.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7449)*





___
<a id="dynamodb.models.projection-2.properties-4.nonkeyattributes.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7450)*





___

___
<a id="dynamodb.models.projection-2.properties-4.projectiontype"></a>

###  ProjectionType

** ProjectionType**:  *`object`* 

*Defined in [spec/spec.ts:7452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7452)*




<a id="dynamodb.models.projection-2.properties-4.projectiontype.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-projectionobject.html#cfn-dynamodb-projectionobj-projtype"

*Defined in [spec/spec.ts:7453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7453)*





___
<a id="dynamodb.models.projection-2.properties-4.projectiontype.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7454)*





___
<a id="dynamodb.models.projection-2.properties-4.projectiontype.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7455)*





___
<a id="dynamodb.models.projection-2.properties-4.projectiontype.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7456)*





___

___

___

___
<a id="dynamodb.models.provisionedthroughput-1"></a>

###  ProvisionedThroughput

** ProvisionedThroughput**:  *`object`* 

*Defined in [spec/spec.ts:7461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7461)*




<a id="dynamodb.models.provisionedthroughput-1.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html"

*Defined in [spec/spec.ts:7462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7462)*





___
<a id="dynamodb.models.provisionedthroughput-1.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.ProvisionedThroughput"

*Defined in [spec/spec.ts:7477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7477)*





___
<a id="dynamodb.models.provisionedthroughput-1.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7463)*




<a id="dynamodb.models.provisionedthroughput-1.properties-5.readcapacityunits"></a>

###  ReadCapacityUnits

** ReadCapacityUnits**:  *`object`* 

*Defined in [spec/spec.ts:7464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7464)*




<a id="dynamodb.models.provisionedthroughput-1.properties-5.readcapacityunits.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-readcapacityunits"

*Defined in [spec/spec.ts:7465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7465)*





___
<a id="dynamodb.models.provisionedthroughput-1.properties-5.readcapacityunits.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Long"

*Defined in [spec/spec.ts:7466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7466)*





___
<a id="dynamodb.models.provisionedthroughput-1.properties-5.readcapacityunits.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7467)*





___
<a id="dynamodb.models.provisionedthroughput-1.properties-5.readcapacityunits.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7468)*





___

___
<a id="dynamodb.models.provisionedthroughput-1.properties-5.writecapacityunits"></a>

###  WriteCapacityUnits

** WriteCapacityUnits**:  *`object`* 

*Defined in [spec/spec.ts:7470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7470)*




<a id="dynamodb.models.provisionedthroughput-1.properties-5.writecapacityunits.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-provisionedthroughput.html#cfn-dynamodb-provisionedthroughput-writecapacityunits"

*Defined in [spec/spec.ts:7471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7471)*





___
<a id="dynamodb.models.provisionedthroughput-1.properties-5.writecapacityunits.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Long"

*Defined in [spec/spec.ts:7472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7472)*





___
<a id="dynamodb.models.provisionedthroughput-1.properties-5.writecapacityunits.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7473)*





___
<a id="dynamodb.models.provisionedthroughput-1.properties-5.writecapacityunits.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7474)*





___

___

___

___
<a id="dynamodb.models.streamspecification"></a>

###  StreamSpecification

** StreamSpecification**:  *`object`* 

*Defined in [spec/spec.ts:7479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7479)*




<a id="dynamodb.models.streamspecification.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html"

*Defined in [spec/spec.ts:7480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7480)*





___
<a id="dynamodb.models.streamspecification.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.StreamSpecification"

*Defined in [spec/spec.ts:7489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7489)*





___
<a id="dynamodb.models.streamspecification.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7481)*




<a id="dynamodb.models.streamspecification.properties-6.streamviewtype"></a>

###  StreamViewType

** StreamViewType**:  *`object`* 

*Defined in [spec/spec.ts:7482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7482)*




<a id="dynamodb.models.streamspecification.properties-6.streamviewtype.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-streamspecification.html#cfn-dynamodb-streamspecification-streamviewtype"

*Defined in [spec/spec.ts:7483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7483)*





___
<a id="dynamodb.models.streamspecification.properties-6.streamviewtype.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7484)*





___
<a id="dynamodb.models.streamspecification.properties-6.streamviewtype.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7485)*





___
<a id="dynamodb.models.streamspecification.properties-6.streamviewtype.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7486)*





___

___

___

___
<a id="dynamodb.models.timetolivespecification"></a>

###  TimeToLiveSpecification

** TimeToLiveSpecification**:  *`object`* 

*Defined in [spec/spec.ts:7491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7491)*




<a id="dynamodb.models.timetolivespecification.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html"

*Defined in [spec/spec.ts:7492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7492)*





___
<a id="dynamodb.models.timetolivespecification.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table.TimeToLiveSpecification"

*Defined in [spec/spec.ts:7507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7507)*





___
<a id="dynamodb.models.timetolivespecification.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7493)*




<a id="dynamodb.models.timetolivespecification.properties-7.attributename-2"></a>

###  AttributeName

** AttributeName**:  *`object`* 

*Defined in [spec/spec.ts:7494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7494)*




<a id="dynamodb.models.timetolivespecification.properties-7.attributename-2.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-attributename"

*Defined in [spec/spec.ts:7495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7495)*





___
<a id="dynamodb.models.timetolivespecification.properties-7.attributename-2.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7496)*





___
<a id="dynamodb.models.timetolivespecification.properties-7.attributename-2.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7497)*





___
<a id="dynamodb.models.timetolivespecification.properties-7.attributename-2.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7498)*





___

___
<a id="dynamodb.models.timetolivespecification.properties-7.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:7500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7500)*




<a id="dynamodb.models.timetolivespecification.properties-7.enabled.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-timetolivespecification.html#cfn-dynamodb-timetolivespecification-enabled"

*Defined in [spec/spec.ts:7501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7501)*





___
<a id="dynamodb.models.timetolivespecification.properties-7.enabled.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:7502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7502)*





___
<a id="dynamodb.models.timetolivespecification.properties-7.enabled.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7503)*





___
<a id="dynamodb.models.timetolivespecification.properties-7.enabled.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7504)*





___

___

___

___

___
<a id="dynamodb.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:7266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7266)*




<a id="dynamodb.resources.table"></a>

###  Table

** Table**:  *`object`* 

*Defined in [spec/spec.ts:7267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7267)*




<a id="dynamodb.resources.table.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html"

*Defined in [spec/spec.ts:7276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7276)*





___
<a id="dynamodb.resources.table.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::DynamoDB::Table"

*Defined in [spec/spec.ts:7343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7343)*





___
<a id="dynamodb.resources.table.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:7268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7268)*




<a id="dynamodb.resources.table.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:7269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7269)*




<a id="dynamodb.resources.table.attributes.arn.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7270)*





___

___
<a id="dynamodb.resources.table.attributes.streamarn"></a>

###  StreamArn

** StreamArn**:  *`object`* 

*Defined in [spec/spec.ts:7272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7272)*




<a id="dynamodb.resources.table.attributes.streamarn.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7273)*





___

___

___
<a id="dynamodb.resources.table.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:7277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7277)*




<a id="dynamodb.resources.table.properties-8.attributedefinitions"></a>

###  AttributeDefinitions

** AttributeDefinitions**:  *`object`* 

*Defined in [spec/spec.ts:7278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7278)*




<a id="dynamodb.resources.table.properties-8.attributedefinitions.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-attributedef"

*Defined in [spec/spec.ts:7279](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7279)*





___
<a id="dynamodb.resources.table.properties-8.attributedefinitions.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7280](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7280)*





___
<a id="dynamodb.resources.table.properties-8.attributedefinitions.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "AttributeDefinition"

*Defined in [spec/spec.ts:7281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7281)*





___
<a id="dynamodb.resources.table.properties-8.attributedefinitions.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7282)*





___
<a id="dynamodb.resources.table.properties-8.attributedefinitions.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7283)*





___
<a id="dynamodb.resources.table.properties-8.attributedefinitions.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7284)*





___

___
<a id="dynamodb.resources.table.properties-8.globalsecondaryindexes"></a>

###  GlobalSecondaryIndexes

** GlobalSecondaryIndexes**:  *`object`* 

*Defined in [spec/spec.ts:7286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7286)*




<a id="dynamodb.resources.table.properties-8.globalsecondaryindexes.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-gsi"

*Defined in [spec/spec.ts:7287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7287)*





___
<a id="dynamodb.resources.table.properties-8.globalsecondaryindexes.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7288)*





___
<a id="dynamodb.resources.table.properties-8.globalsecondaryindexes.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "GlobalSecondaryIndex"

*Defined in [spec/spec.ts:7289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7289)*





___
<a id="dynamodb.resources.table.properties-8.globalsecondaryindexes.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7290)*





___
<a id="dynamodb.resources.table.properties-8.globalsecondaryindexes.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7291)*





___
<a id="dynamodb.resources.table.properties-8.globalsecondaryindexes.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7292)*





___

___
<a id="dynamodb.resources.table.properties-8.keyschema-3"></a>

###  KeySchema

** KeySchema**:  *`object`* 

*Defined in [spec/spec.ts:7294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7294)*




<a id="dynamodb.resources.table.properties-8.keyschema-3.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-keyschema"

*Defined in [spec/spec.ts:7295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7295)*





___
<a id="dynamodb.resources.table.properties-8.keyschema-3.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7296)*





___
<a id="dynamodb.resources.table.properties-8.keyschema-3.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "KeySchema"

*Defined in [spec/spec.ts:7297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7297)*





___
<a id="dynamodb.resources.table.properties-8.keyschema-3.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7298)*





___
<a id="dynamodb.resources.table.properties-8.keyschema-3.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7299)*





___
<a id="dynamodb.resources.table.properties-8.keyschema-3.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7300)*





___

___
<a id="dynamodb.resources.table.properties-8.localsecondaryindexes"></a>

###  LocalSecondaryIndexes

** LocalSecondaryIndexes**:  *`object`* 

*Defined in [spec/spec.ts:7302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7302)*




<a id="dynamodb.resources.table.properties-8.localsecondaryindexes.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-lsi"

*Defined in [spec/spec.ts:7303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7303)*





___
<a id="dynamodb.resources.table.properties-8.localsecondaryindexes.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7304)*





___
<a id="dynamodb.resources.table.properties-8.localsecondaryindexes.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "LocalSecondaryIndex"

*Defined in [spec/spec.ts:7305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7305)*





___
<a id="dynamodb.resources.table.properties-8.localsecondaryindexes.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7306)*





___
<a id="dynamodb.resources.table.properties-8.localsecondaryindexes.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7307)*





___
<a id="dynamodb.resources.table.properties-8.localsecondaryindexes.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7308)*





___

___
<a id="dynamodb.resources.table.properties-8.provisionedthroughput-2"></a>

###  ProvisionedThroughput

** ProvisionedThroughput**:  *`object`* 

*Defined in [spec/spec.ts:7310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7310)*




<a id="dynamodb.resources.table.properties-8.provisionedthroughput-2.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-provisionedthroughput"

*Defined in [spec/spec.ts:7311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7311)*





___
<a id="dynamodb.resources.table.properties-8.provisionedthroughput-2.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7312)*





___
<a id="dynamodb.resources.table.properties-8.provisionedthroughput-2.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "ProvisionedThroughput"

*Defined in [spec/spec.ts:7313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7313)*





___
<a id="dynamodb.resources.table.properties-8.provisionedthroughput-2.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7314)*





___

___
<a id="dynamodb.resources.table.properties-8.streamspecification-1"></a>

###  StreamSpecification

** StreamSpecification**:  *`object`* 

*Defined in [spec/spec.ts:7316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7316)*




<a id="dynamodb.resources.table.properties-8.streamspecification-1.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-streamspecification"

*Defined in [spec/spec.ts:7317](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7317)*





___
<a id="dynamodb.resources.table.properties-8.streamspecification-1.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7318)*





___
<a id="dynamodb.resources.table.properties-8.streamspecification-1.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "StreamSpecification"

*Defined in [spec/spec.ts:7319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7319)*





___
<a id="dynamodb.resources.table.properties-8.streamspecification-1.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7320)*





___

___
<a id="dynamodb.resources.table.properties-8.tablename"></a>

###  TableName

** TableName**:  *`object`* 

*Defined in [spec/spec.ts:7322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7322)*




<a id="dynamodb.resources.table.properties-8.tablename.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tablename"

*Defined in [spec/spec.ts:7323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7323)*





___
<a id="dynamodb.resources.table.properties-8.tablename.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:7324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7324)*





___
<a id="dynamodb.resources.table.properties-8.tablename.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7325)*





___
<a id="dynamodb.resources.table.properties-8.tablename.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:7326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7326)*





___

___
<a id="dynamodb.resources.table.properties-8.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:7328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7328)*




<a id="dynamodb.resources.table.properties-8.tags.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-tags"

*Defined in [spec/spec.ts:7329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7329)*





___
<a id="dynamodb.resources.table.properties-8.tags.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:7330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7330)*





___
<a id="dynamodb.resources.table.properties-8.tags.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:7331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7331)*





___
<a id="dynamodb.resources.table.properties-8.tags.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7332)*





___
<a id="dynamodb.resources.table.properties-8.tags.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:7333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7333)*





___
<a id="dynamodb.resources.table.properties-8.tags.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7334)*





___

___
<a id="dynamodb.resources.table.properties-8.timetolivespecification-1"></a>

###  TimeToLiveSpecification

** TimeToLiveSpecification**:  *`object`* 

*Defined in [spec/spec.ts:7336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7336)*




<a id="dynamodb.resources.table.properties-8.timetolivespecification-1.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#cfn-dynamodb-table-timetolivespecification"

*Defined in [spec/spec.ts:7337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7337)*





___
<a id="dynamodb.resources.table.properties-8.timetolivespecification-1.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:7338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7338)*





___
<a id="dynamodb.resources.table.properties-8.timetolivespecification-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "TimeToLiveSpecification"

*Defined in [spec/spec.ts:7339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7339)*





___
<a id="dynamodb.resources.table.properties-8.timetolivespecification-1.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:7340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L7340)*





___

___

___

___

___

<a id="efs"></a>

## Object literal: EFS


<a id="efs.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:10721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10721)*




<a id="efs.models.elasticfilesystemtag"></a>

###  ElasticFileSystemTag

** ElasticFileSystemTag**:  *`object`* 

*Defined in [spec/spec.ts:10722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10722)*




<a id="efs.models.elasticfilesystemtag.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemtags.html"

*Defined in [spec/spec.ts:10723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10723)*





___
<a id="efs.models.elasticfilesystemtag.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EFS::FileSystem.ElasticFileSystemTag"

*Defined in [spec/spec.ts:10738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10738)*





___
<a id="efs.models.elasticfilesystemtag.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:10724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10724)*




<a id="efs.models.elasticfilesystemtag.properties.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:10725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10725)*




<a id="efs.models.elasticfilesystemtag.properties.key.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemtags.html#cfn-efs-filesystem-filesystemtags-key"

*Defined in [spec/spec.ts:10726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10726)*





___
<a id="efs.models.elasticfilesystemtag.properties.key.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10727)*





___
<a id="efs.models.elasticfilesystemtag.properties.key.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10728)*





___
<a id="efs.models.elasticfilesystemtag.properties.key.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10729)*





___

___
<a id="efs.models.elasticfilesystemtag.properties.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:10731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10731)*




<a id="efs.models.elasticfilesystemtag.properties.value.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-filesystem-filesystemtags.html#cfn-efs-filesystem-filesystemtags-value"

*Defined in [spec/spec.ts:10732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10732)*





___
<a id="efs.models.elasticfilesystemtag.properties.value.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10733)*





___
<a id="efs.models.elasticfilesystemtag.properties.value.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10734)*





___
<a id="efs.models.elasticfilesystemtag.properties.value.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10735)*





___

___

___

___

___
<a id="efs.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:10655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10655)*




<a id="efs.resources.filesystem"></a>

###  FileSystem

** FileSystem**:  *`object`* 

*Defined in [spec/spec.ts:10656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10656)*




<a id="efs.resources.filesystem.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html"

*Defined in [spec/spec.ts:10657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10657)*





___
<a id="efs.resources.filesystem.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EFS::FileSystem"

*Defined in [spec/spec.ts:10686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10686)*





___
<a id="efs.resources.filesystem.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:10658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10658)*




<a id="efs.resources.filesystem.properties-1.encrypted"></a>

###  Encrypted

** Encrypted**:  *`object`* 

*Defined in [spec/spec.ts:10659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10659)*




<a id="efs.resources.filesystem.properties-1.encrypted.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-encrypted"

*Defined in [spec/spec.ts:10660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10660)*





___
<a id="efs.resources.filesystem.properties-1.encrypted.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:10661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10661)*





___
<a id="efs.resources.filesystem.properties-1.encrypted.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10662)*





___
<a id="efs.resources.filesystem.properties-1.encrypted.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10663)*





___

___
<a id="efs.resources.filesystem.properties-1.filesystemtags"></a>

###  FileSystemTags

** FileSystemTags**:  *`object`* 

*Defined in [spec/spec.ts:10665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10665)*




<a id="efs.resources.filesystem.properties-1.filesystemtags.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-filesystemtags"

*Defined in [spec/spec.ts:10666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10666)*





___
<a id="efs.resources.filesystem.properties-1.filesystemtags.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10667)*





___
<a id="efs.resources.filesystem.properties-1.filesystemtags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ElasticFileSystemTag"

*Defined in [spec/spec.ts:10668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10668)*





___
<a id="efs.resources.filesystem.properties-1.filesystemtags.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10669)*





___
<a id="efs.resources.filesystem.properties-1.filesystemtags.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10670)*





___
<a id="efs.resources.filesystem.properties-1.filesystemtags.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10671)*





___

___
<a id="efs.resources.filesystem.properties-1.kmskeyid"></a>

###  KmsKeyId

** KmsKeyId**:  *`object`* 

*Defined in [spec/spec.ts:10673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10673)*




<a id="efs.resources.filesystem.properties-1.kmskeyid.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-kmskeyid"

*Defined in [spec/spec.ts:10674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10674)*





___
<a id="efs.resources.filesystem.properties-1.kmskeyid.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10675)*





___
<a id="efs.resources.filesystem.properties-1.kmskeyid.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10676)*





___
<a id="efs.resources.filesystem.properties-1.kmskeyid.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10677)*





___

___
<a id="efs.resources.filesystem.properties-1.performancemode"></a>

###  PerformanceMode

** PerformanceMode**:  *`object`* 

*Defined in [spec/spec.ts:10679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10679)*




<a id="efs.resources.filesystem.properties-1.performancemode.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-filesystem.html#cfn-efs-filesystem-performancemode"

*Defined in [spec/spec.ts:10680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10680)*





___
<a id="efs.resources.filesystem.properties-1.performancemode.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10681)*





___
<a id="efs.resources.filesystem.properties-1.performancemode.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10682)*





___
<a id="efs.resources.filesystem.properties-1.performancemode.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10683)*





___

___

___

___
<a id="efs.resources.mounttarget"></a>

###  MountTarget

** MountTarget**:  *`object`* 

*Defined in [spec/spec.ts:10688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10688)*




<a id="efs.resources.mounttarget.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html"

*Defined in [spec/spec.ts:10689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10689)*





___
<a id="efs.resources.mounttarget.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EFS::MountTarget"

*Defined in [spec/spec.ts:10718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10718)*





___
<a id="efs.resources.mounttarget.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:10690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10690)*




<a id="efs.resources.mounttarget.properties-2.filesystemid"></a>

###  FileSystemId

** FileSystemId**:  *`object`* 

*Defined in [spec/spec.ts:10691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10691)*




<a id="efs.resources.mounttarget.properties-2.filesystemid.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-filesystemid"

*Defined in [spec/spec.ts:10692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10692)*





___
<a id="efs.resources.mounttarget.properties-2.filesystemid.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10693)*





___
<a id="efs.resources.mounttarget.properties-2.filesystemid.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10694)*





___
<a id="efs.resources.mounttarget.properties-2.filesystemid.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10695)*





___

___
<a id="efs.resources.mounttarget.properties-2.ipaddress"></a>

###  IpAddress

** IpAddress**:  *`object`* 

*Defined in [spec/spec.ts:10697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10697)*




<a id="efs.resources.mounttarget.properties-2.ipaddress.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-ipaddress"

*Defined in [spec/spec.ts:10698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10698)*





___
<a id="efs.resources.mounttarget.properties-2.ipaddress.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10699)*





___
<a id="efs.resources.mounttarget.properties-2.ipaddress.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10700)*





___
<a id="efs.resources.mounttarget.properties-2.ipaddress.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10701)*





___

___
<a id="efs.resources.mounttarget.properties-2.securitygroups"></a>

###  SecurityGroups

** SecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:10703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10703)*




<a id="efs.resources.mounttarget.properties-2.securitygroups.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-securitygroups"

*Defined in [spec/spec.ts:10704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10704)*





___
<a id="efs.resources.mounttarget.properties-2.securitygroups.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10705)*





___
<a id="efs.resources.mounttarget.properties-2.securitygroups.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10706)*





___
<a id="efs.resources.mounttarget.properties-2.securitygroups.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10707)*





___
<a id="efs.resources.mounttarget.properties-2.securitygroups.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10708)*





___
<a id="efs.resources.mounttarget.properties-2.securitygroups.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10709)*





___

___
<a id="efs.resources.mounttarget.properties-2.subnetid"></a>

###  SubnetId

** SubnetId**:  *`object`* 

*Defined in [spec/spec.ts:10711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10711)*




<a id="efs.resources.mounttarget.properties-2.subnetid.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-efs-mounttarget.html#cfn-efs-mounttarget-subnetid"

*Defined in [spec/spec.ts:10712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10712)*





___
<a id="efs.resources.mounttarget.properties-2.subnetid.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10713)*





___
<a id="efs.resources.mounttarget.properties-2.subnetid.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10714)*





___
<a id="efs.resources.mounttarget.properties-2.subnetid.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10715)*





___

___

___

___

___

<a id="emr"></a>

## Object literal: EMR


<a id="emr.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:11032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11032)*




<a id="emr.models.application"></a>

###  Application

** Application**:  *`object`* 

*Defined in [spec/spec.ts:11033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11033)*




<a id="emr.models.application.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-application.html"

*Defined in [spec/spec.ts:11034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11034)*





___
<a id="emr.models.application.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster.Application"

*Defined in [spec/spec.ts:11065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11065)*





___
<a id="emr.models.application.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11035)*




<a id="emr.models.application.properties.additionalinfo"></a>

###  AdditionalInfo

** AdditionalInfo**:  *`object`* 

*Defined in [spec/spec.ts:11036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11036)*




<a id="emr.models.application.properties.additionalinfo.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-application.html#cfn-elasticmapreduce-cluster-application-additionalinfo"

*Defined in [spec/spec.ts:11037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11037)*





___
<a id="emr.models.application.properties.additionalinfo.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11038)*





___
<a id="emr.models.application.properties.additionalinfo.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11039)*





___
<a id="emr.models.application.properties.additionalinfo.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11040)*





___
<a id="emr.models.application.properties.additionalinfo.type"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:11041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11041)*





___
<a id="emr.models.application.properties.additionalinfo.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11042)*





___

___
<a id="emr.models.application.properties.args"></a>

###  Args

** Args**:  *`object`* 

*Defined in [spec/spec.ts:11044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11044)*




<a id="emr.models.application.properties.args.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-application.html#cfn-elasticmapreduce-cluster-application-args"

*Defined in [spec/spec.ts:11045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11045)*





___
<a id="emr.models.application.properties.args.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11046)*





___
<a id="emr.models.application.properties.args.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11047)*





___
<a id="emr.models.application.properties.args.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11048)*





___
<a id="emr.models.application.properties.args.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11049)*





___
<a id="emr.models.application.properties.args.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11050)*





___

___
<a id="emr.models.application.properties.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:11052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11052)*




<a id="emr.models.application.properties.name-1.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-application.html#cfn-elasticmapreduce-cluster-application-name"

*Defined in [spec/spec.ts:11053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11053)*





___
<a id="emr.models.application.properties.name-1.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11054)*





___
<a id="emr.models.application.properties.name-1.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11055)*





___
<a id="emr.models.application.properties.name-1.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11056)*





___

___
<a id="emr.models.application.properties.version"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:11058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11058)*




<a id="emr.models.application.properties.version.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-application.html#cfn-elasticmapreduce-cluster-application-version"

*Defined in [spec/spec.ts:11059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11059)*





___
<a id="emr.models.application.properties.version.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11060)*





___
<a id="emr.models.application.properties.version.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11061)*





___
<a id="emr.models.application.properties.version.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11062)*





___

___

___

___
<a id="emr.models.autoscalingpolicy"></a>

###  AutoScalingPolicy

** AutoScalingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:11067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11067)*




<a id="emr.models.autoscalingpolicy.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-autoscalingpolicy.html"

*Defined in [spec/spec.ts:11068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11068)*





___
<a id="emr.models.autoscalingpolicy.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.AutoScalingPolicy"

*Defined in [spec/spec.ts:11085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11085)*





___
<a id="emr.models.autoscalingpolicy.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11069)*




<a id="emr.models.autoscalingpolicy.properties-1.constraints"></a>

###  Constraints

** Constraints**:  *`object`* 

*Defined in [spec/spec.ts:11070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11070)*




<a id="emr.models.autoscalingpolicy.properties-1.constraints.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-autoscalingpolicy.html#cfn-elasticmapreduce-instancegroupconfig-autoscalingpolicy-constraints"

*Defined in [spec/spec.ts:11071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11071)*





___
<a id="emr.models.autoscalingpolicy.properties-1.constraints.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11072)*





___
<a id="emr.models.autoscalingpolicy.properties-1.constraints.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "ScalingConstraints"

*Defined in [spec/spec.ts:11073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11073)*





___
<a id="emr.models.autoscalingpolicy.properties-1.constraints.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11074)*





___

___
<a id="emr.models.autoscalingpolicy.properties-1.rules"></a>

###  Rules

** Rules**:  *`object`* 

*Defined in [spec/spec.ts:11076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11076)*




<a id="emr.models.autoscalingpolicy.properties-1.rules.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-autoscalingpolicy.html#cfn-elasticmapreduce-instancegroupconfig-autoscalingpolicy-rules"

*Defined in [spec/spec.ts:11077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11077)*





___
<a id="emr.models.autoscalingpolicy.properties-1.rules.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11078)*





___
<a id="emr.models.autoscalingpolicy.properties-1.rules.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ScalingRule"

*Defined in [spec/spec.ts:11079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11079)*





___
<a id="emr.models.autoscalingpolicy.properties-1.rules.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11080)*





___
<a id="emr.models.autoscalingpolicy.properties-1.rules.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11081)*





___
<a id="emr.models.autoscalingpolicy.properties-1.rules.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11082)*





___

___

___

___
<a id="emr.models.bootstrapactionconfig"></a>

###  BootstrapActionConfig

** BootstrapActionConfig**:  *`object`* 

*Defined in [spec/spec.ts:11087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11087)*




<a id="emr.models.bootstrapactionconfig.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-bootstrapactionconfig.html"

*Defined in [spec/spec.ts:11088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11088)*





___
<a id="emr.models.bootstrapactionconfig.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster.BootstrapActionConfig"

*Defined in [spec/spec.ts:11103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11103)*





___
<a id="emr.models.bootstrapactionconfig.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11089)*




<a id="emr.models.bootstrapactionconfig.properties-2.name-4"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:11090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11090)*




<a id="emr.models.bootstrapactionconfig.properties-2.name-4.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-bootstrapactionconfig.html#cfn-elasticmapreduce-cluster-bootstrapactionconfig-name"

*Defined in [spec/spec.ts:11091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11091)*





___
<a id="emr.models.bootstrapactionconfig.properties-2.name-4.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11092)*





___
<a id="emr.models.bootstrapactionconfig.properties-2.name-4.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11093)*





___
<a id="emr.models.bootstrapactionconfig.properties-2.name-4.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11094)*





___

___
<a id="emr.models.bootstrapactionconfig.properties-2.scriptbootstrapaction"></a>

###  ScriptBootstrapAction

** ScriptBootstrapAction**:  *`object`* 

*Defined in [spec/spec.ts:11096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11096)*




<a id="emr.models.bootstrapactionconfig.properties-2.scriptbootstrapaction.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-bootstrapactionconfig.html#cfn-elasticmapreduce-cluster-bootstrapactionconfig-scriptbootstrapaction"

*Defined in [spec/spec.ts:11097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11097)*





___
<a id="emr.models.bootstrapactionconfig.properties-2.scriptbootstrapaction.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11098)*





___
<a id="emr.models.bootstrapactionconfig.properties-2.scriptbootstrapaction.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "ScriptBootstrapActionConfig"

*Defined in [spec/spec.ts:11099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11099)*





___
<a id="emr.models.bootstrapactionconfig.properties-2.scriptbootstrapaction.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11100)*





___

___

___

___
<a id="emr.models.cloudwatchalarmdefinition"></a>

###  CloudWatchAlarmDefinition

** CloudWatchAlarmDefinition**:  *`object`* 

*Defined in [spec/spec.ts:11105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11105)*




<a id="emr.models.cloudwatchalarmdefinition.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html"

*Defined in [spec/spec.ts:11106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11106)*





___
<a id="emr.models.cloudwatchalarmdefinition.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.CloudWatchAlarmDefinition"

*Defined in [spec/spec.ts:11165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11165)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11107)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.comparisonoperator"></a>

###  ComparisonOperator

** ComparisonOperator**:  *`object`* 

*Defined in [spec/spec.ts:11108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11108)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.comparisonoperator.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-comparisonoperator"

*Defined in [spec/spec.ts:11109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11109)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.comparisonoperator.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11110)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.comparisonoperator.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11111)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.comparisonoperator.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11112)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.dimensions"></a>

###  Dimensions

** Dimensions**:  *`object`* 

*Defined in [spec/spec.ts:11114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11114)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.dimensions.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-dimensions"

*Defined in [spec/spec.ts:11115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11115)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.dimensions.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11116)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.dimensions.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MetricDimension"

*Defined in [spec/spec.ts:11117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11117)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.dimensions.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11118)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.dimensions.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11119)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.dimensions.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11120)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.evaluationperiods"></a>

###  EvaluationPeriods

** EvaluationPeriods**:  *`object`* 

*Defined in [spec/spec.ts:11122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11122)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.evaluationperiods.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-evaluationperiods"

*Defined in [spec/spec.ts:11123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11123)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.evaluationperiods.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11124)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.evaluationperiods.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11125)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.evaluationperiods.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11126)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:11128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11128)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.metricname.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-metricname"

*Defined in [spec/spec.ts:11129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11129)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.metricname.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11130)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.metricname.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11131)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.metricname.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11132)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.namespace"></a>

###  Namespace

** Namespace**:  *`object`* 

*Defined in [spec/spec.ts:11134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11134)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.namespace.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-namespace"

*Defined in [spec/spec.ts:11135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11135)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.namespace.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11136)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.namespace.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11137)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.namespace.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11138)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.period"></a>

###  Period

** Period**:  *`object`* 

*Defined in [spec/spec.ts:11140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11140)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.period.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-period"

*Defined in [spec/spec.ts:11141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11141)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.period.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11142)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.period.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11143)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.period.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11144)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.statistic"></a>

###  Statistic

** Statistic**:  *`object`* 

*Defined in [spec/spec.ts:11146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11146)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.statistic.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-statistic"

*Defined in [spec/spec.ts:11147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11147)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.statistic.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11148)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.statistic.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11149)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.statistic.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11150)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.threshold"></a>

###  Threshold

** Threshold**:  *`object`* 

*Defined in [spec/spec.ts:11152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11152)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.threshold.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-threshold"

*Defined in [spec/spec.ts:11153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11153)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.threshold.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:11154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11154)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.threshold.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11155)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.threshold.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11156)*





___

___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.unit"></a>

###  Unit

** Unit**:  *`object`* 

*Defined in [spec/spec.ts:11158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11158)*




<a id="emr.models.cloudwatchalarmdefinition.properties-3.unit.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition.html#cfn-elasticmapreduce-instancegroupconfig-cloudwatchalarmdefinition-unit"

*Defined in [spec/spec.ts:11159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11159)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.unit.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11160)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.unit.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11161)*





___
<a id="emr.models.cloudwatchalarmdefinition.properties-3.unit.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11162)*





___

___

___

___
<a id="emr.models.configuration"></a>

###  Configuration

** Configuration**:  *`object`* 

*Defined in [spec/spec.ts:11167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11167)*




<a id="emr.models.configuration.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-configuration.html"

*Defined in [spec/spec.ts:11168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11168)*





___
<a id="emr.models.configuration.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.Configuration"

*Defined in [spec/spec.ts:11193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11193)*





___
<a id="emr.models.configuration.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11169)*




<a id="emr.models.configuration.properties-4.classification"></a>

###  Classification

** Classification**:  *`object`* 

*Defined in [spec/spec.ts:11170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11170)*




<a id="emr.models.configuration.properties-4.classification.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-configuration.html#cfn-emr-cluster-configuration-classification"

*Defined in [spec/spec.ts:11171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11171)*





___
<a id="emr.models.configuration.properties-4.classification.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11172)*





___
<a id="emr.models.configuration.properties-4.classification.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11173)*





___
<a id="emr.models.configuration.properties-4.classification.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11174)*





___

___
<a id="emr.models.configuration.properties-4.configurationproperties"></a>

###  ConfigurationProperties

** ConfigurationProperties**:  *`object`* 

*Defined in [spec/spec.ts:11176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11176)*




<a id="emr.models.configuration.properties-4.configurationproperties.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-configuration.html#cfn-emr-cluster-configuration-configurationproperties"

*Defined in [spec/spec.ts:11177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11177)*





___
<a id="emr.models.configuration.properties-4.configurationproperties.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11178)*





___
<a id="emr.models.configuration.properties-4.configurationproperties.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11179)*





___
<a id="emr.models.configuration.properties-4.configurationproperties.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11180)*





___
<a id="emr.models.configuration.properties-4.configurationproperties.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:11181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11181)*





___
<a id="emr.models.configuration.properties-4.configurationproperties.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11182)*





___

___
<a id="emr.models.configuration.properties-4.configurations"></a>

###  Configurations

** Configurations**:  *`object`* 

*Defined in [spec/spec.ts:11184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11184)*




<a id="emr.models.configuration.properties-4.configurations.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-configuration.html#cfn-emr-cluster-configuration-configurations"

*Defined in [spec/spec.ts:11185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11185)*





___
<a id="emr.models.configuration.properties-4.configurations.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11186)*





___
<a id="emr.models.configuration.properties-4.configurations.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Configuration"

*Defined in [spec/spec.ts:11187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11187)*





___
<a id="emr.models.configuration.properties-4.configurations.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11188)*





___
<a id="emr.models.configuration.properties-4.configurations.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11189)*





___
<a id="emr.models.configuration.properties-4.configurations.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11190)*





___

___

___

___
<a id="emr.models.ebsblockdeviceconfig"></a>

###  EbsBlockDeviceConfig

** EbsBlockDeviceConfig**:  *`object`* 

*Defined in [spec/spec.ts:11195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11195)*




<a id="emr.models.ebsblockdeviceconfig.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration-ebsblockdeviceconfig.html"

*Defined in [spec/spec.ts:11196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11196)*





___
<a id="emr.models.ebsblockdeviceconfig.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.EbsBlockDeviceConfig"

*Defined in [spec/spec.ts:11211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11211)*





___
<a id="emr.models.ebsblockdeviceconfig.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11197)*




<a id="emr.models.ebsblockdeviceconfig.properties-5.volumespecification"></a>

###  VolumeSpecification

** VolumeSpecification**:  *`object`* 

*Defined in [spec/spec.ts:11198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11198)*




<a id="emr.models.ebsblockdeviceconfig.properties-5.volumespecification.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration-ebsblockdeviceconfig.html#cfn-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification"

*Defined in [spec/spec.ts:11199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11199)*





___
<a id="emr.models.ebsblockdeviceconfig.properties-5.volumespecification.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11200)*





___
<a id="emr.models.ebsblockdeviceconfig.properties-5.volumespecification.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "VolumeSpecification"

*Defined in [spec/spec.ts:11201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11201)*





___
<a id="emr.models.ebsblockdeviceconfig.properties-5.volumespecification.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11202)*





___

___
<a id="emr.models.ebsblockdeviceconfig.properties-5.volumesperinstance"></a>

###  VolumesPerInstance

** VolumesPerInstance**:  *`object`* 

*Defined in [spec/spec.ts:11204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11204)*




<a id="emr.models.ebsblockdeviceconfig.properties-5.volumesperinstance.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration-ebsblockdeviceconfig.html#cfn-emr-ebsconfiguration-ebsblockdeviceconfig-volumesperinstance"

*Defined in [spec/spec.ts:11205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11205)*





___
<a id="emr.models.ebsblockdeviceconfig.properties-5.volumesperinstance.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11206)*





___
<a id="emr.models.ebsblockdeviceconfig.properties-5.volumesperinstance.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11207)*





___
<a id="emr.models.ebsblockdeviceconfig.properties-5.volumesperinstance.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11208)*





___

___

___

___
<a id="emr.models.ebsconfiguration"></a>

###  EbsConfiguration

** EbsConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:11213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11213)*




<a id="emr.models.ebsconfiguration.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html"

*Defined in [spec/spec.ts:11214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11214)*





___
<a id="emr.models.ebsconfiguration.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.EbsConfiguration"

*Defined in [spec/spec.ts:11231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11231)*





___
<a id="emr.models.ebsconfiguration.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11215)*




<a id="emr.models.ebsconfiguration.properties-6.ebsblockdeviceconfigs"></a>

###  EbsBlockDeviceConfigs

** EbsBlockDeviceConfigs**:  *`object`* 

*Defined in [spec/spec.ts:11216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11216)*




<a id="emr.models.ebsconfiguration.properties-6.ebsblockdeviceconfigs.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsblockdeviceconfigs"

*Defined in [spec/spec.ts:11217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11217)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsblockdeviceconfigs.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11218)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsblockdeviceconfigs.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "EbsBlockDeviceConfig"

*Defined in [spec/spec.ts:11219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11219)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsblockdeviceconfigs.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11220)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsblockdeviceconfigs.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11221)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsblockdeviceconfigs.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11222)*





___

___
<a id="emr.models.ebsconfiguration.properties-6.ebsoptimized"></a>

###  EbsOptimized

** EbsOptimized**:  *`object`* 

*Defined in [spec/spec.ts:11224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11224)*




<a id="emr.models.ebsconfiguration.properties-6.ebsoptimized.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration.html#cfn-emr-ebsconfiguration-ebsoptimized"

*Defined in [spec/spec.ts:11225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11225)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsoptimized.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:11226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11226)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsoptimized.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11227)*





___
<a id="emr.models.ebsconfiguration.properties-6.ebsoptimized.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11228)*





___

___

___

___
<a id="emr.models.hadoopjarstepconfig"></a>

###  HadoopJarStepConfig

** HadoopJarStepConfig**:  *`object`* 

*Defined in [spec/spec.ts:11677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11677)*




<a id="emr.models.hadoopjarstepconfig.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html"

*Defined in [spec/spec.ts:11678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11678)*





___
<a id="emr.models.hadoopjarstepconfig.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Step.HadoopJarStepConfig"

*Defined in [spec/spec.ts:11709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11709)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11679)*




<a id="emr.models.hadoopjarstepconfig.properties-7.args-1"></a>

###  Args

** Args**:  *`object`* 

*Defined in [spec/spec.ts:11680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11680)*




<a id="emr.models.hadoopjarstepconfig.properties-7.args-1.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-args"

*Defined in [spec/spec.ts:11681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11681)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.args-1.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11682)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.args-1.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11683)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.args-1.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11684)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.args-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11685)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.args-1.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11686)*





___

___
<a id="emr.models.hadoopjarstepconfig.properties-7.jar"></a>

###  Jar

** Jar**:  *`object`* 

*Defined in [spec/spec.ts:11688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11688)*




<a id="emr.models.hadoopjarstepconfig.properties-7.jar.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-jar"

*Defined in [spec/spec.ts:11689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11689)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.jar.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11690)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.jar.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11691)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.jar.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11692)*





___

___
<a id="emr.models.hadoopjarstepconfig.properties-7.mainclass"></a>

###  MainClass

** MainClass**:  *`object`* 

*Defined in [spec/spec.ts:11694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11694)*




<a id="emr.models.hadoopjarstepconfig.properties-7.mainclass.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-mainclass"

*Defined in [spec/spec.ts:11695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11695)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.mainclass.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11696)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.mainclass.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11697)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.mainclass.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11698)*





___

___
<a id="emr.models.hadoopjarstepconfig.properties-7.stepproperties"></a>

###  StepProperties

** StepProperties**:  *`object`* 

*Defined in [spec/spec.ts:11700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11700)*




<a id="emr.models.hadoopjarstepconfig.properties-7.stepproperties.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-hadoopjarstepconfig.html#cfn-elasticmapreduce-step-hadoopjarstepconfig-stepproperties"

*Defined in [spec/spec.ts:11701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11701)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.stepproperties.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11702)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.stepproperties.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "KeyValue"

*Defined in [spec/spec.ts:11703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11703)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.stepproperties.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11704)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.stepproperties.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11705)*





___
<a id="emr.models.hadoopjarstepconfig.properties-7.stepproperties.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11706)*





___

___

___

___
<a id="emr.models.instancefleetconfig"></a>

###  InstanceFleetConfig

** InstanceFleetConfig**:  *`object`* 

*Defined in [spec/spec.ts:11233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11233)*




<a id="emr.models.instancefleetconfig.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html"

*Defined in [spec/spec.ts:11234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11234)*





___
<a id="emr.models.instancefleetconfig.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster.InstanceFleetConfig"

*Defined in [spec/spec.ts:11269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11269)*





___
<a id="emr.models.instancefleetconfig.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11235)*




<a id="emr.models.instancefleetconfig.properties-8.instancetypeconfigs"></a>

###  InstanceTypeConfigs

** InstanceTypeConfigs**:  *`object`* 

*Defined in [spec/spec.ts:11236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11236)*




<a id="emr.models.instancefleetconfig.properties-8.instancetypeconfigs.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-instancetypeconfigs"

*Defined in [spec/spec.ts:11237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11237)*





___
<a id="emr.models.instancefleetconfig.properties-8.instancetypeconfigs.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11238)*





___
<a id="emr.models.instancefleetconfig.properties-8.instancetypeconfigs.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "InstanceTypeConfig"

*Defined in [spec/spec.ts:11239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11239)*





___
<a id="emr.models.instancefleetconfig.properties-8.instancetypeconfigs.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11240)*





___
<a id="emr.models.instancefleetconfig.properties-8.instancetypeconfigs.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11241)*





___
<a id="emr.models.instancefleetconfig.properties-8.instancetypeconfigs.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11242)*





___

___
<a id="emr.models.instancefleetconfig.properties-8.launchspecifications"></a>

###  LaunchSpecifications

** LaunchSpecifications**:  *`object`* 

*Defined in [spec/spec.ts:11244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11244)*




<a id="emr.models.instancefleetconfig.properties-8.launchspecifications.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-launchspecifications"

*Defined in [spec/spec.ts:11245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11245)*





___
<a id="emr.models.instancefleetconfig.properties-8.launchspecifications.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11246)*





___
<a id="emr.models.instancefleetconfig.properties-8.launchspecifications.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "InstanceFleetProvisioningSpecifications"

*Defined in [spec/spec.ts:11247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11247)*





___
<a id="emr.models.instancefleetconfig.properties-8.launchspecifications.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11248)*





___

___
<a id="emr.models.instancefleetconfig.properties-8.name-11"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:11250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11250)*




<a id="emr.models.instancefleetconfig.properties-8.name-11.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-name"

*Defined in [spec/spec.ts:11251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11251)*





___
<a id="emr.models.instancefleetconfig.properties-8.name-11.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11252)*





___
<a id="emr.models.instancefleetconfig.properties-8.name-11.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11253)*





___
<a id="emr.models.instancefleetconfig.properties-8.name-11.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11254)*





___

___
<a id="emr.models.instancefleetconfig.properties-8.targetondemandcapacity"></a>

###  TargetOnDemandCapacity

** TargetOnDemandCapacity**:  *`object`* 

*Defined in [spec/spec.ts:11256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11256)*




<a id="emr.models.instancefleetconfig.properties-8.targetondemandcapacity.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetondemandcapacity"

*Defined in [spec/spec.ts:11257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11257)*





___
<a id="emr.models.instancefleetconfig.properties-8.targetondemandcapacity.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11258)*





___
<a id="emr.models.instancefleetconfig.properties-8.targetondemandcapacity.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11259)*





___
<a id="emr.models.instancefleetconfig.properties-8.targetondemandcapacity.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11260)*





___

___
<a id="emr.models.instancefleetconfig.properties-8.targetspotcapacity"></a>

###  TargetSpotCapacity

** TargetSpotCapacity**:  *`object`* 

*Defined in [spec/spec.ts:11262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11262)*




<a id="emr.models.instancefleetconfig.properties-8.targetspotcapacity.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancefleetconfig.html#cfn-elasticmapreduce-cluster-instancefleetconfig-targetspotcapacity"

*Defined in [spec/spec.ts:11263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11263)*





___
<a id="emr.models.instancefleetconfig.properties-8.targetspotcapacity.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11264)*





___
<a id="emr.models.instancefleetconfig.properties-8.targetspotcapacity.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11265)*





___
<a id="emr.models.instancefleetconfig.properties-8.targetspotcapacity.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11266)*





___

___

___

___
<a id="emr.models.instancefleetprovisioningspecifications"></a>

###  InstanceFleetProvisioningSpecifications

** InstanceFleetProvisioningSpecifications**:  *`object`* 

*Defined in [spec/spec.ts:11271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11271)*




<a id="emr.models.instancefleetprovisioningspecifications.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancefleetprovisioningspecifications.html"

*Defined in [spec/spec.ts:11272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11272)*





___
<a id="emr.models.instancefleetprovisioningspecifications.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceFleetConfig.InstanceFleetProvisioningSpecifications"

*Defined in [spec/spec.ts:11281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11281)*





___
<a id="emr.models.instancefleetprovisioningspecifications.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11273)*




<a id="emr.models.instancefleetprovisioningspecifications.properties-9.spotspecification"></a>

###  SpotSpecification

** SpotSpecification**:  *`object`* 

*Defined in [spec/spec.ts:11274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11274)*




<a id="emr.models.instancefleetprovisioningspecifications.properties-9.spotspecification.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancefleetprovisioningspecifications.html#cfn-elasticmapreduce-instancefleetconfig-instancefleetprovisioningspecifications-spotspecification"

*Defined in [spec/spec.ts:11275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11275)*





___
<a id="emr.models.instancefleetprovisioningspecifications.properties-9.spotspecification.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11276)*





___
<a id="emr.models.instancefleetprovisioningspecifications.properties-9.spotspecification.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "SpotProvisioningSpecification"

*Defined in [spec/spec.ts:11277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11277)*





___
<a id="emr.models.instancefleetprovisioningspecifications.properties-9.spotspecification.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11278)*





___

___

___

___
<a id="emr.models.instancegroupconfig"></a>

###  InstanceGroupConfig

** InstanceGroupConfig**:  *`object`* 

*Defined in [spec/spec.ts:11283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11283)*




<a id="emr.models.instancegroupconfig.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html"

*Defined in [spec/spec.ts:11284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11284)*





___
<a id="emr.models.instancegroupconfig.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster.InstanceGroupConfig"

*Defined in [spec/spec.ts:11337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11337)*





___
<a id="emr.models.instancegroupconfig.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11285)*




<a id="emr.models.instancegroupconfig.properties-10.autoscalingpolicy-1"></a>

###  AutoScalingPolicy

** AutoScalingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:11286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11286)*




<a id="emr.models.instancegroupconfig.properties-10.autoscalingpolicy-1.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-autoscalingpolicy"

*Defined in [spec/spec.ts:11287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11287)*





___
<a id="emr.models.instancegroupconfig.properties-10.autoscalingpolicy-1.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11288)*





___
<a id="emr.models.instancegroupconfig.properties-10.autoscalingpolicy-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "AutoScalingPolicy"

*Defined in [spec/spec.ts:11289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11289)*





___
<a id="emr.models.instancegroupconfig.properties-10.autoscalingpolicy-1.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11290)*





___

___
<a id="emr.models.instancegroupconfig.properties-10.bidprice"></a>

###  BidPrice

** BidPrice**:  *`object`* 

*Defined in [spec/spec.ts:11292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11292)*




<a id="emr.models.instancegroupconfig.properties-10.bidprice.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-bidprice"

*Defined in [spec/spec.ts:11293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11293)*





___
<a id="emr.models.instancegroupconfig.properties-10.bidprice.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11294)*





___
<a id="emr.models.instancegroupconfig.properties-10.bidprice.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11295)*





___
<a id="emr.models.instancegroupconfig.properties-10.bidprice.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11296)*





___

___
<a id="emr.models.instancegroupconfig.properties-10.configurations-1"></a>

###  Configurations

** Configurations**:  *`object`* 

*Defined in [spec/spec.ts:11298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11298)*




<a id="emr.models.instancegroupconfig.properties-10.configurations-1.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-configurations"

*Defined in [spec/spec.ts:11299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11299)*





___
<a id="emr.models.instancegroupconfig.properties-10.configurations-1.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11300)*





___
<a id="emr.models.instancegroupconfig.properties-10.configurations-1.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Configuration"

*Defined in [spec/spec.ts:11301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11301)*





___
<a id="emr.models.instancegroupconfig.properties-10.configurations-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11302)*





___
<a id="emr.models.instancegroupconfig.properties-10.configurations-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11303)*





___
<a id="emr.models.instancegroupconfig.properties-10.configurations-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11304)*





___

___
<a id="emr.models.instancegroupconfig.properties-10.ebsconfiguration-1"></a>

###  EbsConfiguration

** EbsConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:11306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11306)*




<a id="emr.models.instancegroupconfig.properties-10.ebsconfiguration-1.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-ebsconfiguration"

*Defined in [spec/spec.ts:11307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11307)*





___
<a id="emr.models.instancegroupconfig.properties-10.ebsconfiguration-1.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11308)*





___
<a id="emr.models.instancegroupconfig.properties-10.ebsconfiguration-1.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "EbsConfiguration"

*Defined in [spec/spec.ts:11309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11309)*





___
<a id="emr.models.instancegroupconfig.properties-10.ebsconfiguration-1.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11310)*





___

___
<a id="emr.models.instancegroupconfig.properties-10.instancecount"></a>

###  InstanceCount

** InstanceCount**:  *`object`* 

*Defined in [spec/spec.ts:11312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11312)*




<a id="emr.models.instancegroupconfig.properties-10.instancecount.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancecount"

*Defined in [spec/spec.ts:11313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11313)*





___
<a id="emr.models.instancegroupconfig.properties-10.instancecount.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11314)*





___
<a id="emr.models.instancegroupconfig.properties-10.instancecount.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11315)*





___
<a id="emr.models.instancegroupconfig.properties-10.instancecount.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11316)*





___

___
<a id="emr.models.instancegroupconfig.properties-10.instancetype"></a>

###  InstanceType

** InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:11318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11318)*




<a id="emr.models.instancegroupconfig.properties-10.instancetype.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-instancetype"

*Defined in [spec/spec.ts:11319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11319)*





___
<a id="emr.models.instancegroupconfig.properties-10.instancetype.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11320)*





___
<a id="emr.models.instancegroupconfig.properties-10.instancetype.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11321)*





___
<a id="emr.models.instancegroupconfig.properties-10.instancetype.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11322)*





___

___
<a id="emr.models.instancegroupconfig.properties-10.market"></a>

###  Market

** Market**:  *`object`* 

*Defined in [spec/spec.ts:11324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11324)*




<a id="emr.models.instancegroupconfig.properties-10.market.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-market"

*Defined in [spec/spec.ts:11325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11325)*





___
<a id="emr.models.instancegroupconfig.properties-10.market.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11326)*





___
<a id="emr.models.instancegroupconfig.properties-10.market.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11327)*





___
<a id="emr.models.instancegroupconfig.properties-10.market.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11328)*





___

___
<a id="emr.models.instancegroupconfig.properties-10.name-14"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:11330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11330)*




<a id="emr.models.instancegroupconfig.properties-10.name-14.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-instancegroupconfig.html#cfn-elasticmapreduce-cluster-instancegroupconfig-name"

*Defined in [spec/spec.ts:11331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11331)*





___
<a id="emr.models.instancegroupconfig.properties-10.name-14.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11332)*





___
<a id="emr.models.instancegroupconfig.properties-10.name-14.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11333)*





___
<a id="emr.models.instancegroupconfig.properties-10.name-14.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11334)*





___

___

___

___
<a id="emr.models.instancetypeconfig"></a>

###  InstanceTypeConfig

** InstanceTypeConfig**:  *`object`* 

*Defined in [spec/spec.ts:11339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11339)*




<a id="emr.models.instancetypeconfig.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancetypeconfig.html"

*Defined in [spec/spec.ts:11340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11340)*





___
<a id="emr.models.instancetypeconfig.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceFleetConfig.InstanceTypeConfig"

*Defined in [spec/spec.ts:11381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11381)*





___
<a id="emr.models.instancetypeconfig.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11341)*




<a id="emr.models.instancetypeconfig.properties-11.bidprice-1"></a>

###  BidPrice

** BidPrice**:  *`object`* 

*Defined in [spec/spec.ts:11342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11342)*




<a id="emr.models.instancetypeconfig.properties-11.bidprice-1.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancetypeconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancetypeconfig-bidprice"

*Defined in [spec/spec.ts:11343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11343)*





___
<a id="emr.models.instancetypeconfig.properties-11.bidprice-1.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11344)*





___
<a id="emr.models.instancetypeconfig.properties-11.bidprice-1.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11345)*





___
<a id="emr.models.instancetypeconfig.properties-11.bidprice-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11346)*





___

___
<a id="emr.models.instancetypeconfig.properties-11.bidpriceaspercentageofondemandprice"></a>

###  BidPriceAsPercentageOfOnDemandPrice

** BidPriceAsPercentageOfOnDemandPrice**:  *`object`* 

*Defined in [spec/spec.ts:11348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11348)*




<a id="emr.models.instancetypeconfig.properties-11.bidpriceaspercentageofondemandprice.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancetypeconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancetypeconfig-bidpriceaspercentageofondemandprice"

*Defined in [spec/spec.ts:11349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11349)*





___
<a id="emr.models.instancetypeconfig.properties-11.bidpriceaspercentageofondemandprice.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:11350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11350)*





___
<a id="emr.models.instancetypeconfig.properties-11.bidpriceaspercentageofondemandprice.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11351)*





___
<a id="emr.models.instancetypeconfig.properties-11.bidpriceaspercentageofondemandprice.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11352)*





___

___
<a id="emr.models.instancetypeconfig.properties-11.configurations-2"></a>

###  Configurations

** Configurations**:  *`object`* 

*Defined in [spec/spec.ts:11354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11354)*




<a id="emr.models.instancetypeconfig.properties-11.configurations-2.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancetypeconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancetypeconfig-configurations"

*Defined in [spec/spec.ts:11355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11355)*





___
<a id="emr.models.instancetypeconfig.properties-11.configurations-2.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11356)*





___
<a id="emr.models.instancetypeconfig.properties-11.configurations-2.itemtype-7"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Configuration"

*Defined in [spec/spec.ts:11357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11357)*





___
<a id="emr.models.instancetypeconfig.properties-11.configurations-2.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11358)*





___
<a id="emr.models.instancetypeconfig.properties-11.configurations-2.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11359)*





___
<a id="emr.models.instancetypeconfig.properties-11.configurations-2.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11360)*





___

___
<a id="emr.models.instancetypeconfig.properties-11.ebsconfiguration-2"></a>

###  EbsConfiguration

** EbsConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:11362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11362)*




<a id="emr.models.instancetypeconfig.properties-11.ebsconfiguration-2.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancetypeconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancetypeconfig-ebsconfiguration"

*Defined in [spec/spec.ts:11363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11363)*





___
<a id="emr.models.instancetypeconfig.properties-11.ebsconfiguration-2.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11364)*





___
<a id="emr.models.instancetypeconfig.properties-11.ebsconfiguration-2.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "EbsConfiguration"

*Defined in [spec/spec.ts:11365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11365)*





___
<a id="emr.models.instancetypeconfig.properties-11.ebsconfiguration-2.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11366)*





___

___
<a id="emr.models.instancetypeconfig.properties-11.instancetype-1"></a>

###  InstanceType

** InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:11368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11368)*




<a id="emr.models.instancetypeconfig.properties-11.instancetype-1.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancetypeconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancetypeconfig-instancetype"

*Defined in [spec/spec.ts:11369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11369)*





___
<a id="emr.models.instancetypeconfig.properties-11.instancetype-1.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11370)*





___
<a id="emr.models.instancetypeconfig.properties-11.instancetype-1.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11371)*





___
<a id="emr.models.instancetypeconfig.properties-11.instancetype-1.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11372)*





___

___
<a id="emr.models.instancetypeconfig.properties-11.weightedcapacity"></a>

###  WeightedCapacity

** WeightedCapacity**:  *`object`* 

*Defined in [spec/spec.ts:11374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11374)*




<a id="emr.models.instancetypeconfig.properties-11.weightedcapacity.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-instancetypeconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancetypeconfig-weightedcapacity"

*Defined in [spec/spec.ts:11375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11375)*





___
<a id="emr.models.instancetypeconfig.properties-11.weightedcapacity.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11376)*





___
<a id="emr.models.instancetypeconfig.properties-11.weightedcapacity.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11377)*





___
<a id="emr.models.instancetypeconfig.properties-11.weightedcapacity.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11378)*





___

___

___

___
<a id="emr.models.jobflowinstancesconfig"></a>

###  JobFlowInstancesConfig

** JobFlowInstancesConfig**:  *`object`* 

*Defined in [spec/spec.ts:11383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11383)*




<a id="emr.models.jobflowinstancesconfig.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html"

*Defined in [spec/spec.ts:11384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11384)*





___
<a id="emr.models.jobflowinstancesconfig.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster.JobFlowInstancesConfig"

*Defined in [spec/spec.ts:11475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11475)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11385)*




<a id="emr.models.jobflowinstancesconfig.properties-12.additionalmastersecuritygroups"></a>

###  AdditionalMasterSecurityGroups

** AdditionalMasterSecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:11386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11386)*




<a id="emr.models.jobflowinstancesconfig.properties-12.additionalmastersecuritygroups.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-additionalmastersecuritygroups"

*Defined in [spec/spec.ts:11387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11387)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalmastersecuritygroups.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11388)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalmastersecuritygroups.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11389)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalmastersecuritygroups.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11390)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalmastersecuritygroups.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11391)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalmastersecuritygroups.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11392)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalslavesecuritygroups"></a>

###  AdditionalSlaveSecurityGroups

** AdditionalSlaveSecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:11394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11394)*




<a id="emr.models.jobflowinstancesconfig.properties-12.additionalslavesecuritygroups.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-additionalslavesecuritygroups"

*Defined in [spec/spec.ts:11395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11395)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalslavesecuritygroups.duplicatesallowed-13"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11396)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalslavesecuritygroups.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11397)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalslavesecuritygroups.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11398)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalslavesecuritygroups.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11399)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.additionalslavesecuritygroups.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11400)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancefleet"></a>

###  CoreInstanceFleet

** CoreInstanceFleet**:  *`object`* 

*Defined in [spec/spec.ts:11402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11402)*




<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancefleet.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-coreinstancefleet"

*Defined in [spec/spec.ts:11403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11403)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancefleet.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11404)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancefleet.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "InstanceFleetConfig"

*Defined in [spec/spec.ts:11405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11405)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancefleet.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11406)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancegroup"></a>

###  CoreInstanceGroup

** CoreInstanceGroup**:  *`object`* 

*Defined in [spec/spec.ts:11408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11408)*




<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancegroup.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-coreinstancegroup"

*Defined in [spec/spec.ts:11409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11409)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancegroup.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11410)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancegroup.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "InstanceGroupConfig"

*Defined in [spec/spec.ts:11411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11411)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.coreinstancegroup.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11412)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2keyname"></a>

###  Ec2KeyName

** Ec2KeyName**:  *`object`* 

*Defined in [spec/spec.ts:11414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11414)*




<a id="emr.models.jobflowinstancesconfig.properties-12.ec2keyname.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2keyname"

*Defined in [spec/spec.ts:11415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11415)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2keyname.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11416)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2keyname.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11417)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2keyname.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11418)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2subnetid"></a>

###  Ec2SubnetId

** Ec2SubnetId**:  *`object`* 

*Defined in [spec/spec.ts:11420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11420)*




<a id="emr.models.jobflowinstancesconfig.properties-12.ec2subnetid.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-ec2subnetid"

*Defined in [spec/spec.ts:11421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11421)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2subnetid.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11422)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2subnetid.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11423)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.ec2subnetid.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11424)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedmastersecuritygroup"></a>

###  EmrManagedMasterSecurityGroup

** EmrManagedMasterSecurityGroup**:  *`object`* 

*Defined in [spec/spec.ts:11426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11426)*




<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedmastersecuritygroup.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedmastersecuritygroup"

*Defined in [spec/spec.ts:11427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11427)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedmastersecuritygroup.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11428)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedmastersecuritygroup.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11429)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedmastersecuritygroup.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11430)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedslavesecuritygroup"></a>

###  EmrManagedSlaveSecurityGroup

** EmrManagedSlaveSecurityGroup**:  *`object`* 

*Defined in [spec/spec.ts:11432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11432)*




<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedslavesecuritygroup.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-emrmanagedslavesecuritygroup"

*Defined in [spec/spec.ts:11433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11433)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedslavesecuritygroup.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11434)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedslavesecuritygroup.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11435)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.emrmanagedslavesecuritygroup.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11436)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.hadoopversion"></a>

###  HadoopVersion

** HadoopVersion**:  *`object`* 

*Defined in [spec/spec.ts:11438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11438)*




<a id="emr.models.jobflowinstancesconfig.properties-12.hadoopversion.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-hadoopversion"

*Defined in [spec/spec.ts:11439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11439)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.hadoopversion.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11440)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.hadoopversion.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11441)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.hadoopversion.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11442)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancefleet"></a>

###  MasterInstanceFleet

** MasterInstanceFleet**:  *`object`* 

*Defined in [spec/spec.ts:11444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11444)*




<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancefleet.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-masterinstancefleet"

*Defined in [spec/spec.ts:11445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11445)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancefleet.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11446)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancefleet.type-24"></a>

###  Type

**●  Type**:  *`string`*  = "InstanceFleetConfig"

*Defined in [spec/spec.ts:11447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11447)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancefleet.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11448)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancegroup"></a>

###  MasterInstanceGroup

** MasterInstanceGroup**:  *`object`* 

*Defined in [spec/spec.ts:11450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11450)*




<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancegroup.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-masterinstancegroup"

*Defined in [spec/spec.ts:11451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11451)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancegroup.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11452)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancegroup.type-25"></a>

###  Type

**●  Type**:  *`string`*  = "InstanceGroupConfig"

*Defined in [spec/spec.ts:11453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11453)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.masterinstancegroup.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11454)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.placement"></a>

###  Placement

** Placement**:  *`object`* 

*Defined in [spec/spec.ts:11456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11456)*




<a id="emr.models.jobflowinstancesconfig.properties-12.placement.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-placement"

*Defined in [spec/spec.ts:11457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11457)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.placement.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11458)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.placement.type-26"></a>

###  Type

**●  Type**:  *`string`*  = "PlacementType"

*Defined in [spec/spec.ts:11459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11459)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.placement.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11460)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.serviceaccesssecuritygroup"></a>

###  ServiceAccessSecurityGroup

** ServiceAccessSecurityGroup**:  *`object`* 

*Defined in [spec/spec.ts:11462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11462)*




<a id="emr.models.jobflowinstancesconfig.properties-12.serviceaccesssecuritygroup.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-serviceaccesssecuritygroup"

*Defined in [spec/spec.ts:11463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11463)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.serviceaccesssecuritygroup.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11464)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.serviceaccesssecuritygroup.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11465)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.serviceaccesssecuritygroup.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11466)*





___

___
<a id="emr.models.jobflowinstancesconfig.properties-12.terminationprotected"></a>

###  TerminationProtected

** TerminationProtected**:  *`object`* 

*Defined in [spec/spec.ts:11468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11468)*




<a id="emr.models.jobflowinstancesconfig.properties-12.terminationprotected.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-jobflowinstancesconfig.html#cfn-elasticmapreduce-cluster-jobflowinstancesconfig-terminationprotected"

*Defined in [spec/spec.ts:11469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11469)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.terminationprotected.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:11470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11470)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.terminationprotected.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11471)*





___
<a id="emr.models.jobflowinstancesconfig.properties-12.terminationprotected.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11472)*





___

___

___

___
<a id="emr.models.keyvalue"></a>

###  KeyValue

** KeyValue**:  *`object`* 

*Defined in [spec/spec.ts:11711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11711)*




<a id="emr.models.keyvalue.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-keyvalue.html"

*Defined in [spec/spec.ts:11712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11712)*





___
<a id="emr.models.keyvalue.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Step.KeyValue"

*Defined in [spec/spec.ts:11727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11727)*





___
<a id="emr.models.keyvalue.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11713)*




<a id="emr.models.keyvalue.properties-13.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:11714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11714)*




<a id="emr.models.keyvalue.properties-13.key.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-keyvalue.html#cfn-elasticmapreduce-step-keyvalue-key"

*Defined in [spec/spec.ts:11715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11715)*





___
<a id="emr.models.keyvalue.properties-13.key.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11716)*





___
<a id="emr.models.keyvalue.properties-13.key.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11717)*





___
<a id="emr.models.keyvalue.properties-13.key.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11718)*





___

___
<a id="emr.models.keyvalue.properties-13.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:11720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11720)*




<a id="emr.models.keyvalue.properties-13.value.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-step-keyvalue.html#cfn-elasticmapreduce-step-keyvalue-value"

*Defined in [spec/spec.ts:11721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11721)*





___
<a id="emr.models.keyvalue.properties-13.value.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11722)*





___
<a id="emr.models.keyvalue.properties-13.value.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11723)*





___
<a id="emr.models.keyvalue.properties-13.value.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11724)*





___

___

___

___
<a id="emr.models.metricdimension"></a>

###  MetricDimension

** MetricDimension**:  *`object`* 

*Defined in [spec/spec.ts:11477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11477)*




<a id="emr.models.metricdimension.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-metricdimension.html"

*Defined in [spec/spec.ts:11478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11478)*





___
<a id="emr.models.metricdimension.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.MetricDimension"

*Defined in [spec/spec.ts:11493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11493)*





___
<a id="emr.models.metricdimension.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11479)*




<a id="emr.models.metricdimension.properties-14.key-1"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:11480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11480)*




<a id="emr.models.metricdimension.properties-14.key-1.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-metricdimension.html#cfn-elasticmapreduce-instancegroupconfig-metricdimension-key"

*Defined in [spec/spec.ts:11481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11481)*





___
<a id="emr.models.metricdimension.properties-14.key-1.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11482)*





___
<a id="emr.models.metricdimension.properties-14.key-1.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11483)*





___
<a id="emr.models.metricdimension.properties-14.key-1.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11484)*





___

___
<a id="emr.models.metricdimension.properties-14.value-1"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:11486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11486)*




<a id="emr.models.metricdimension.properties-14.value-1.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-metricdimension.html#cfn-elasticmapreduce-instancegroupconfig-metricdimension-value"

*Defined in [spec/spec.ts:11487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11487)*





___
<a id="emr.models.metricdimension.properties-14.value-1.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11488)*





___
<a id="emr.models.metricdimension.properties-14.value-1.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11489)*





___
<a id="emr.models.metricdimension.properties-14.value-1.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11490)*





___

___

___

___
<a id="emr.models.placementtype"></a>

###  PlacementType

** PlacementType**:  *`object`* 

*Defined in [spec/spec.ts:11495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11495)*




<a id="emr.models.placementtype.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html"

*Defined in [spec/spec.ts:11496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11496)*





___
<a id="emr.models.placementtype.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster.PlacementType"

*Defined in [spec/spec.ts:11505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11505)*





___
<a id="emr.models.placementtype.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11497)*




<a id="emr.models.placementtype.properties-15.availabilityzone"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:11498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11498)*




<a id="emr.models.placementtype.properties-15.availabilityzone.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-placementtype.html#cfn-elasticmapreduce-cluster-placementtype-availabilityzone"

*Defined in [spec/spec.ts:11499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11499)*





___
<a id="emr.models.placementtype.properties-15.availabilityzone.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11500)*





___
<a id="emr.models.placementtype.properties-15.availabilityzone.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11501)*





___
<a id="emr.models.placementtype.properties-15.availabilityzone.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11502)*





___

___

___

___
<a id="emr.models.scalingaction"></a>

###  ScalingAction

** ScalingAction**:  *`object`* 

*Defined in [spec/spec.ts:11507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11507)*




<a id="emr.models.scalingaction.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingaction.html"

*Defined in [spec/spec.ts:11508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11508)*





___
<a id="emr.models.scalingaction.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.ScalingAction"

*Defined in [spec/spec.ts:11523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11523)*





___
<a id="emr.models.scalingaction.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11509)*




<a id="emr.models.scalingaction.properties-16.market-1"></a>

###  Market

** Market**:  *`object`* 

*Defined in [spec/spec.ts:11510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11510)*




<a id="emr.models.scalingaction.properties-16.market-1.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingaction.html#cfn-elasticmapreduce-instancegroupconfig-scalingaction-market"

*Defined in [spec/spec.ts:11511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11511)*





___
<a id="emr.models.scalingaction.properties-16.market-1.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11512)*





___
<a id="emr.models.scalingaction.properties-16.market-1.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11513)*





___
<a id="emr.models.scalingaction.properties-16.market-1.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11514)*





___

___
<a id="emr.models.scalingaction.properties-16.simplescalingpolicyconfiguration"></a>

###  SimpleScalingPolicyConfiguration

** SimpleScalingPolicyConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:11516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11516)*




<a id="emr.models.scalingaction.properties-16.simplescalingpolicyconfiguration.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingaction.html#cfn-elasticmapreduce-instancegroupconfig-scalingaction-simplescalingpolicyconfiguration"

*Defined in [spec/spec.ts:11517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11517)*





___
<a id="emr.models.scalingaction.properties-16.simplescalingpolicyconfiguration.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11518)*





___
<a id="emr.models.scalingaction.properties-16.simplescalingpolicyconfiguration.type-27"></a>

###  Type

**●  Type**:  *`string`*  = "SimpleScalingPolicyConfiguration"

*Defined in [spec/spec.ts:11519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11519)*





___
<a id="emr.models.scalingaction.properties-16.simplescalingpolicyconfiguration.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11520)*





___

___

___

___
<a id="emr.models.scalingconstraints"></a>

###  ScalingConstraints

** ScalingConstraints**:  *`object`* 

*Defined in [spec/spec.ts:11525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11525)*




<a id="emr.models.scalingconstraints.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html"

*Defined in [spec/spec.ts:11526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11526)*





___
<a id="emr.models.scalingconstraints.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.ScalingConstraints"

*Defined in [spec/spec.ts:11541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11541)*





___
<a id="emr.models.scalingconstraints.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11527)*




<a id="emr.models.scalingconstraints.properties-17.maxcapacity"></a>

###  MaxCapacity

** MaxCapacity**:  *`object`* 

*Defined in [spec/spec.ts:11528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11528)*




<a id="emr.models.scalingconstraints.properties-17.maxcapacity.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-maxcapacity"

*Defined in [spec/spec.ts:11529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11529)*





___
<a id="emr.models.scalingconstraints.properties-17.maxcapacity.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11530)*





___
<a id="emr.models.scalingconstraints.properties-17.maxcapacity.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11531)*





___
<a id="emr.models.scalingconstraints.properties-17.maxcapacity.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11532)*





___

___
<a id="emr.models.scalingconstraints.properties-17.mincapacity"></a>

###  MinCapacity

** MinCapacity**:  *`object`* 

*Defined in [spec/spec.ts:11534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11534)*




<a id="emr.models.scalingconstraints.properties-17.mincapacity.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingconstraints.html#cfn-elasticmapreduce-instancegroupconfig-scalingconstraints-mincapacity"

*Defined in [spec/spec.ts:11535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11535)*





___
<a id="emr.models.scalingconstraints.properties-17.mincapacity.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11536)*





___
<a id="emr.models.scalingconstraints.properties-17.mincapacity.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11537)*





___
<a id="emr.models.scalingconstraints.properties-17.mincapacity.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11538)*





___

___

___

___
<a id="emr.models.scalingrule"></a>

###  ScalingRule

** ScalingRule**:  *`object`* 

*Defined in [spec/spec.ts:11543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11543)*




<a id="emr.models.scalingrule.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingrule.html"

*Defined in [spec/spec.ts:11544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11544)*





___
<a id="emr.models.scalingrule.name-22"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.ScalingRule"

*Defined in [spec/spec.ts:11571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11571)*





___
<a id="emr.models.scalingrule.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11545)*




<a id="emr.models.scalingrule.properties-18.action"></a>

###  Action

** Action**:  *`object`* 

*Defined in [spec/spec.ts:11546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11546)*




<a id="emr.models.scalingrule.properties-18.action.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingrule.html#cfn-elasticmapreduce-instancegroupconfig-scalingrule-action"

*Defined in [spec/spec.ts:11547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11547)*





___
<a id="emr.models.scalingrule.properties-18.action.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11548)*





___
<a id="emr.models.scalingrule.properties-18.action.type-28"></a>

###  Type

**●  Type**:  *`string`*  = "ScalingAction"

*Defined in [spec/spec.ts:11549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11549)*





___
<a id="emr.models.scalingrule.properties-18.action.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11550)*





___

___
<a id="emr.models.scalingrule.properties-18.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:11552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11552)*




<a id="emr.models.scalingrule.properties-18.description.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingrule.html#cfn-elasticmapreduce-instancegroupconfig-scalingrule-description"

*Defined in [spec/spec.ts:11553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11553)*





___
<a id="emr.models.scalingrule.properties-18.description.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11554)*





___
<a id="emr.models.scalingrule.properties-18.description.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11555)*





___
<a id="emr.models.scalingrule.properties-18.description.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11556)*





___

___
<a id="emr.models.scalingrule.properties-18.name-23"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:11558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11558)*




<a id="emr.models.scalingrule.properties-18.name-23.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingrule.html#cfn-elasticmapreduce-instancegroupconfig-scalingrule-name"

*Defined in [spec/spec.ts:11559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11559)*





___
<a id="emr.models.scalingrule.properties-18.name-23.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11560)*





___
<a id="emr.models.scalingrule.properties-18.name-23.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11561)*





___
<a id="emr.models.scalingrule.properties-18.name-23.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11562)*





___

___
<a id="emr.models.scalingrule.properties-18.trigger"></a>

###  Trigger

** Trigger**:  *`object`* 

*Defined in [spec/spec.ts:11564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11564)*




<a id="emr.models.scalingrule.properties-18.trigger.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingrule.html#cfn-elasticmapreduce-instancegroupconfig-scalingrule-trigger"

*Defined in [spec/spec.ts:11565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11565)*





___
<a id="emr.models.scalingrule.properties-18.trigger.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11566)*





___
<a id="emr.models.scalingrule.properties-18.trigger.type-29"></a>

###  Type

**●  Type**:  *`string`*  = "ScalingTrigger"

*Defined in [spec/spec.ts:11567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11567)*





___
<a id="emr.models.scalingrule.properties-18.trigger.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11568)*





___

___

___

___
<a id="emr.models.scalingtrigger"></a>

###  ScalingTrigger

** ScalingTrigger**:  *`object`* 

*Defined in [spec/spec.ts:11573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11573)*




<a id="emr.models.scalingtrigger.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingtrigger.html"

*Defined in [spec/spec.ts:11574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11574)*





___
<a id="emr.models.scalingtrigger.name-24"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.ScalingTrigger"

*Defined in [spec/spec.ts:11583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11583)*





___
<a id="emr.models.scalingtrigger.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11575)*




<a id="emr.models.scalingtrigger.properties-19.cloudwatchalarmdefinition-1"></a>

###  CloudWatchAlarmDefinition

** CloudWatchAlarmDefinition**:  *`object`* 

*Defined in [spec/spec.ts:11576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11576)*




<a id="emr.models.scalingtrigger.properties-19.cloudwatchalarmdefinition-1.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-scalingtrigger.html#cfn-elasticmapreduce-instancegroupconfig-scalingtrigger-cloudwatchalarmdefinition"

*Defined in [spec/spec.ts:11577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11577)*





___
<a id="emr.models.scalingtrigger.properties-19.cloudwatchalarmdefinition-1.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11578)*





___
<a id="emr.models.scalingtrigger.properties-19.cloudwatchalarmdefinition-1.type-30"></a>

###  Type

**●  Type**:  *`string`*  = "CloudWatchAlarmDefinition"

*Defined in [spec/spec.ts:11579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11579)*





___
<a id="emr.models.scalingtrigger.properties-19.cloudwatchalarmdefinition-1.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11580)*





___

___

___

___
<a id="emr.models.scriptbootstrapactionconfig"></a>

###  ScriptBootstrapActionConfig

** ScriptBootstrapActionConfig**:  *`object`* 

*Defined in [spec/spec.ts:11585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11585)*




<a id="emr.models.scriptbootstrapactionconfig.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scriptbootstrapactionconfig.html"

*Defined in [spec/spec.ts:11586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11586)*





___
<a id="emr.models.scriptbootstrapactionconfig.name-25"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster.ScriptBootstrapActionConfig"

*Defined in [spec/spec.ts:11603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11603)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11587)*




<a id="emr.models.scriptbootstrapactionconfig.properties-20.args-2"></a>

###  Args

** Args**:  *`object`* 

*Defined in [spec/spec.ts:11588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11588)*




<a id="emr.models.scriptbootstrapactionconfig.properties-20.args-2.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scriptbootstrapactionconfig.html#cfn-elasticmapreduce-cluster-scriptbootstrapactionconfig-args"

*Defined in [spec/spec.ts:11589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11589)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.args-2.duplicatesallowed-14"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11590)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.args-2.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11591)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.args-2.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11592)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.args-2.type-31"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11593)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.args-2.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11594)*





___

___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.path"></a>

###  Path

** Path**:  *`object`* 

*Defined in [spec/spec.ts:11596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11596)*




<a id="emr.models.scriptbootstrapactionconfig.properties-20.path.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scriptbootstrapactionconfig.html#cfn-elasticmapreduce-cluster-scriptbootstrapactionconfig-path"

*Defined in [spec/spec.ts:11597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11597)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.path.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11598)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.path.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11599)*





___
<a id="emr.models.scriptbootstrapactionconfig.properties-20.path.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11600)*





___

___

___

___
<a id="emr.models.simplescalingpolicyconfiguration-1"></a>

###  SimpleScalingPolicyConfiguration

** SimpleScalingPolicyConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:11605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11605)*




<a id="emr.models.simplescalingpolicyconfiguration-1.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-simplescalingpolicyconfiguration.html"

*Defined in [spec/spec.ts:11606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11606)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.name-26"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.SimpleScalingPolicyConfiguration"

*Defined in [spec/spec.ts:11627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11627)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11607)*




<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.adjustmenttype"></a>

###  AdjustmentType

** AdjustmentType**:  *`object`* 

*Defined in [spec/spec.ts:11608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11608)*




<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.adjustmenttype.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-simplescalingpolicyconfiguration.html#cfn-elasticmapreduce-instancegroupconfig-simplescalingpolicyconfiguration-adjustmenttype"

*Defined in [spec/spec.ts:11609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11609)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.adjustmenttype.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11610)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.adjustmenttype.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11611)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.adjustmenttype.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11612)*





___

___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.cooldown"></a>

###  CoolDown

** CoolDown**:  *`object`* 

*Defined in [spec/spec.ts:11614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11614)*




<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.cooldown.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-simplescalingpolicyconfiguration.html#cfn-elasticmapreduce-instancegroupconfig-simplescalingpolicyconfiguration-cooldown"

*Defined in [spec/spec.ts:11615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11615)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.cooldown.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11616)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.cooldown.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11617)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.cooldown.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11618)*





___

___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.scalingadjustment"></a>

###  ScalingAdjustment

** ScalingAdjustment**:  *`object`* 

*Defined in [spec/spec.ts:11620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11620)*




<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.scalingadjustment.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancegroupconfig-simplescalingpolicyconfiguration.html#cfn-elasticmapreduce-instancegroupconfig-simplescalingpolicyconfiguration-scalingadjustment"

*Defined in [spec/spec.ts:11621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11621)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.scalingadjustment.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11622)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.scalingadjustment.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11623)*





___
<a id="emr.models.simplescalingpolicyconfiguration-1.properties-21.scalingadjustment.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11624)*





___

___

___

___
<a id="emr.models.spotprovisioningspecification"></a>

###  SpotProvisioningSpecification

** SpotProvisioningSpecification**:  *`object`* 

*Defined in [spec/spec.ts:11629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11629)*




<a id="emr.models.spotprovisioningspecification.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html"

*Defined in [spec/spec.ts:11630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11630)*





___
<a id="emr.models.spotprovisioningspecification.name-27"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceFleetConfig.SpotProvisioningSpecification"

*Defined in [spec/spec.ts:11651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11651)*





___
<a id="emr.models.spotprovisioningspecification.properties-22"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11631)*




<a id="emr.models.spotprovisioningspecification.properties-22.blockdurationminutes"></a>

###  BlockDurationMinutes

** BlockDurationMinutes**:  *`object`* 

*Defined in [spec/spec.ts:11632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11632)*




<a id="emr.models.spotprovisioningspecification.properties-22.blockdurationminutes.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-blockdurationminutes"

*Defined in [spec/spec.ts:11633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11633)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.blockdurationminutes.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11634)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.blockdurationminutes.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11635)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.blockdurationminutes.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11636)*





___

___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutaction"></a>

###  TimeoutAction

** TimeoutAction**:  *`object`* 

*Defined in [spec/spec.ts:11638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11638)*




<a id="emr.models.spotprovisioningspecification.properties-22.timeoutaction.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutaction"

*Defined in [spec/spec.ts:11639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11639)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutaction.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11640)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutaction.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11641)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutaction.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11642)*





___

___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutdurationminutes"></a>

###  TimeoutDurationMinutes

** TimeoutDurationMinutes**:  *`object`* 

*Defined in [spec/spec.ts:11644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11644)*




<a id="emr.models.spotprovisioningspecification.properties-22.timeoutdurationminutes.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-instancefleetconfig-spotprovisioningspecification.html#cfn-elasticmapreduce-instancefleetconfig-spotprovisioningspecification-timeoutdurationminutes"

*Defined in [spec/spec.ts:11645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11645)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutdurationminutes.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11646)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutdurationminutes.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11647)*





___
<a id="emr.models.spotprovisioningspecification.properties-22.timeoutdurationminutes.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11648)*





___

___

___

___
<a id="emr.models.volumespecification-1"></a>

###  VolumeSpecification

** VolumeSpecification**:  *`object`* 

*Defined in [spec/spec.ts:11653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11653)*




<a id="emr.models.volumespecification-1.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification.html"

*Defined in [spec/spec.ts:11654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11654)*





___
<a id="emr.models.volumespecification-1.name-28"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig.VolumeSpecification"

*Defined in [spec/spec.ts:11675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11675)*





___
<a id="emr.models.volumespecification-1.properties-23"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11655)*




<a id="emr.models.volumespecification-1.properties-23.iops"></a>

###  Iops

** Iops**:  *`object`* 

*Defined in [spec/spec.ts:11656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11656)*




<a id="emr.models.volumespecification-1.properties-23.iops.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification.html#cfn-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification-iops"

*Defined in [spec/spec.ts:11657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11657)*





___
<a id="emr.models.volumespecification-1.properties-23.iops.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11658)*





___
<a id="emr.models.volumespecification-1.properties-23.iops.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11659)*





___
<a id="emr.models.volumespecification-1.properties-23.iops.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11660)*





___

___
<a id="emr.models.volumespecification-1.properties-23.sizeingb"></a>

###  SizeInGB

** SizeInGB**:  *`object`* 

*Defined in [spec/spec.ts:11662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11662)*




<a id="emr.models.volumespecification-1.properties-23.sizeingb.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification.html#cfn-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification-sizeingb"

*Defined in [spec/spec.ts:11663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11663)*





___
<a id="emr.models.volumespecification-1.properties-23.sizeingb.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11664)*





___
<a id="emr.models.volumespecification-1.properties-23.sizeingb.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11665)*





___
<a id="emr.models.volumespecification-1.properties-23.sizeingb.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11666)*





___

___
<a id="emr.models.volumespecification-1.properties-23.volumetype"></a>

###  VolumeType

** VolumeType**:  *`object`* 

*Defined in [spec/spec.ts:11668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11668)*




<a id="emr.models.volumespecification-1.properties-23.volumetype.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification.html#cfn-emr-ebsconfiguration-ebsblockdeviceconfig-volumespecification-volumetype"

*Defined in [spec/spec.ts:11669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11669)*





___
<a id="emr.models.volumespecification-1.properties-23.volumetype.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11670)*





___
<a id="emr.models.volumespecification-1.properties-23.volumetype.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11671)*





___
<a id="emr.models.volumespecification-1.properties-23.volumetype.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11672)*





___

___

___

___

___
<a id="emr.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:10743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10743)*




<a id="emr.resources.cluster"></a>

###  Cluster

** Cluster**:  *`object`* 

*Defined in [spec/spec.ts:10744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10744)*




<a id="emr.resources.cluster.documentation-111"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html"

*Defined in [spec/spec.ts:10750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10750)*





___
<a id="emr.resources.cluster.name-29"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Cluster"

*Defined in [spec/spec.ts:10863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10863)*





___
<a id="emr.resources.cluster.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:10745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10745)*




<a id="emr.resources.cluster.attributes.masterpublicdns"></a>

###  MasterPublicDNS

** MasterPublicDNS**:  *`object`* 

*Defined in [spec/spec.ts:10746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10746)*




<a id="emr.resources.cluster.attributes.masterpublicdns.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10747)*





___

___

___
<a id="emr.resources.cluster.properties-24"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:10751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10751)*




<a id="emr.resources.cluster.properties-24.additionalinfo-1"></a>

###  AdditionalInfo

** AdditionalInfo**:  *`object`* 

*Defined in [spec/spec.ts:10752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10752)*




<a id="emr.resources.cluster.properties-24.additionalinfo-1.documentation-112"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-additionalinfo"

*Defined in [spec/spec.ts:10753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10753)*





___
<a id="emr.resources.cluster.properties-24.additionalinfo-1.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:10754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10754)*





___
<a id="emr.resources.cluster.properties-24.additionalinfo-1.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10755)*





___
<a id="emr.resources.cluster.properties-24.additionalinfo-1.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10756)*





___

___
<a id="emr.resources.cluster.properties-24.applications"></a>

###  Applications

** Applications**:  *`object`* 

*Defined in [spec/spec.ts:10758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10758)*




<a id="emr.resources.cluster.properties-24.applications.documentation-113"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-applications"

*Defined in [spec/spec.ts:10759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10759)*





___
<a id="emr.resources.cluster.properties-24.applications.duplicatesallowed-15"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10760)*





___
<a id="emr.resources.cluster.properties-24.applications.itemtype-8"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Application"

*Defined in [spec/spec.ts:10761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10761)*





___
<a id="emr.resources.cluster.properties-24.applications.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10762)*





___
<a id="emr.resources.cluster.properties-24.applications.type-32"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10763)*





___
<a id="emr.resources.cluster.properties-24.applications.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10764)*





___

___
<a id="emr.resources.cluster.properties-24.autoscalingrole"></a>

###  AutoScalingRole

** AutoScalingRole**:  *`object`* 

*Defined in [spec/spec.ts:10766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10766)*




<a id="emr.resources.cluster.properties-24.autoscalingrole.documentation-114"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-autoscalingrole"

*Defined in [spec/spec.ts:10767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10767)*





___
<a id="emr.resources.cluster.properties-24.autoscalingrole.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10768)*





___
<a id="emr.resources.cluster.properties-24.autoscalingrole.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10769)*





___
<a id="emr.resources.cluster.properties-24.autoscalingrole.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10770)*





___

___
<a id="emr.resources.cluster.properties-24.bootstrapactions"></a>

###  BootstrapActions

** BootstrapActions**:  *`object`* 

*Defined in [spec/spec.ts:10772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10772)*




<a id="emr.resources.cluster.properties-24.bootstrapactions.documentation-115"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-bootstrapactions"

*Defined in [spec/spec.ts:10773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10773)*





___
<a id="emr.resources.cluster.properties-24.bootstrapactions.duplicatesallowed-16"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10774)*





___
<a id="emr.resources.cluster.properties-24.bootstrapactions.itemtype-9"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "BootstrapActionConfig"

*Defined in [spec/spec.ts:10775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10775)*





___
<a id="emr.resources.cluster.properties-24.bootstrapactions.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10776)*





___
<a id="emr.resources.cluster.properties-24.bootstrapactions.type-33"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10777)*





___
<a id="emr.resources.cluster.properties-24.bootstrapactions.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10778)*





___

___
<a id="emr.resources.cluster.properties-24.configurations-3"></a>

###  Configurations

** Configurations**:  *`object`* 

*Defined in [spec/spec.ts:10780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10780)*




<a id="emr.resources.cluster.properties-24.configurations-3.documentation-116"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-configurations"

*Defined in [spec/spec.ts:10781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10781)*





___
<a id="emr.resources.cluster.properties-24.configurations-3.duplicatesallowed-17"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10782)*





___
<a id="emr.resources.cluster.properties-24.configurations-3.itemtype-10"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Configuration"

*Defined in [spec/spec.ts:10783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10783)*





___
<a id="emr.resources.cluster.properties-24.configurations-3.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10784)*





___
<a id="emr.resources.cluster.properties-24.configurations-3.type-34"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10785)*





___
<a id="emr.resources.cluster.properties-24.configurations-3.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10786)*





___

___
<a id="emr.resources.cluster.properties-24.customamiid"></a>

###  CustomAmiId

** CustomAmiId**:  *`object`* 

*Defined in [spec/spec.ts:10788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10788)*




<a id="emr.resources.cluster.properties-24.customamiid.documentation-117"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-customamiid"

*Defined in [spec/spec.ts:10789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10789)*





___
<a id="emr.resources.cluster.properties-24.customamiid.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10790)*





___
<a id="emr.resources.cluster.properties-24.customamiid.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10791)*





___
<a id="emr.resources.cluster.properties-24.customamiid.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10792)*





___

___
<a id="emr.resources.cluster.properties-24.ebsrootvolumesize"></a>

###  EbsRootVolumeSize

** EbsRootVolumeSize**:  *`object`* 

*Defined in [spec/spec.ts:10794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10794)*




<a id="emr.resources.cluster.properties-24.ebsrootvolumesize.documentation-118"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-ebsrootvolumesize"

*Defined in [spec/spec.ts:10795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10795)*





___
<a id="emr.resources.cluster.properties-24.ebsrootvolumesize.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:10796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10796)*





___
<a id="emr.resources.cluster.properties-24.ebsrootvolumesize.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10797)*





___
<a id="emr.resources.cluster.properties-24.ebsrootvolumesize.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10798)*





___

___
<a id="emr.resources.cluster.properties-24.instances"></a>

###  Instances

** Instances**:  *`object`* 

*Defined in [spec/spec.ts:10800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10800)*




<a id="emr.resources.cluster.properties-24.instances.documentation-119"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-instances"

*Defined in [spec/spec.ts:10801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10801)*





___
<a id="emr.resources.cluster.properties-24.instances.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10802)*





___
<a id="emr.resources.cluster.properties-24.instances.type-35"></a>

###  Type

**●  Type**:  *`string`*  = "JobFlowInstancesConfig"

*Defined in [spec/spec.ts:10803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10803)*





___
<a id="emr.resources.cluster.properties-24.instances.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:10804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10804)*





___

___
<a id="emr.resources.cluster.properties-24.jobflowrole"></a>

###  JobFlowRole

** JobFlowRole**:  *`object`* 

*Defined in [spec/spec.ts:10806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10806)*




<a id="emr.resources.cluster.properties-24.jobflowrole.documentation-120"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-jobflowrole"

*Defined in [spec/spec.ts:10807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10807)*





___
<a id="emr.resources.cluster.properties-24.jobflowrole.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10808)*





___
<a id="emr.resources.cluster.properties-24.jobflowrole.required-95"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10809)*





___
<a id="emr.resources.cluster.properties-24.jobflowrole.updatetype-95"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10810)*





___

___
<a id="emr.resources.cluster.properties-24.loguri"></a>

###  LogUri

** LogUri**:  *`object`* 

*Defined in [spec/spec.ts:10812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10812)*




<a id="emr.resources.cluster.properties-24.loguri.documentation-121"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-loguri"

*Defined in [spec/spec.ts:10813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10813)*





___
<a id="emr.resources.cluster.properties-24.loguri.primitivetype-61"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10814)*





___
<a id="emr.resources.cluster.properties-24.loguri.required-96"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10815)*





___
<a id="emr.resources.cluster.properties-24.loguri.updatetype-96"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10816)*





___

___
<a id="emr.resources.cluster.properties-24.name-30"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:10818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10818)*




<a id="emr.resources.cluster.properties-24.name-30.documentation-122"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-name"

*Defined in [spec/spec.ts:10819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10819)*





___
<a id="emr.resources.cluster.properties-24.name-30.primitivetype-62"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10820)*





___
<a id="emr.resources.cluster.properties-24.name-30.required-97"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10821)*





___
<a id="emr.resources.cluster.properties-24.name-30.updatetype-97"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10822)*





___

___
<a id="emr.resources.cluster.properties-24.releaselabel"></a>

###  ReleaseLabel

** ReleaseLabel**:  *`object`* 

*Defined in [spec/spec.ts:10824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10824)*




<a id="emr.resources.cluster.properties-24.releaselabel.documentation-123"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-releaselabel"

*Defined in [spec/spec.ts:10825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10825)*





___
<a id="emr.resources.cluster.properties-24.releaselabel.primitivetype-63"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10826)*





___
<a id="emr.resources.cluster.properties-24.releaselabel.required-98"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10827)*





___
<a id="emr.resources.cluster.properties-24.releaselabel.updatetype-98"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10828)*





___

___
<a id="emr.resources.cluster.properties-24.scaledownbehavior"></a>

###  ScaleDownBehavior

** ScaleDownBehavior**:  *`object`* 

*Defined in [spec/spec.ts:10830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10830)*




<a id="emr.resources.cluster.properties-24.scaledownbehavior.documentation-124"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-scaledownbehavior"

*Defined in [spec/spec.ts:10831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10831)*





___
<a id="emr.resources.cluster.properties-24.scaledownbehavior.primitivetype-64"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10832)*





___
<a id="emr.resources.cluster.properties-24.scaledownbehavior.required-99"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10833)*





___
<a id="emr.resources.cluster.properties-24.scaledownbehavior.updatetype-99"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10834)*





___

___
<a id="emr.resources.cluster.properties-24.securityconfiguration"></a>

###  SecurityConfiguration

** SecurityConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:10836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10836)*




<a id="emr.resources.cluster.properties-24.securityconfiguration.documentation-125"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-securityconfiguration"

*Defined in [spec/spec.ts:10837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10837)*





___
<a id="emr.resources.cluster.properties-24.securityconfiguration.primitivetype-65"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10838)*





___
<a id="emr.resources.cluster.properties-24.securityconfiguration.required-100"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10839)*





___
<a id="emr.resources.cluster.properties-24.securityconfiguration.updatetype-100"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10840)*





___

___
<a id="emr.resources.cluster.properties-24.servicerole"></a>

###  ServiceRole

** ServiceRole**:  *`object`* 

*Defined in [spec/spec.ts:10842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10842)*




<a id="emr.resources.cluster.properties-24.servicerole.documentation-126"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-servicerole"

*Defined in [spec/spec.ts:10843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10843)*





___
<a id="emr.resources.cluster.properties-24.servicerole.primitivetype-66"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10844)*





___
<a id="emr.resources.cluster.properties-24.servicerole.required-101"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10845)*





___
<a id="emr.resources.cluster.properties-24.servicerole.updatetype-101"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10846)*





___

___
<a id="emr.resources.cluster.properties-24.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:10848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10848)*




<a id="emr.resources.cluster.properties-24.tags.documentation-127"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-tags"

*Defined in [spec/spec.ts:10849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10849)*





___
<a id="emr.resources.cluster.properties-24.tags.duplicatesallowed-18"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10850)*





___
<a id="emr.resources.cluster.properties-24.tags.itemtype-11"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:10851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10851)*





___
<a id="emr.resources.cluster.properties-24.tags.required-102"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10852)*





___
<a id="emr.resources.cluster.properties-24.tags.type-36"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10853)*





___
<a id="emr.resources.cluster.properties-24.tags.updatetype-102"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10854)*





___

___
<a id="emr.resources.cluster.properties-24.visibletoallusers"></a>

###  VisibleToAllUsers

** VisibleToAllUsers**:  *`object`* 

*Defined in [spec/spec.ts:10856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10856)*




<a id="emr.resources.cluster.properties-24.visibletoallusers.documentation-128"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-cluster.html#cfn-elasticmapreduce-cluster-visibletoallusers"

*Defined in [spec/spec.ts:10857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10857)*





___
<a id="emr.resources.cluster.properties-24.visibletoallusers.primitivetype-67"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:10858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10858)*





___
<a id="emr.resources.cluster.properties-24.visibletoallusers.required-103"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10859)*





___
<a id="emr.resources.cluster.properties-24.visibletoallusers.updatetype-103"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10860)*





___

___

___

___
<a id="emr.resources.instancefleetconfig-1"></a>

###  InstanceFleetConfig

** InstanceFleetConfig**:  *`object`* 

*Defined in [spec/spec.ts:10865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10865)*




<a id="emr.resources.instancefleetconfig-1.documentation-129"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html"

*Defined in [spec/spec.ts:10866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10866)*





___
<a id="emr.resources.instancefleetconfig-1.name-31"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceFleetConfig"

*Defined in [spec/spec.ts:10913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10913)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:10867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10867)*




<a id="emr.resources.instancefleetconfig-1.properties-25.clusterid"></a>

###  ClusterId

** ClusterId**:  *`object`* 

*Defined in [spec/spec.ts:10868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10868)*




<a id="emr.resources.instancefleetconfig-1.properties-25.clusterid.documentation-130"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-clusterid"

*Defined in [spec/spec.ts:10869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10869)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.clusterid.primitivetype-68"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10870)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.clusterid.required-104"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10871)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.clusterid.updatetype-104"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10872)*





___

___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancefleettype"></a>

###  InstanceFleetType

** InstanceFleetType**:  *`object`* 

*Defined in [spec/spec.ts:10874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10874)*




<a id="emr.resources.instancefleetconfig-1.properties-25.instancefleettype.documentation-131"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancefleettype"

*Defined in [spec/spec.ts:10875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10875)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancefleettype.primitivetype-69"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10876)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancefleettype.required-105"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10877)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancefleettype.updatetype-105"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10878)*





___

___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancetypeconfigs-1"></a>

###  InstanceTypeConfigs

** InstanceTypeConfigs**:  *`object`* 

*Defined in [spec/spec.ts:10880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10880)*




<a id="emr.resources.instancefleetconfig-1.properties-25.instancetypeconfigs-1.documentation-132"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-instancetypeconfigs"

*Defined in [spec/spec.ts:10881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10881)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancetypeconfigs-1.duplicatesallowed-19"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10882)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancetypeconfigs-1.itemtype-12"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "InstanceTypeConfig"

*Defined in [spec/spec.ts:10883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10883)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancetypeconfigs-1.required-106"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10884)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancetypeconfigs-1.type-37"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10885)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.instancetypeconfigs-1.updatetype-106"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10886)*





___

___
<a id="emr.resources.instancefleetconfig-1.properties-25.launchspecifications-1"></a>

###  LaunchSpecifications

** LaunchSpecifications**:  *`object`* 

*Defined in [spec/spec.ts:10888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10888)*




<a id="emr.resources.instancefleetconfig-1.properties-25.launchspecifications-1.documentation-133"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-launchspecifications"

*Defined in [spec/spec.ts:10889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10889)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.launchspecifications-1.required-107"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10890)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.launchspecifications-1.type-38"></a>

###  Type

**●  Type**:  *`string`*  = "InstanceFleetProvisioningSpecifications"

*Defined in [spec/spec.ts:10891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10891)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.launchspecifications-1.updatetype-107"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10892)*





___

___
<a id="emr.resources.instancefleetconfig-1.properties-25.name-32"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:10894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10894)*




<a id="emr.resources.instancefleetconfig-1.properties-25.name-32.documentation-134"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-name"

*Defined in [spec/spec.ts:10895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10895)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.name-32.primitivetype-70"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10896)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.name-32.required-108"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10897)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.name-32.updatetype-108"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10898)*





___

___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetondemandcapacity-1"></a>

###  TargetOnDemandCapacity

** TargetOnDemandCapacity**:  *`object`* 

*Defined in [spec/spec.ts:10900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10900)*




<a id="emr.resources.instancefleetconfig-1.properties-25.targetondemandcapacity-1.documentation-135"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetondemandcapacity"

*Defined in [spec/spec.ts:10901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10901)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetondemandcapacity-1.primitivetype-71"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:10902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10902)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetondemandcapacity-1.required-109"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10903)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetondemandcapacity-1.updatetype-109"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10904)*





___

___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetspotcapacity-1"></a>

###  TargetSpotCapacity

** TargetSpotCapacity**:  *`object`* 

*Defined in [spec/spec.ts:10906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10906)*




<a id="emr.resources.instancefleetconfig-1.properties-25.targetspotcapacity-1.documentation-136"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticmapreduce-instancefleetconfig.html#cfn-elasticmapreduce-instancefleetconfig-targetspotcapacity"

*Defined in [spec/spec.ts:10907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10907)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetspotcapacity-1.primitivetype-72"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:10908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10908)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetspotcapacity-1.required-110"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10909)*





___
<a id="emr.resources.instancefleetconfig-1.properties-25.targetspotcapacity-1.updatetype-110"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10910)*





___

___

___

___
<a id="emr.resources.instancegroupconfig-1"></a>

###  InstanceGroupConfig

** InstanceGroupConfig**:  *`object`* 

*Defined in [spec/spec.ts:10915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10915)*




<a id="emr.resources.instancegroupconfig-1.documentation-137"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html"

*Defined in [spec/spec.ts:10916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10916)*





___
<a id="emr.resources.instancegroupconfig-1.name-33"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::InstanceGroupConfig"

*Defined in [spec/spec.ts:10981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10981)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:10917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10917)*




<a id="emr.resources.instancegroupconfig-1.properties-26.autoscalingpolicy-2"></a>

###  AutoScalingPolicy

** AutoScalingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:10918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10918)*




<a id="emr.resources.instancegroupconfig-1.properties-26.autoscalingpolicy-2.documentation-138"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-elasticmapreduce-instancegroupconfig-autoscalingpolicy"

*Defined in [spec/spec.ts:10919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10919)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.autoscalingpolicy-2.required-111"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10920)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.autoscalingpolicy-2.type-39"></a>

###  Type

**●  Type**:  *`string`*  = "AutoScalingPolicy"

*Defined in [spec/spec.ts:10921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10921)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.autoscalingpolicy-2.updatetype-111"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10922)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.bidprice-2"></a>

###  BidPrice

** BidPrice**:  *`object`* 

*Defined in [spec/spec.ts:10924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10924)*




<a id="emr.resources.instancegroupconfig-1.properties-26.bidprice-2.documentation-139"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-bidprice"

*Defined in [spec/spec.ts:10925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10925)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.bidprice-2.primitivetype-73"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10926)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.bidprice-2.required-112"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10927)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.bidprice-2.updatetype-112"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10928)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.configurations-4"></a>

###  Configurations

** Configurations**:  *`object`* 

*Defined in [spec/spec.ts:10930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10930)*




<a id="emr.resources.instancegroupconfig-1.properties-26.configurations-4.documentation-140"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-configurations"

*Defined in [spec/spec.ts:10931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10931)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.configurations-4.duplicatesallowed-20"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10932)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.configurations-4.itemtype-13"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Configuration"

*Defined in [spec/spec.ts:10933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10933)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.configurations-4.required-113"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10934)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.configurations-4.type-40"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:10935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10935)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.configurations-4.updatetype-113"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10936)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.ebsconfiguration-3"></a>

###  EbsConfiguration

** EbsConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:10938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10938)*




<a id="emr.resources.instancegroupconfig-1.properties-26.ebsconfiguration-3.documentation-141"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-ebsconfiguration"

*Defined in [spec/spec.ts:10939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10939)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.ebsconfiguration-3.required-114"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10940)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.ebsconfiguration-3.type-41"></a>

###  Type

**●  Type**:  *`string`*  = "EbsConfiguration"

*Defined in [spec/spec.ts:10941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10941)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.ebsconfiguration-3.updatetype-114"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10942)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancecount-1"></a>

###  InstanceCount

** InstanceCount**:  *`object`* 

*Defined in [spec/spec.ts:10944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10944)*




<a id="emr.resources.instancegroupconfig-1.properties-26.instancecount-1.documentation-142"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfiginstancecount-"

*Defined in [spec/spec.ts:10945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10945)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancecount-1.primitivetype-74"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:10946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10946)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancecount-1.required-115"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10947)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancecount-1.updatetype-115"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:10948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10948)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancerole"></a>

###  InstanceRole

** InstanceRole**:  *`object`* 

*Defined in [spec/spec.ts:10950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10950)*




<a id="emr.resources.instancegroupconfig-1.properties-26.instancerole.documentation-143"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancerole"

*Defined in [spec/spec.ts:10951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10951)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancerole.primitivetype-75"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10952)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancerole.required-116"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10953)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancerole.updatetype-116"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10954)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancetype-2"></a>

###  InstanceType

** InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:10956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10956)*




<a id="emr.resources.instancegroupconfig-1.properties-26.instancetype-2.documentation-144"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-instancetype"

*Defined in [spec/spec.ts:10957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10957)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancetype-2.primitivetype-76"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10958)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancetype-2.required-117"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10959)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.instancetype-2.updatetype-117"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10960)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.jobflowid"></a>

###  JobFlowId

** JobFlowId**:  *`object`* 

*Defined in [spec/spec.ts:10962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10962)*




<a id="emr.resources.instancegroupconfig-1.properties-26.jobflowid.documentation-145"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-jobflowid"

*Defined in [spec/spec.ts:10963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10963)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.jobflowid.primitivetype-77"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10964)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.jobflowid.required-118"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10965)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.jobflowid.updatetype-118"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10966)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.market-2"></a>

###  Market

** Market**:  *`object`* 

*Defined in [spec/spec.ts:10968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10968)*




<a id="emr.resources.instancegroupconfig-1.properties-26.market-2.documentation-146"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-market"

*Defined in [spec/spec.ts:10969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10969)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.market-2.primitivetype-78"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10970)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.market-2.required-119"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10971)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.market-2.updatetype-119"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10972)*





___

___
<a id="emr.resources.instancegroupconfig-1.properties-26.name-34"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:10974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10974)*




<a id="emr.resources.instancegroupconfig-1.properties-26.name-34.documentation-147"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-instancegroupconfig.html#cfn-emr-instancegroupconfig-name"

*Defined in [spec/spec.ts:10975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10975)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.name-34.primitivetype-79"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10976)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.name-34.required-120"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10977)*





___
<a id="emr.resources.instancegroupconfig-1.properties-26.name-34.updatetype-120"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10978)*





___

___

___

___
<a id="emr.resources.securityconfiguration-1"></a>

###  SecurityConfiguration

** SecurityConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:10983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10983)*




<a id="emr.resources.securityconfiguration-1.documentation-148"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html"

*Defined in [spec/spec.ts:10984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10984)*





___
<a id="emr.resources.securityconfiguration-1.name-35"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::SecurityConfiguration"

*Defined in [spec/spec.ts:10999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10999)*





___
<a id="emr.resources.securityconfiguration-1.properties-27"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:10985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10985)*




<a id="emr.resources.securityconfiguration-1.properties-27.name-36"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:10986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10986)*




<a id="emr.resources.securityconfiguration-1.properties-27.name-36.documentation-149"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-name"

*Defined in [spec/spec.ts:10987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10987)*





___
<a id="emr.resources.securityconfiguration-1.properties-27.name-36.primitivetype-80"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:10988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10988)*





___
<a id="emr.resources.securityconfiguration-1.properties-27.name-36.required-121"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:10989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10989)*





___
<a id="emr.resources.securityconfiguration-1.properties-27.name-36.updatetype-121"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10990)*





___

___
<a id="emr.resources.securityconfiguration-1.properties-27.securityconfiguration-2"></a>

###  SecurityConfiguration

** SecurityConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:10992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10992)*




<a id="emr.resources.securityconfiguration-1.properties-27.securityconfiguration-2.documentation-150"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-securityconfiguration.html#cfn-emr-securityconfiguration-securityconfiguration"

*Defined in [spec/spec.ts:10993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10993)*





___
<a id="emr.resources.securityconfiguration-1.properties-27.securityconfiguration-2.primitivetype-81"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:10994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10994)*





___
<a id="emr.resources.securityconfiguration-1.properties-27.securityconfiguration-2.required-122"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:10995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10995)*





___
<a id="emr.resources.securityconfiguration-1.properties-27.securityconfiguration-2.updatetype-122"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:10996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L10996)*





___

___

___

___
<a id="emr.resources.step"></a>

###  Step

** Step**:  *`object`* 

*Defined in [spec/spec.ts:11001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11001)*




<a id="emr.resources.step.documentation-151"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html"

*Defined in [spec/spec.ts:11002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11002)*





___
<a id="emr.resources.step.name-37"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::EMR::Step"

*Defined in [spec/spec.ts:11029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11029)*





___
<a id="emr.resources.step.properties-28"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11003)*




<a id="emr.resources.step.properties-28.actiononfailure"></a>

###  ActionOnFailure

** ActionOnFailure**:  *`object`* 

*Defined in [spec/spec.ts:11004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11004)*




<a id="emr.resources.step.properties-28.actiononfailure.documentation-152"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-actiononfailure"

*Defined in [spec/spec.ts:11005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11005)*





___
<a id="emr.resources.step.properties-28.actiononfailure.primitivetype-82"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11006)*





___
<a id="emr.resources.step.properties-28.actiononfailure.required-123"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11007)*





___
<a id="emr.resources.step.properties-28.actiononfailure.updatetype-123"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11008)*





___

___
<a id="emr.resources.step.properties-28.hadoopjarstep"></a>

###  HadoopJarStep

** HadoopJarStep**:  *`object`* 

*Defined in [spec/spec.ts:11010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11010)*




<a id="emr.resources.step.properties-28.hadoopjarstep.documentation-153"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-hadoopjarstep"

*Defined in [spec/spec.ts:11011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11011)*





___
<a id="emr.resources.step.properties-28.hadoopjarstep.required-124"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11012)*





___
<a id="emr.resources.step.properties-28.hadoopjarstep.type-42"></a>

###  Type

**●  Type**:  *`string`*  = "HadoopJarStepConfig"

*Defined in [spec/spec.ts:11013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11013)*





___
<a id="emr.resources.step.properties-28.hadoopjarstep.updatetype-124"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11014)*





___

___
<a id="emr.resources.step.properties-28.jobflowid-1"></a>

###  JobFlowId

** JobFlowId**:  *`object`* 

*Defined in [spec/spec.ts:11016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11016)*




<a id="emr.resources.step.properties-28.jobflowid-1.documentation-154"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-jobflowid"

*Defined in [spec/spec.ts:11017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11017)*





___
<a id="emr.resources.step.properties-28.jobflowid-1.primitivetype-83"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11018)*





___
<a id="emr.resources.step.properties-28.jobflowid-1.required-125"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11019)*





___
<a id="emr.resources.step.properties-28.jobflowid-1.updatetype-125"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11020)*





___

___
<a id="emr.resources.step.properties-28.name-38"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:11022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11022)*




<a id="emr.resources.step.properties-28.name-38.documentation-155"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emr-step.html#cfn-elasticmapreduce-step-name"

*Defined in [spec/spec.ts:11023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11023)*





___
<a id="emr.resources.step.properties-28.name-38.primitivetype-84"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11024)*





___
<a id="emr.resources.step.properties-28.name-38.required-126"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11025)*





___
<a id="emr.resources.step.properties-28.name-38.updatetype-126"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11026)*





___

___

___

___

___

<a id="elasticache"></a>

## Object literal: ElastiCache


<a id="elasticache.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:12198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12198)*




<a id="elasticache.models.nodegroupconfiguration"></a>

###  NodeGroupConfiguration

** NodeGroupConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:12199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12199)*




<a id="elasticache.models.nodegroupconfiguration.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-nodegroupconfiguration.html"

*Defined in [spec/spec.ts:12200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12200)*





___
<a id="elasticache.models.nodegroupconfiguration.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElastiCache::ReplicationGroup.NodeGroupConfiguration"

*Defined in [spec/spec.ts:12229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12229)*





___
<a id="elasticache.models.nodegroupconfiguration.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12201)*




<a id="elasticache.models.nodegroupconfiguration.properties.primaryavailabilityzone"></a>

###  PrimaryAvailabilityZone

** PrimaryAvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:12202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12202)*




<a id="elasticache.models.nodegroupconfiguration.properties.primaryavailabilityzone.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-nodegroupconfiguration.html#cfn-elasticache-replicationgroup-nodegroupconfiguration-primaryavailabilityzone"

*Defined in [spec/spec.ts:12203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12203)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.primaryavailabilityzone.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12204)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.primaryavailabilityzone.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12205)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.primaryavailabilityzone.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12206)*





___

___
<a id="elasticache.models.nodegroupconfiguration.properties.replicaavailabilityzones"></a>

###  ReplicaAvailabilityZones

** ReplicaAvailabilityZones**:  *`object`* 

*Defined in [spec/spec.ts:12208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12208)*




<a id="elasticache.models.nodegroupconfiguration.properties.replicaavailabilityzones.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-nodegroupconfiguration.html#cfn-elasticache-replicationgroup-nodegroupconfiguration-replicaavailabilityzones"

*Defined in [spec/spec.ts:12209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12209)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicaavailabilityzones.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12210)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicaavailabilityzones.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12211)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicaavailabilityzones.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12212)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicaavailabilityzones.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12213)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicaavailabilityzones.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12214)*





___

___
<a id="elasticache.models.nodegroupconfiguration.properties.replicacount"></a>

###  ReplicaCount

** ReplicaCount**:  *`object`* 

*Defined in [spec/spec.ts:12216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12216)*




<a id="elasticache.models.nodegroupconfiguration.properties.replicacount.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-nodegroupconfiguration.html#cfn-elasticache-replicationgroup-nodegroupconfiguration-replicacount"

*Defined in [spec/spec.ts:12217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12217)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicacount.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12218)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicacount.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12219)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.replicacount.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12220)*





___

___
<a id="elasticache.models.nodegroupconfiguration.properties.slots"></a>

###  Slots

** Slots**:  *`object`* 

*Defined in [spec/spec.ts:12222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12222)*




<a id="elasticache.models.nodegroupconfiguration.properties.slots.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-nodegroupconfiguration.html#cfn-elasticache-replicationgroup-nodegroupconfiguration-slots"

*Defined in [spec/spec.ts:12223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12223)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.slots.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12224)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.slots.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12225)*





___
<a id="elasticache.models.nodegroupconfiguration.properties.slots.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12226)*





___

___

___

___

___
<a id="elasticache.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:11732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11732)*




<a id="elasticache.resources.cachecluster"></a>

###  CacheCluster

** CacheCluster**:  *`object`* 

*Defined in [spec/spec.ts:11733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11733)*




<a id="elasticache.resources.cachecluster.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html"

*Defined in [spec/spec.ts:11748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11748)*





___
<a id="elasticache.resources.cachecluster.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElastiCache::CacheCluster"

*Defined in [spec/spec.ts:11887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11887)*





___
<a id="elasticache.resources.cachecluster.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:11734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11734)*




<a id="elasticache.resources.cachecluster.attributes.configurationendpoint_address"></a>

###  ConfigurationEndpoint.Address

** ConfigurationEndpoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:11735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11735)*




<a id="elasticache.resources.cachecluster.attributes.configurationendpoint_address.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11736)*





___

___
<a id="elasticache.resources.cachecluster.attributes.configurationendpoint_port"></a>

###  ConfigurationEndpoint.Port

** ConfigurationEndpoint.Port**:  *`object`* 

*Defined in [spec/spec.ts:11738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11738)*




<a id="elasticache.resources.cachecluster.attributes.configurationendpoint_port.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11739)*





___

___
<a id="elasticache.resources.cachecluster.attributes.redisendpoint_address"></a>

###  RedisEndpoint.Address

** RedisEndpoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:11741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11741)*




<a id="elasticache.resources.cachecluster.attributes.redisendpoint_address.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11742)*





___

___
<a id="elasticache.resources.cachecluster.attributes.redisendpoint_port"></a>

###  RedisEndpoint.Port

** RedisEndpoint.Port**:  *`object`* 

*Defined in [spec/spec.ts:11744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11744)*




<a id="elasticache.resources.cachecluster.attributes.redisendpoint_port.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11745)*





___

___

___
<a id="elasticache.resources.cachecluster.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11749)*




<a id="elasticache.resources.cachecluster.properties-1.azmode"></a>

###  AZMode

** AZMode**:  *`object`* 

*Defined in [spec/spec.ts:11750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11750)*




<a id="elasticache.resources.cachecluster.properties-1.azmode.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-azmode"

*Defined in [spec/spec.ts:11751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11751)*





___
<a id="elasticache.resources.cachecluster.properties-1.azmode.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11752)*





___
<a id="elasticache.resources.cachecluster.properties-1.azmode.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11753)*





___
<a id="elasticache.resources.cachecluster.properties-1.azmode.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:11754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11754)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.autominorversionupgrade"></a>

###  AutoMinorVersionUpgrade

** AutoMinorVersionUpgrade**:  *`object`* 

*Defined in [spec/spec.ts:11756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11756)*




<a id="elasticache.resources.cachecluster.properties-1.autominorversionupgrade.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-autominorversionupgrade"

*Defined in [spec/spec.ts:11757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11757)*





___
<a id="elasticache.resources.cachecluster.properties-1.autominorversionupgrade.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:11758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11758)*





___
<a id="elasticache.resources.cachecluster.properties-1.autominorversionupgrade.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11759)*





___
<a id="elasticache.resources.cachecluster.properties-1.autominorversionupgrade.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11760)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.cachenodetype"></a>

###  CacheNodeType

** CacheNodeType**:  *`object`* 

*Defined in [spec/spec.ts:11762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11762)*




<a id="elasticache.resources.cachecluster.properties-1.cachenodetype.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachenodetype"

*Defined in [spec/spec.ts:11763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11763)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachenodetype.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11764)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachenodetype.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11765)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachenodetype.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11766)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.cacheparametergroupname"></a>

###  CacheParameterGroupName

** CacheParameterGroupName**:  *`object`* 

*Defined in [spec/spec.ts:11768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11768)*




<a id="elasticache.resources.cachecluster.properties-1.cacheparametergroupname.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cacheparametergroupname"

*Defined in [spec/spec.ts:11769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11769)*





___
<a id="elasticache.resources.cachecluster.properties-1.cacheparametergroupname.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11770)*





___
<a id="elasticache.resources.cachecluster.properties-1.cacheparametergroupname.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11771)*





___
<a id="elasticache.resources.cachecluster.properties-1.cacheparametergroupname.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11772)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.cachesecuritygroupnames"></a>

###  CacheSecurityGroupNames

** CacheSecurityGroupNames**:  *`object`* 

*Defined in [spec/spec.ts:11774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11774)*




<a id="elasticache.resources.cachecluster.properties-1.cachesecuritygroupnames.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesecuritygroupnames"

*Defined in [spec/spec.ts:11775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11775)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesecuritygroupnames.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11776)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesecuritygroupnames.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11777)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesecuritygroupnames.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11778)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesecuritygroupnames.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11779)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesecuritygroupnames.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11780)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.cachesubnetgroupname"></a>

###  CacheSubnetGroupName

** CacheSubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:11782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11782)*




<a id="elasticache.resources.cachecluster.properties-1.cachesubnetgroupname.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-cachesubnetgroupname"

*Defined in [spec/spec.ts:11783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11783)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesubnetgroupname.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11784)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesubnetgroupname.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11785)*





___
<a id="elasticache.resources.cachecluster.properties-1.cachesubnetgroupname.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11786)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.clustername"></a>

###  ClusterName

** ClusterName**:  *`object`* 

*Defined in [spec/spec.ts:11788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11788)*




<a id="elasticache.resources.cachecluster.properties-1.clustername.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-clustername"

*Defined in [spec/spec.ts:11789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11789)*





___
<a id="elasticache.resources.cachecluster.properties-1.clustername.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11790)*





___
<a id="elasticache.resources.cachecluster.properties-1.clustername.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11791)*





___
<a id="elasticache.resources.cachecluster.properties-1.clustername.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11792)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.engine"></a>

###  Engine

** Engine**:  *`object`* 

*Defined in [spec/spec.ts:11794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11794)*




<a id="elasticache.resources.cachecluster.properties-1.engine.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engine"

*Defined in [spec/spec.ts:11795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11795)*





___
<a id="elasticache.resources.cachecluster.properties-1.engine.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11796)*





___
<a id="elasticache.resources.cachecluster.properties-1.engine.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11797)*





___
<a id="elasticache.resources.cachecluster.properties-1.engine.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11798)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.engineversion"></a>

###  EngineVersion

** EngineVersion**:  *`object`* 

*Defined in [spec/spec.ts:11800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11800)*




<a id="elasticache.resources.cachecluster.properties-1.engineversion.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-engineversion"

*Defined in [spec/spec.ts:11801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11801)*





___
<a id="elasticache.resources.cachecluster.properties-1.engineversion.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11802)*





___
<a id="elasticache.resources.cachecluster.properties-1.engineversion.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11803)*





___
<a id="elasticache.resources.cachecluster.properties-1.engineversion.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11804)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.notificationtopicarn"></a>

###  NotificationTopicArn

** NotificationTopicArn**:  *`object`* 

*Defined in [spec/spec.ts:11806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11806)*




<a id="elasticache.resources.cachecluster.properties-1.notificationtopicarn.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-notificationtopicarn"

*Defined in [spec/spec.ts:11807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11807)*





___
<a id="elasticache.resources.cachecluster.properties-1.notificationtopicarn.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11808)*





___
<a id="elasticache.resources.cachecluster.properties-1.notificationtopicarn.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11809)*





___
<a id="elasticache.resources.cachecluster.properties-1.notificationtopicarn.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11810)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.numcachenodes"></a>

###  NumCacheNodes

** NumCacheNodes**:  *`object`* 

*Defined in [spec/spec.ts:11812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11812)*




<a id="elasticache.resources.cachecluster.properties-1.numcachenodes.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-numcachenodes"

*Defined in [spec/spec.ts:11813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11813)*





___
<a id="elasticache.resources.cachecluster.properties-1.numcachenodes.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11814)*





___
<a id="elasticache.resources.cachecluster.properties-1.numcachenodes.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11815)*





___
<a id="elasticache.resources.cachecluster.properties-1.numcachenodes.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11816)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.port"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:11818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11818)*




<a id="elasticache.resources.cachecluster.properties-1.port.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-port"

*Defined in [spec/spec.ts:11819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11819)*





___
<a id="elasticache.resources.cachecluster.properties-1.port.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11820)*





___
<a id="elasticache.resources.cachecluster.properties-1.port.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11821)*





___
<a id="elasticache.resources.cachecluster.properties-1.port.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11822)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzone"></a>

###  PreferredAvailabilityZone

** PreferredAvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:11824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11824)*




<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzone.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzone"

*Defined in [spec/spec.ts:11825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11825)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzone.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11826)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzone.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11827)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzone.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:11828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11828)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzones"></a>

###  PreferredAvailabilityZones

** PreferredAvailabilityZones**:  *`object`* 

*Defined in [spec/spec.ts:11830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11830)*




<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzones.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredavailabilityzones"

*Defined in [spec/spec.ts:11831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11831)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzones.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11832)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzones.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11833)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzones.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11834)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzones.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11835)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredavailabilityzones.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:11836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11836)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.preferredmaintenancewindow"></a>

###  PreferredMaintenanceWindow

** PreferredMaintenanceWindow**:  *`object`* 

*Defined in [spec/spec.ts:11838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11838)*




<a id="elasticache.resources.cachecluster.properties-1.preferredmaintenancewindow.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-preferredmaintenancewindow"

*Defined in [spec/spec.ts:11839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11839)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredmaintenancewindow.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11840)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredmaintenancewindow.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11841)*





___
<a id="elasticache.resources.cachecluster.properties-1.preferredmaintenancewindow.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11842)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.snapshotarns"></a>

###  SnapshotArns

** SnapshotArns**:  *`object`* 

*Defined in [spec/spec.ts:11844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11844)*




<a id="elasticache.resources.cachecluster.properties-1.snapshotarns.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotarns"

*Defined in [spec/spec.ts:11845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11845)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotarns.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11846)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotarns.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11847)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotarns.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11848)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotarns.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11849)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotarns.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11850)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.snapshotname"></a>

###  SnapshotName

** SnapshotName**:  *`object`* 

*Defined in [spec/spec.ts:11852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11852)*




<a id="elasticache.resources.cachecluster.properties-1.snapshotname.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotname"

*Defined in [spec/spec.ts:11853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11853)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotname.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11854)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotname.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11855)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotname.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11856)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.snapshotretentionlimit"></a>

###  SnapshotRetentionLimit

** SnapshotRetentionLimit**:  *`object`* 

*Defined in [spec/spec.ts:11858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11858)*




<a id="elasticache.resources.cachecluster.properties-1.snapshotretentionlimit.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotretentionlimit"

*Defined in [spec/spec.ts:11859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11859)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotretentionlimit.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:11860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11860)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotretentionlimit.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11861)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotretentionlimit.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11862)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.snapshotwindow"></a>

###  SnapshotWindow

** SnapshotWindow**:  *`object`* 

*Defined in [spec/spec.ts:11864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11864)*




<a id="elasticache.resources.cachecluster.properties-1.snapshotwindow.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-snapshotwindow"

*Defined in [spec/spec.ts:11865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11865)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotwindow.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11866)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotwindow.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11867)*





___
<a id="elasticache.resources.cachecluster.properties-1.snapshotwindow.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11868)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:11870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11870)*




<a id="elasticache.resources.cachecluster.properties-1.tags.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-tags"

*Defined in [spec/spec.ts:11871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11871)*





___
<a id="elasticache.resources.cachecluster.properties-1.tags.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11872)*





___
<a id="elasticache.resources.cachecluster.properties-1.tags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:11873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11873)*





___
<a id="elasticache.resources.cachecluster.properties-1.tags.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11874)*





___
<a id="elasticache.resources.cachecluster.properties-1.tags.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11875)*





___
<a id="elasticache.resources.cachecluster.properties-1.tags.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11876)*





___

___
<a id="elasticache.resources.cachecluster.properties-1.vpcsecuritygroupids"></a>

###  VpcSecurityGroupIds

** VpcSecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:11878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11878)*




<a id="elasticache.resources.cachecluster.properties-1.vpcsecuritygroupids.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-cache-cluster.html#cfn-elasticache-cachecluster-vpcsecuritygroupids"

*Defined in [spec/spec.ts:11879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11879)*





___
<a id="elasticache.resources.cachecluster.properties-1.vpcsecuritygroupids.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11880)*





___
<a id="elasticache.resources.cachecluster.properties-1.vpcsecuritygroupids.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11881)*





___
<a id="elasticache.resources.cachecluster.properties-1.vpcsecuritygroupids.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11882)*





___
<a id="elasticache.resources.cachecluster.properties-1.vpcsecuritygroupids.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11883)*





___
<a id="elasticache.resources.cachecluster.properties-1.vpcsecuritygroupids.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11884)*





___

___

___

___
<a id="elasticache.resources.parametergroup"></a>

###  ParameterGroup

** ParameterGroup**:  *`object`* 

*Defined in [spec/spec.ts:11889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11889)*




<a id="elasticache.resources.parametergroup.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html"

*Defined in [spec/spec.ts:11890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11890)*





___
<a id="elasticache.resources.parametergroup.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElastiCache::ParameterGroup"

*Defined in [spec/spec.ts:11913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11913)*





___
<a id="elasticache.resources.parametergroup.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11891)*




<a id="elasticache.resources.parametergroup.properties-2.cacheparametergroupfamily"></a>

###  CacheParameterGroupFamily

** CacheParameterGroupFamily**:  *`object`* 

*Defined in [spec/spec.ts:11892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11892)*




<a id="elasticache.resources.parametergroup.properties-2.cacheparametergroupfamily.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-cacheparametergroupfamily"

*Defined in [spec/spec.ts:11893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11893)*





___
<a id="elasticache.resources.parametergroup.properties-2.cacheparametergroupfamily.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11894)*





___
<a id="elasticache.resources.parametergroup.properties-2.cacheparametergroupfamily.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11895)*





___
<a id="elasticache.resources.parametergroup.properties-2.cacheparametergroupfamily.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11896)*





___

___
<a id="elasticache.resources.parametergroup.properties-2.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:11898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11898)*




<a id="elasticache.resources.parametergroup.properties-2.description.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-description"

*Defined in [spec/spec.ts:11899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11899)*





___
<a id="elasticache.resources.parametergroup.properties-2.description.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11900)*





___
<a id="elasticache.resources.parametergroup.properties-2.description.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:11901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11901)*





___
<a id="elasticache.resources.parametergroup.properties-2.description.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11902)*





___

___
<a id="elasticache.resources.parametergroup.properties-2.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11904)*




<a id="elasticache.resources.parametergroup.properties-2.properties-3.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-parameter-group.html#cfn-elasticache-parametergroup-properties"

*Defined in [spec/spec.ts:11905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11905)*





___
<a id="elasticache.resources.parametergroup.properties-2.properties-3.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11906)*





___
<a id="elasticache.resources.parametergroup.properties-2.properties-3.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11907)*





___
<a id="elasticache.resources.parametergroup.properties-2.properties-3.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11908)*





___
<a id="elasticache.resources.parametergroup.properties-2.properties-3.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:11909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11909)*





___
<a id="elasticache.resources.parametergroup.properties-2.properties-3.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11910)*





___

___

___

___
<a id="elasticache.resources.replicationgroup"></a>

###  ReplicationGroup

** ReplicationGroup**:  *`object`* 

*Defined in [spec/spec.ts:11915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11915)*




<a id="elasticache.resources.replicationgroup.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html"

*Defined in [spec/spec.ts:11944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11944)*





___
<a id="elasticache.resources.replicationgroup.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElastiCache::ReplicationGroup"

*Defined in [spec/spec.ts:12133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12133)*





___
<a id="elasticache.resources.replicationgroup.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:11916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11916)*




<a id="elasticache.resources.replicationgroup.attributes-1.configurationendpoint_address-1"></a>

###  ConfigurationEndPoint.Address

** ConfigurationEndPoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:11917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11917)*




<a id="elasticache.resources.replicationgroup.attributes-1.configurationendpoint_address-1.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11918)*





___

___
<a id="elasticache.resources.replicationgroup.attributes-1.configurationendpoint_port-1"></a>

###  ConfigurationEndPoint.Port

** ConfigurationEndPoint.Port**:  *`object`* 

*Defined in [spec/spec.ts:11920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11920)*




<a id="elasticache.resources.replicationgroup.attributes-1.configurationendpoint_port-1.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11921)*





___

___
<a id="elasticache.resources.replicationgroup.attributes-1.primaryendpoint_address"></a>

###  PrimaryEndPoint.Address

** PrimaryEndPoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:11923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11923)*




<a id="elasticache.resources.replicationgroup.attributes-1.primaryendpoint_address.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11924)*





___

___
<a id="elasticache.resources.replicationgroup.attributes-1.primaryendpoint_port"></a>

###  PrimaryEndPoint.Port

** PrimaryEndPoint.Port**:  *`object`* 

*Defined in [spec/spec.ts:11926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11926)*




<a id="elasticache.resources.replicationgroup.attributes-1.primaryendpoint_port.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11927)*





___

___
<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_addresses"></a>

###  ReadEndPoint.Addresses

** ReadEndPoint.Addresses**:  *`object`* 

*Defined in [spec/spec.ts:11929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11929)*




<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_addresses.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11930)*





___

___
<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_addresses_list"></a>

###  ReadEndPoint.Addresses.List

** ReadEndPoint.Addresses.List**:  *`object`* 

*Defined in [spec/spec.ts:11932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11932)*




<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_addresses_list.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11933)*





___
<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_addresses_list.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11934)*





___

___
<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_ports"></a>

###  ReadEndPoint.Ports

** ReadEndPoint.Ports**:  *`object`* 

*Defined in [spec/spec.ts:11936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11936)*




<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_ports.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11937)*





___

___
<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_ports_list"></a>

###  ReadEndPoint.Ports.List

** ReadEndPoint.Ports.List**:  *`object`* 

*Defined in [spec/spec.ts:11939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11939)*




<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_ports_list.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11940)*





___
<a id="elasticache.resources.replicationgroup.attributes-1.readendpoint_ports_list.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11941)*





___

___

___
<a id="elasticache.resources.replicationgroup.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:11945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11945)*




<a id="elasticache.resources.replicationgroup.properties-4.atrestencryptionenabled"></a>

###  AtRestEncryptionEnabled

** AtRestEncryptionEnabled**:  *`object`* 

*Defined in [spec/spec.ts:11946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11946)*




<a id="elasticache.resources.replicationgroup.properties-4.atrestencryptionenabled.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-atrestencryptionenabled"

*Defined in [spec/spec.ts:11947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11947)*





___
<a id="elasticache.resources.replicationgroup.properties-4.atrestencryptionenabled.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:11948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11948)*





___
<a id="elasticache.resources.replicationgroup.properties-4.atrestencryptionenabled.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11949)*





___
<a id="elasticache.resources.replicationgroup.properties-4.atrestencryptionenabled.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11950)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.authtoken"></a>

###  AuthToken

** AuthToken**:  *`object`* 

*Defined in [spec/spec.ts:11952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11952)*




<a id="elasticache.resources.replicationgroup.properties-4.authtoken.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-authtoken"

*Defined in [spec/spec.ts:11953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11953)*





___
<a id="elasticache.resources.replicationgroup.properties-4.authtoken.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11954)*





___
<a id="elasticache.resources.replicationgroup.properties-4.authtoken.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11955)*





___
<a id="elasticache.resources.replicationgroup.properties-4.authtoken.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11956)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.autominorversionupgrade-1"></a>

###  AutoMinorVersionUpgrade

** AutoMinorVersionUpgrade**:  *`object`* 

*Defined in [spec/spec.ts:11958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11958)*




<a id="elasticache.resources.replicationgroup.properties-4.autominorversionupgrade-1.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-autominorversionupgrade"

*Defined in [spec/spec.ts:11959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11959)*





___
<a id="elasticache.resources.replicationgroup.properties-4.autominorversionupgrade-1.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:11960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11960)*





___
<a id="elasticache.resources.replicationgroup.properties-4.autominorversionupgrade-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11961)*





___
<a id="elasticache.resources.replicationgroup.properties-4.autominorversionupgrade-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11962)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.automaticfailoverenabled"></a>

###  AutomaticFailoverEnabled

** AutomaticFailoverEnabled**:  *`object`* 

*Defined in [spec/spec.ts:11964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11964)*




<a id="elasticache.resources.replicationgroup.properties-4.automaticfailoverenabled.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-automaticfailoverenabled"

*Defined in [spec/spec.ts:11965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11965)*





___
<a id="elasticache.resources.replicationgroup.properties-4.automaticfailoverenabled.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:11966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11966)*





___
<a id="elasticache.resources.replicationgroup.properties-4.automaticfailoverenabled.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11967)*





___
<a id="elasticache.resources.replicationgroup.properties-4.automaticfailoverenabled.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11968)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.cachenodetype-1"></a>

###  CacheNodeType

** CacheNodeType**:  *`object`* 

*Defined in [spec/spec.ts:11970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11970)*




<a id="elasticache.resources.replicationgroup.properties-4.cachenodetype-1.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachenodetype"

*Defined in [spec/spec.ts:11971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11971)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachenodetype-1.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11972)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachenodetype-1.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11973)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachenodetype-1.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11974)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.cacheparametergroupname-1"></a>

###  CacheParameterGroupName

** CacheParameterGroupName**:  *`object`* 

*Defined in [spec/spec.ts:11976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11976)*




<a id="elasticache.resources.replicationgroup.properties-4.cacheparametergroupname-1.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cacheparametergroupname"

*Defined in [spec/spec.ts:11977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11977)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cacheparametergroupname-1.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11978)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cacheparametergroupname-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11979)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cacheparametergroupname-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11980)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.cachesecuritygroupnames-1"></a>

###  CacheSecurityGroupNames

** CacheSecurityGroupNames**:  *`object`* 

*Defined in [spec/spec.ts:11982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11982)*




<a id="elasticache.resources.replicationgroup.properties-4.cachesecuritygroupnames-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesecuritygroupnames"

*Defined in [spec/spec.ts:11983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11983)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesecuritygroupnames-1.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11984)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesecuritygroupnames-1.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11985)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesecuritygroupnames-1.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11986)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesecuritygroupnames-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:11987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11987)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesecuritygroupnames-1.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:11988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11988)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.cachesubnetgroupname-1"></a>

###  CacheSubnetGroupName

** CacheSubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:11990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11990)*




<a id="elasticache.resources.replicationgroup.properties-4.cachesubnetgroupname-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-cachesubnetgroupname"

*Defined in [spec/spec.ts:11991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11991)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesubnetgroupname-1.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11992)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesubnetgroupname-1.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11993)*





___
<a id="elasticache.resources.replicationgroup.properties-4.cachesubnetgroupname-1.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:11994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11994)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.engine-1"></a>

###  Engine

** Engine**:  *`object`* 

*Defined in [spec/spec.ts:11996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11996)*




<a id="elasticache.resources.replicationgroup.properties-4.engine-1.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engine"

*Defined in [spec/spec.ts:11997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11997)*





___
<a id="elasticache.resources.replicationgroup.properties-4.engine-1.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:11998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11998)*





___
<a id="elasticache.resources.replicationgroup.properties-4.engine-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:11999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L11999)*





___
<a id="elasticache.resources.replicationgroup.properties-4.engine-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12000)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.engineversion-1"></a>

###  EngineVersion

** EngineVersion**:  *`object`* 

*Defined in [spec/spec.ts:12002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12002)*




<a id="elasticache.resources.replicationgroup.properties-4.engineversion-1.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-engineversion"

*Defined in [spec/spec.ts:12003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12003)*





___
<a id="elasticache.resources.replicationgroup.properties-4.engineversion-1.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12004)*





___
<a id="elasticache.resources.replicationgroup.properties-4.engineversion-1.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12005)*





___
<a id="elasticache.resources.replicationgroup.properties-4.engineversion-1.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12006)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.nodegroupconfiguration-1"></a>

###  NodeGroupConfiguration

** NodeGroupConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:12008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12008)*




<a id="elasticache.resources.replicationgroup.properties-4.nodegroupconfiguration-1.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-nodegroupconfiguration"

*Defined in [spec/spec.ts:12009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12009)*





___
<a id="elasticache.resources.replicationgroup.properties-4.nodegroupconfiguration-1.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12010)*





___
<a id="elasticache.resources.replicationgroup.properties-4.nodegroupconfiguration-1.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "NodeGroupConfiguration"

*Defined in [spec/spec.ts:12011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12011)*





___
<a id="elasticache.resources.replicationgroup.properties-4.nodegroupconfiguration-1.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12012)*





___
<a id="elasticache.resources.replicationgroup.properties-4.nodegroupconfiguration-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12013)*





___
<a id="elasticache.resources.replicationgroup.properties-4.nodegroupconfiguration-1.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12014)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.notificationtopicarn-1"></a>

###  NotificationTopicArn

** NotificationTopicArn**:  *`object`* 

*Defined in [spec/spec.ts:12016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12016)*




<a id="elasticache.resources.replicationgroup.properties-4.notificationtopicarn-1.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-notificationtopicarn"

*Defined in [spec/spec.ts:12017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12017)*





___
<a id="elasticache.resources.replicationgroup.properties-4.notificationtopicarn-1.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12018)*





___
<a id="elasticache.resources.replicationgroup.properties-4.notificationtopicarn-1.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12019)*





___
<a id="elasticache.resources.replicationgroup.properties-4.notificationtopicarn-1.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12020)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.numcacheclusters"></a>

###  NumCacheClusters

** NumCacheClusters**:  *`object`* 

*Defined in [spec/spec.ts:12022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12022)*




<a id="elasticache.resources.replicationgroup.properties-4.numcacheclusters.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numcacheclusters"

*Defined in [spec/spec.ts:12023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12023)*





___
<a id="elasticache.resources.replicationgroup.properties-4.numcacheclusters.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12024)*





___
<a id="elasticache.resources.replicationgroup.properties-4.numcacheclusters.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12025)*





___
<a id="elasticache.resources.replicationgroup.properties-4.numcacheclusters.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12026)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.numnodegroups"></a>

###  NumNodeGroups

** NumNodeGroups**:  *`object`* 

*Defined in [spec/spec.ts:12028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12028)*




<a id="elasticache.resources.replicationgroup.properties-4.numnodegroups.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-numnodegroups"

*Defined in [spec/spec.ts:12029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12029)*





___
<a id="elasticache.resources.replicationgroup.properties-4.numnodegroups.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12030)*





___
<a id="elasticache.resources.replicationgroup.properties-4.numnodegroups.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12031)*





___
<a id="elasticache.resources.replicationgroup.properties-4.numnodegroups.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12032)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.port-1"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:12034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12034)*




<a id="elasticache.resources.replicationgroup.properties-4.port-1.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-port"

*Defined in [spec/spec.ts:12035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12035)*





___
<a id="elasticache.resources.replicationgroup.properties-4.port-1.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12036)*





___
<a id="elasticache.resources.replicationgroup.properties-4.port-1.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12037)*





___
<a id="elasticache.resources.replicationgroup.properties-4.port-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12038)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.preferredcacheclusterazs"></a>

###  PreferredCacheClusterAZs

** PreferredCacheClusterAZs**:  *`object`* 

*Defined in [spec/spec.ts:12040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12040)*




<a id="elasticache.resources.replicationgroup.properties-4.preferredcacheclusterazs.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredcacheclusterazs"

*Defined in [spec/spec.ts:12041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12041)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredcacheclusterazs.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12042)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredcacheclusterazs.primitiveitemtype-9"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12043)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredcacheclusterazs.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12044)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredcacheclusterazs.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12045)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredcacheclusterazs.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12046)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.preferredmaintenancewindow-1"></a>

###  PreferredMaintenanceWindow

** PreferredMaintenanceWindow**:  *`object`* 

*Defined in [spec/spec.ts:12048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12048)*




<a id="elasticache.resources.replicationgroup.properties-4.preferredmaintenancewindow-1.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-preferredmaintenancewindow"

*Defined in [spec/spec.ts:12049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12049)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredmaintenancewindow-1.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12050)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredmaintenancewindow-1.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12051)*





___
<a id="elasticache.resources.replicationgroup.properties-4.preferredmaintenancewindow-1.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12052)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.primaryclusterid"></a>

###  PrimaryClusterId

** PrimaryClusterId**:  *`object`* 

*Defined in [spec/spec.ts:12054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12054)*




<a id="elasticache.resources.replicationgroup.properties-4.primaryclusterid.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-primaryclusterid"

*Defined in [spec/spec.ts:12055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12055)*





___
<a id="elasticache.resources.replicationgroup.properties-4.primaryclusterid.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12056)*





___
<a id="elasticache.resources.replicationgroup.properties-4.primaryclusterid.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12057)*





___
<a id="elasticache.resources.replicationgroup.properties-4.primaryclusterid.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12058)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.replicaspernodegroup"></a>

###  ReplicasPerNodeGroup

** ReplicasPerNodeGroup**:  *`object`* 

*Defined in [spec/spec.ts:12060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12060)*




<a id="elasticache.resources.replicationgroup.properties-4.replicaspernodegroup.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicaspernodegroup"

*Defined in [spec/spec.ts:12061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12061)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicaspernodegroup.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12062)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicaspernodegroup.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12063)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicaspernodegroup.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12064)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupdescription"></a>

###  ReplicationGroupDescription

** ReplicationGroupDescription**:  *`object`* 

*Defined in [spec/spec.ts:12066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12066)*




<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupdescription.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupdescription"

*Defined in [spec/spec.ts:12067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12067)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupdescription.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12068)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupdescription.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12069)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupdescription.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12070)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupid"></a>

###  ReplicationGroupId

** ReplicationGroupId**:  *`object`* 

*Defined in [spec/spec.ts:12072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12072)*




<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupid.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-replicationgroupid"

*Defined in [spec/spec.ts:12073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12073)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupid.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12074)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupid.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12075)*





___
<a id="elasticache.resources.replicationgroup.properties-4.replicationgroupid.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12076)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.securitygroupids"></a>

###  SecurityGroupIds

** SecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:12078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12078)*




<a id="elasticache.resources.replicationgroup.properties-4.securitygroupids.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-securitygroupids"

*Defined in [spec/spec.ts:12079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12079)*





___
<a id="elasticache.resources.replicationgroup.properties-4.securitygroupids.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12080)*





___
<a id="elasticache.resources.replicationgroup.properties-4.securitygroupids.primitiveitemtype-10"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12081)*





___
<a id="elasticache.resources.replicationgroup.properties-4.securitygroupids.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12082)*





___
<a id="elasticache.resources.replicationgroup.properties-4.securitygroupids.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12083)*





___
<a id="elasticache.resources.replicationgroup.properties-4.securitygroupids.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12084)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotarns-1"></a>

###  SnapshotArns

** SnapshotArns**:  *`object`* 

*Defined in [spec/spec.ts:12086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12086)*




<a id="elasticache.resources.replicationgroup.properties-4.snapshotarns-1.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotarns"

*Defined in [spec/spec.ts:12087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12087)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotarns-1.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12088)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotarns-1.primitiveitemtype-11"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12089)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotarns-1.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12090)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotarns-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12091)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotarns-1.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12092)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotname-1"></a>

###  SnapshotName

** SnapshotName**:  *`object`* 

*Defined in [spec/spec.ts:12094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12094)*




<a id="elasticache.resources.replicationgroup.properties-4.snapshotname-1.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotname"

*Defined in [spec/spec.ts:12095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12095)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotname-1.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12096)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotname-1.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12097)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotname-1.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12098)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotretentionlimit-1"></a>

###  SnapshotRetentionLimit

** SnapshotRetentionLimit**:  *`object`* 

*Defined in [spec/spec.ts:12100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12100)*




<a id="elasticache.resources.replicationgroup.properties-4.snapshotretentionlimit-1.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotretentionlimit"

*Defined in [spec/spec.ts:12101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12101)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotretentionlimit-1.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12102)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotretentionlimit-1.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12103)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotretentionlimit-1.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12104)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotwindow-1"></a>

###  SnapshotWindow

** SnapshotWindow**:  *`object`* 

*Defined in [spec/spec.ts:12106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12106)*




<a id="elasticache.resources.replicationgroup.properties-4.snapshotwindow-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshotwindow"

*Defined in [spec/spec.ts:12107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12107)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotwindow-1.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12108)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotwindow-1.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12109)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshotwindow-1.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12110)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.snapshottingclusterid"></a>

###  SnapshottingClusterId

** SnapshottingClusterId**:  *`object`* 

*Defined in [spec/spec.ts:12112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12112)*




<a id="elasticache.resources.replicationgroup.properties-4.snapshottingclusterid.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-snapshottingclusterid"

*Defined in [spec/spec.ts:12113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12113)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshottingclusterid.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12114)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshottingclusterid.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12115)*





___
<a id="elasticache.resources.replicationgroup.properties-4.snapshottingclusterid.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12116)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.tags-1"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:12118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12118)*




<a id="elasticache.resources.replicationgroup.properties-4.tags-1.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-tags"

*Defined in [spec/spec.ts:12119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12119)*





___
<a id="elasticache.resources.replicationgroup.properties-4.tags-1.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12120)*





___
<a id="elasticache.resources.replicationgroup.properties-4.tags-1.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:12121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12121)*





___
<a id="elasticache.resources.replicationgroup.properties-4.tags-1.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12122)*





___
<a id="elasticache.resources.replicationgroup.properties-4.tags-1.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12123)*





___
<a id="elasticache.resources.replicationgroup.properties-4.tags-1.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12124)*





___

___
<a id="elasticache.resources.replicationgroup.properties-4.transitencryptionenabled"></a>

###  TransitEncryptionEnabled

** TransitEncryptionEnabled**:  *`object`* 

*Defined in [spec/spec.ts:12126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12126)*




<a id="elasticache.resources.replicationgroup.properties-4.transitencryptionenabled.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticache-replicationgroup.html#cfn-elasticache-replicationgroup-transitencryptionenabled"

*Defined in [spec/spec.ts:12127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12127)*





___
<a id="elasticache.resources.replicationgroup.properties-4.transitencryptionenabled.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12128)*





___
<a id="elasticache.resources.replicationgroup.properties-4.transitencryptionenabled.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12129)*





___
<a id="elasticache.resources.replicationgroup.properties-4.transitencryptionenabled.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12130)*





___

___

___

___
<a id="elasticache.resources.securitygroup"></a>

###  SecurityGroup

** SecurityGroup**:  *`object`* 

*Defined in [spec/spec.ts:12135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12135)*




<a id="elasticache.resources.securitygroup.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html"

*Defined in [spec/spec.ts:12136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12136)*





___
<a id="elasticache.resources.securitygroup.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElastiCache::SecurityGroup"

*Defined in [spec/spec.ts:12145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12145)*





___
<a id="elasticache.resources.securitygroup.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12137)*




<a id="elasticache.resources.securitygroup.properties-5.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:12138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12138)*




<a id="elasticache.resources.securitygroup.properties-5.description-1.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group.html#cfn-elasticache-securitygroup-description"

*Defined in [spec/spec.ts:12139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12139)*





___
<a id="elasticache.resources.securitygroup.properties-5.description-1.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12140)*





___
<a id="elasticache.resources.securitygroup.properties-5.description-1.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12141)*





___
<a id="elasticache.resources.securitygroup.properties-5.description-1.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12142)*





___

___

___

___
<a id="elasticache.resources.securitygroupingress"></a>

###  SecurityGroupIngress

** SecurityGroupIngress**:  *`object`* 

*Defined in [spec/spec.ts:12147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12147)*




<a id="elasticache.resources.securitygroupingress.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html"

*Defined in [spec/spec.ts:12148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12148)*





___
<a id="elasticache.resources.securitygroupingress.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElastiCache::SecurityGroupIngress"

*Defined in [spec/spec.ts:12169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12169)*





___
<a id="elasticache.resources.securitygroupingress.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12149)*




<a id="elasticache.resources.securitygroupingress.properties-6.cachesecuritygroupname"></a>

###  CacheSecurityGroupName

** CacheSecurityGroupName**:  *`object`* 

*Defined in [spec/spec.ts:12150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12150)*




<a id="elasticache.resources.securitygroupingress.properties-6.cachesecuritygroupname.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-cachesecuritygroupname"

*Defined in [spec/spec.ts:12151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12151)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.cachesecuritygroupname.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12152)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.cachesecuritygroupname.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12153)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.cachesecuritygroupname.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12154)*





___

___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupname"></a>

###  EC2SecurityGroupName

** EC2SecurityGroupName**:  *`object`* 

*Defined in [spec/spec.ts:12156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12156)*




<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupname.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupname"

*Defined in [spec/spec.ts:12157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12157)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupname.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12158)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupname.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12159)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupname.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12160)*





___

___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupownerid"></a>

###  EC2SecurityGroupOwnerId

** EC2SecurityGroupOwnerId**:  *`object`* 

*Defined in [spec/spec.ts:12162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12162)*




<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupownerid.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-security-group-ingress.html#cfn-elasticache-securitygroupingress-ec2securitygroupownerid"

*Defined in [spec/spec.ts:12163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12163)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupownerid.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12164)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupownerid.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12165)*





___
<a id="elasticache.resources.securitygroupingress.properties-6.ec2securitygroupownerid.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12166)*





___

___

___

___
<a id="elasticache.resources.subnetgroup"></a>

###  SubnetGroup

** SubnetGroup**:  *`object`* 

*Defined in [spec/spec.ts:12171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12171)*




<a id="elasticache.resources.subnetgroup.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html"

*Defined in [spec/spec.ts:12172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12172)*





___
<a id="elasticache.resources.subnetgroup.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElastiCache::SubnetGroup"

*Defined in [spec/spec.ts:12195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12195)*





___
<a id="elasticache.resources.subnetgroup.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12173)*




<a id="elasticache.resources.subnetgroup.properties-7.cachesubnetgroupname-2"></a>

###  CacheSubnetGroupName

** CacheSubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:12174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12174)*




<a id="elasticache.resources.subnetgroup.properties-7.cachesubnetgroupname-2.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-cachesubnetgroupname"

*Defined in [spec/spec.ts:12175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12175)*





___
<a id="elasticache.resources.subnetgroup.properties-7.cachesubnetgroupname-2.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12176)*





___
<a id="elasticache.resources.subnetgroup.properties-7.cachesubnetgroupname-2.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12177)*





___
<a id="elasticache.resources.subnetgroup.properties-7.cachesubnetgroupname-2.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12178)*





___

___
<a id="elasticache.resources.subnetgroup.properties-7.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:12180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12180)*




<a id="elasticache.resources.subnetgroup.properties-7.description-2.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-description"

*Defined in [spec/spec.ts:12181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12181)*





___
<a id="elasticache.resources.subnetgroup.properties-7.description-2.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12182)*





___
<a id="elasticache.resources.subnetgroup.properties-7.description-2.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12183)*





___
<a id="elasticache.resources.subnetgroup.properties-7.description-2.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12184)*





___

___
<a id="elasticache.resources.subnetgroup.properties-7.subnetids"></a>

###  SubnetIds

** SubnetIds**:  *`object`* 

*Defined in [spec/spec.ts:12186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12186)*




<a id="elasticache.resources.subnetgroup.properties-7.subnetids.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-subnetgroup.html#cfn-elasticache-subnetgroup-subnetids"

*Defined in [spec/spec.ts:12187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12187)*





___
<a id="elasticache.resources.subnetgroup.properties-7.subnetids.duplicatesallowed-13"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12188)*





___
<a id="elasticache.resources.subnetgroup.properties-7.subnetids.primitiveitemtype-12"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12189)*





___
<a id="elasticache.resources.subnetgroup.properties-7.subnetids.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12190)*





___
<a id="elasticache.resources.subnetgroup.properties-7.subnetids.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12191)*





___
<a id="elasticache.resources.subnetgroup.properties-7.subnetids.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12192)*





___

___

___

___

___

<a id="elasticbeanstalk"></a>

## Object literal: ElasticBeanstalk


<a id="elasticbeanstalk.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:12415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12415)*




<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig"></a>

###  ApplicationResourceLifecycleConfig

** ApplicationResourceLifecycleConfig**:  *`object`* 

*Defined in [spec/spec.ts:12416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12416)*




<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html"

*Defined in [spec/spec.ts:12417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12417)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Application.ApplicationResourceLifecycleConfig"

*Defined in [spec/spec.ts:12432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12432)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12418)*




<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.servicerole"></a>

###  ServiceRole

** ServiceRole**:  *`object`* 

*Defined in [spec/spec.ts:12419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12419)*




<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.servicerole.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-servicerole"

*Defined in [spec/spec.ts:12420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12420)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.servicerole.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12421)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.servicerole.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12422)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.servicerole.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12423)*





___

___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.versionlifecycleconfig"></a>

###  VersionLifecycleConfig

** VersionLifecycleConfig**:  *`object`* 

*Defined in [spec/spec.ts:12425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12425)*




<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.versionlifecycleconfig.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationresourcelifecycleconfig.html#cfn-elasticbeanstalk-application-applicationresourcelifecycleconfig-versionlifecycleconfig"

*Defined in [spec/spec.ts:12426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12426)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.versionlifecycleconfig.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12427)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.versionlifecycleconfig.type"></a>

###  Type

**●  Type**:  *`string`*  = "ApplicationVersionLifecycleConfig"

*Defined in [spec/spec.ts:12428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12428)*





___
<a id="elasticbeanstalk.models.applicationresourcelifecycleconfig.properties.versionlifecycleconfig.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12429)*





___

___

___

___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig"></a>

###  ApplicationVersionLifecycleConfig

** ApplicationVersionLifecycleConfig**:  *`object`* 

*Defined in [spec/spec.ts:12434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12434)*




<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationversionlifecycleconfig.html"

*Defined in [spec/spec.ts:12435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12435)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Application.ApplicationVersionLifecycleConfig"

*Defined in [spec/spec.ts:12450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12450)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12436)*




<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxagerule"></a>

###  MaxAgeRule

** MaxAgeRule**:  *`object`* 

*Defined in [spec/spec.ts:12437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12437)*




<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxagerule.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationversionlifecycleconfig.html#cfn-elasticbeanstalk-application-applicationversionlifecycleconfig-maxagerule"

*Defined in [spec/spec.ts:12438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12438)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxagerule.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12439)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxagerule.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "MaxAgeRule"

*Defined in [spec/spec.ts:12440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12440)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxagerule.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12441)*





___

___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxcountrule"></a>

###  MaxCountRule

** MaxCountRule**:  *`object`* 

*Defined in [spec/spec.ts:12443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12443)*




<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxcountrule.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-applicationversionlifecycleconfig.html#cfn-elasticbeanstalk-application-applicationversionlifecycleconfig-maxcountrule"

*Defined in [spec/spec.ts:12444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12444)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxcountrule.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12445)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxcountrule.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "MaxCountRule"

*Defined in [spec/spec.ts:12446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12446)*





___
<a id="elasticbeanstalk.models.applicationversionlifecycleconfig.properties-1.maxcountrule.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12447)*





___

___

___

___
<a id="elasticbeanstalk.models.configurationoptionsetting"></a>

###  ConfigurationOptionSetting

** ConfigurationOptionSetting**:  *`object`* 

*Defined in [spec/spec.ts:12518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12518)*




<a id="elasticbeanstalk.models.configurationoptionsetting.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-configurationoptionsetting.html"

*Defined in [spec/spec.ts:12519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12519)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::ConfigurationTemplate.ConfigurationOptionSetting"

*Defined in [spec/spec.ts:12546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12546)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12520)*




<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.namespace"></a>

###  Namespace

** Namespace**:  *`object`* 

*Defined in [spec/spec.ts:12521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12521)*




<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.namespace.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-configurationoptionsetting.html#cfn-elasticbeanstalk-configurationtemplate-configurationoptionsetting-namespace"

*Defined in [spec/spec.ts:12522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12522)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.namespace.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12523)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.namespace.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12524)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.namespace.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12525)*





___

___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.optionname"></a>

###  OptionName

** OptionName**:  *`object`* 

*Defined in [spec/spec.ts:12527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12527)*




<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.optionname.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-configurationoptionsetting.html#cfn-elasticbeanstalk-configurationtemplate-configurationoptionsetting-optionname"

*Defined in [spec/spec.ts:12528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12528)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.optionname.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12529)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.optionname.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12530)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.optionname.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12531)*





___

___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.resourcename"></a>

###  ResourceName

** ResourceName**:  *`object`* 

*Defined in [spec/spec.ts:12533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12533)*




<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.resourcename.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-configurationoptionsetting.html#cfn-elasticbeanstalk-configurationtemplate-configurationoptionsetting-resourcename"

*Defined in [spec/spec.ts:12534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12534)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.resourcename.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12535)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.resourcename.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12536)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.resourcename.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12537)*





___

___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:12539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12539)*




<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.value.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-configurationoptionsetting.html#cfn-elasticbeanstalk-configurationtemplate-configurationoptionsetting-value"

*Defined in [spec/spec.ts:12540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12540)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.value.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12541)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.value.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12542)*





___
<a id="elasticbeanstalk.models.configurationoptionsetting.properties-2.value.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12543)*





___

___

___

___
<a id="elasticbeanstalk.models.maxagerule-1"></a>

###  MaxAgeRule

** MaxAgeRule**:  *`object`* 

*Defined in [spec/spec.ts:12452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12452)*




<a id="elasticbeanstalk.models.maxagerule-1.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html"

*Defined in [spec/spec.ts:12453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12453)*





___
<a id="elasticbeanstalk.models.maxagerule-1.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Application.MaxAgeRule"

*Defined in [spec/spec.ts:12474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12474)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12454)*




<a id="elasticbeanstalk.models.maxagerule-1.properties-3.deletesourcefroms3"></a>

###  DeleteSourceFromS3

** DeleteSourceFromS3**:  *`object`* 

*Defined in [spec/spec.ts:12455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12455)*




<a id="elasticbeanstalk.models.maxagerule-1.properties-3.deletesourcefroms3.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-deletesourcefroms3"

*Defined in [spec/spec.ts:12456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12456)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.deletesourcefroms3.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12457)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.deletesourcefroms3.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12458)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.deletesourcefroms3.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12459)*





___

___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:12461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12461)*




<a id="elasticbeanstalk.models.maxagerule-1.properties-3.enabled.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-enabled"

*Defined in [spec/spec.ts:12462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12462)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.enabled.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12463)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.enabled.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12464)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.enabled.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12465)*





___

___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.maxageindays"></a>

###  MaxAgeInDays

** MaxAgeInDays**:  *`object`* 

*Defined in [spec/spec.ts:12467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12467)*




<a id="elasticbeanstalk.models.maxagerule-1.properties-3.maxageindays.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxagerule.html#cfn-elasticbeanstalk-application-maxagerule-maxageindays"

*Defined in [spec/spec.ts:12468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12468)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.maxageindays.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12469)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.maxageindays.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12470)*





___
<a id="elasticbeanstalk.models.maxagerule-1.properties-3.maxageindays.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12471)*





___

___

___

___
<a id="elasticbeanstalk.models.maxcountrule-1"></a>

###  MaxCountRule

** MaxCountRule**:  *`object`* 

*Defined in [spec/spec.ts:12476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12476)*




<a id="elasticbeanstalk.models.maxcountrule-1.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html"

*Defined in [spec/spec.ts:12477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12477)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Application.MaxCountRule"

*Defined in [spec/spec.ts:12498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12498)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12478)*




<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.deletesourcefroms3-1"></a>

###  DeleteSourceFromS3

** DeleteSourceFromS3**:  *`object`* 

*Defined in [spec/spec.ts:12479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12479)*




<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.deletesourcefroms3-1.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-deletesourcefroms3"

*Defined in [spec/spec.ts:12480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12480)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.deletesourcefroms3-1.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12481)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.deletesourcefroms3-1.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12482)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.deletesourcefroms3-1.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12483)*





___

___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.enabled-1"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:12485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12485)*




<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.enabled-1.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-enabled"

*Defined in [spec/spec.ts:12486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12486)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.enabled-1.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12487)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.enabled-1.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12488)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.enabled-1.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12489)*





___

___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.maxcount"></a>

###  MaxCount

** MaxCount**:  *`object`* 

*Defined in [spec/spec.ts:12491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12491)*




<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.maxcount.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-application-maxcountrule.html#cfn-elasticbeanstalk-application-maxcountrule-maxcount"

*Defined in [spec/spec.ts:12492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12492)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.maxcount.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12493)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.maxcount.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12494)*





___
<a id="elasticbeanstalk.models.maxcountrule-1.properties-4.maxcount.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12495)*





___

___

___

___
<a id="elasticbeanstalk.models.optionsetting"></a>

###  OptionSetting

** OptionSetting**:  *`object`* 

*Defined in [spec/spec.ts:12566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12566)*




<a id="elasticbeanstalk.models.optionsetting.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-option-settings.html"

*Defined in [spec/spec.ts:12567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12567)*





___
<a id="elasticbeanstalk.models.optionsetting.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Environment.OptionSetting"

*Defined in [spec/spec.ts:12594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12594)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12568)*




<a id="elasticbeanstalk.models.optionsetting.properties-5.namespace-1"></a>

###  Namespace

** Namespace**:  *`object`* 

*Defined in [spec/spec.ts:12569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12569)*




<a id="elasticbeanstalk.models.optionsetting.properties-5.namespace-1.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-option-settings.html#cfn-beanstalk-optionsettings-namespace"

*Defined in [spec/spec.ts:12570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12570)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.namespace-1.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12571)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.namespace-1.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12572)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.namespace-1.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12573)*





___

___
<a id="elasticbeanstalk.models.optionsetting.properties-5.optionname-1"></a>

###  OptionName

** OptionName**:  *`object`* 

*Defined in [spec/spec.ts:12575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12575)*




<a id="elasticbeanstalk.models.optionsetting.properties-5.optionname-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-option-settings.html#cfn-beanstalk-optionsettings-optionname"

*Defined in [spec/spec.ts:12576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12576)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.optionname-1.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12577)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.optionname-1.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12578)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.optionname-1.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12579)*





___

___
<a id="elasticbeanstalk.models.optionsetting.properties-5.resourcename-1"></a>

###  ResourceName

** ResourceName**:  *`object`* 

*Defined in [spec/spec.ts:12581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12581)*




<a id="elasticbeanstalk.models.optionsetting.properties-5.resourcename-1.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-option-settings.html#cfn-elasticbeanstalk-environment-optionsetting-resourcename"

*Defined in [spec/spec.ts:12582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12582)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.resourcename-1.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12583)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.resourcename-1.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12584)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.resourcename-1.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12585)*





___

___
<a id="elasticbeanstalk.models.optionsetting.properties-5.value-1"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:12587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12587)*




<a id="elasticbeanstalk.models.optionsetting.properties-5.value-1.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-option-settings.html#cfn-beanstalk-optionsettings-value"

*Defined in [spec/spec.ts:12588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12588)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.value-1.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12589)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.value-1.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12590)*





___
<a id="elasticbeanstalk.models.optionsetting.properties-5.value-1.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12591)*





___

___

___

___
<a id="elasticbeanstalk.models.sourcebundle"></a>

###  SourceBundle

** SourceBundle**:  *`object`* 

*Defined in [spec/spec.ts:12500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12500)*




<a id="elasticbeanstalk.models.sourcebundle.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html"

*Defined in [spec/spec.ts:12501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12501)*





___
<a id="elasticbeanstalk.models.sourcebundle.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::ApplicationVersion.SourceBundle"

*Defined in [spec/spec.ts:12516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12516)*





___
<a id="elasticbeanstalk.models.sourcebundle.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12502)*




<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3bucket"></a>

###  S3Bucket

** S3Bucket**:  *`object`* 

*Defined in [spec/spec.ts:12503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12503)*




<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3bucket.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3bucket"

*Defined in [spec/spec.ts:12504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12504)*





___
<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3bucket.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12505)*





___
<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3bucket.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12506)*





___
<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3bucket.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12507)*





___

___
<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3key"></a>

###  S3Key

** S3Key**:  *`object`* 

*Defined in [spec/spec.ts:12509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12509)*




<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3key.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-sourcebundle.html#cfn-beanstalk-sourcebundle-s3key"

*Defined in [spec/spec.ts:12510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12510)*





___
<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3key.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12511)*





___
<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3key.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12512)*





___
<a id="elasticbeanstalk.models.sourcebundle.properties-6.s3key.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12513)*





___

___

___

___
<a id="elasticbeanstalk.models.sourceconfiguration"></a>

###  SourceConfiguration

** SourceConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:12548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12548)*




<a id="elasticbeanstalk.models.sourceconfiguration.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html"

*Defined in [spec/spec.ts:12549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12549)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::ConfigurationTemplate.SourceConfiguration"

*Defined in [spec/spec.ts:12564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12564)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12550)*




<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.applicationname"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:12551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12551)*




<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.applicationname.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-applicationname"

*Defined in [spec/spec.ts:12552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12552)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.applicationname.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12553)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.applicationname.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12554)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.applicationname.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12555)*





___

___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.templatename"></a>

###  TemplateName

** TemplateName**:  *`object`* 

*Defined in [spec/spec.ts:12557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12557)*




<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.templatename.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticbeanstalk-configurationtemplate-sourceconfiguration.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration-templatename"

*Defined in [spec/spec.ts:12558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12558)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.templatename.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12559)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.templatename.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12560)*





___
<a id="elasticbeanstalk.models.sourceconfiguration.properties-7.templatename.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12561)*





___

___

___

___
<a id="elasticbeanstalk.models.tier"></a>

###  Tier

** Tier**:  *`object`* 

*Defined in [spec/spec.ts:12596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12596)*




<a id="elasticbeanstalk.models.tier.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html"

*Defined in [spec/spec.ts:12597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12597)*





___
<a id="elasticbeanstalk.models.tier.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Environment.Tier"

*Defined in [spec/spec.ts:12618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12618)*





___
<a id="elasticbeanstalk.models.tier.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12598)*




<a id="elasticbeanstalk.models.tier.properties-8.name-9"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:12599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12599)*




<a id="elasticbeanstalk.models.tier.properties-8.name-9.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-name"

*Defined in [spec/spec.ts:12600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12600)*





___
<a id="elasticbeanstalk.models.tier.properties-8.name-9.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12601)*





___
<a id="elasticbeanstalk.models.tier.properties-8.name-9.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12602)*





___
<a id="elasticbeanstalk.models.tier.properties-8.name-9.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12603)*





___

___
<a id="elasticbeanstalk.models.tier.properties-8.type-3"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:12605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12605)*




<a id="elasticbeanstalk.models.tier.properties-8.type-3.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-type"

*Defined in [spec/spec.ts:12606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12606)*





___
<a id="elasticbeanstalk.models.tier.properties-8.type-3.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12607)*





___
<a id="elasticbeanstalk.models.tier.properties-8.type-3.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12608)*





___
<a id="elasticbeanstalk.models.tier.properties-8.type-3.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12609)*





___

___
<a id="elasticbeanstalk.models.tier.properties-8.version"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:12611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12611)*




<a id="elasticbeanstalk.models.tier.properties-8.version.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment-tier.html#cfn-beanstalk-env-tier-version"

*Defined in [spec/spec.ts:12612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12612)*





___
<a id="elasticbeanstalk.models.tier.properties-8.version.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12613)*





___
<a id="elasticbeanstalk.models.tier.properties-8.version.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12614)*





___
<a id="elasticbeanstalk.models.tier.properties-8.version.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12615)*





___

___

___

___

___
<a id="elasticbeanstalk.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:12234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12234)*




<a id="elasticbeanstalk.resources.application"></a>

###  Application

** Application**:  *`object`* 

*Defined in [spec/spec.ts:12235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12235)*




<a id="elasticbeanstalk.resources.application.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html"

*Defined in [spec/spec.ts:12236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12236)*





___
<a id="elasticbeanstalk.resources.application.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Application"

*Defined in [spec/spec.ts:12257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12257)*





___
<a id="elasticbeanstalk.resources.application.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12237)*




<a id="elasticbeanstalk.resources.application.properties-9.applicationname-1"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:12238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12238)*




<a id="elasticbeanstalk.resources.application.properties-9.applicationname-1.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-name"

*Defined in [spec/spec.ts:12239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12239)*





___
<a id="elasticbeanstalk.resources.application.properties-9.applicationname-1.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12240)*





___
<a id="elasticbeanstalk.resources.application.properties-9.applicationname-1.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12241)*





___
<a id="elasticbeanstalk.resources.application.properties-9.applicationname-1.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12242)*





___

___
<a id="elasticbeanstalk.resources.application.properties-9.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:12244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12244)*




<a id="elasticbeanstalk.resources.application.properties-9.description.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-description"

*Defined in [spec/spec.ts:12245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12245)*





___
<a id="elasticbeanstalk.resources.application.properties-9.description.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12246)*





___
<a id="elasticbeanstalk.resources.application.properties-9.description.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12247)*





___
<a id="elasticbeanstalk.resources.application.properties-9.description.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12248)*





___

___
<a id="elasticbeanstalk.resources.application.properties-9.resourcelifecycleconfig"></a>

###  ResourceLifecycleConfig

** ResourceLifecycleConfig**:  *`object`* 

*Defined in [spec/spec.ts:12250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12250)*




<a id="elasticbeanstalk.resources.application.properties-9.resourcelifecycleconfig.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk.html#cfn-elasticbeanstalk-application-resourcelifecycleconfig"

*Defined in [spec/spec.ts:12251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12251)*





___
<a id="elasticbeanstalk.resources.application.properties-9.resourcelifecycleconfig.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12252)*





___
<a id="elasticbeanstalk.resources.application.properties-9.resourcelifecycleconfig.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "ApplicationResourceLifecycleConfig"

*Defined in [spec/spec.ts:12253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12253)*





___
<a id="elasticbeanstalk.resources.application.properties-9.resourcelifecycleconfig.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12254)*





___

___

___

___
<a id="elasticbeanstalk.resources.applicationversion"></a>

###  ApplicationVersion

** ApplicationVersion**:  *`object`* 

*Defined in [spec/spec.ts:12259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12259)*




<a id="elasticbeanstalk.resources.applicationversion.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html"

*Defined in [spec/spec.ts:12260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12260)*





___
<a id="elasticbeanstalk.resources.applicationversion.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::ApplicationVersion"

*Defined in [spec/spec.ts:12281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12281)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12261)*




<a id="elasticbeanstalk.resources.applicationversion.properties-10.applicationname-2"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:12262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12262)*




<a id="elasticbeanstalk.resources.applicationversion.properties-10.applicationname-2.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-applicationname"

*Defined in [spec/spec.ts:12263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12263)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.applicationname-2.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12264)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.applicationname-2.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12265)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.applicationname-2.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12266)*





___

___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:12268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12268)*




<a id="elasticbeanstalk.resources.applicationversion.properties-10.description-1.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-description"

*Defined in [spec/spec.ts:12269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12269)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.description-1.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12270)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.description-1.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12271)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.description-1.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12272)*





___

___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.sourcebundle-1"></a>

###  SourceBundle

** SourceBundle**:  *`object`* 

*Defined in [spec/spec.ts:12274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12274)*




<a id="elasticbeanstalk.resources.applicationversion.properties-10.sourcebundle-1.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-version.html#cfn-elasticbeanstalk-applicationversion-sourcebundle"

*Defined in [spec/spec.ts:12275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12275)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.sourcebundle-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12276)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.sourcebundle-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "SourceBundle"

*Defined in [spec/spec.ts:12277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12277)*





___
<a id="elasticbeanstalk.resources.applicationversion.properties-10.sourcebundle-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12278)*





___

___

___

___
<a id="elasticbeanstalk.resources.configurationtemplate"></a>

###  ConfigurationTemplate

** ConfigurationTemplate**:  *`object`* 

*Defined in [spec/spec.ts:12283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12283)*




<a id="elasticbeanstalk.resources.configurationtemplate.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html"

*Defined in [spec/spec.ts:12284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12284)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::ConfigurationTemplate"

*Defined in [spec/spec.ts:12331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12331)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12285)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.applicationname-3"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:12286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12286)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.applicationname-3.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-applicationname"

*Defined in [spec/spec.ts:12287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12287)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.applicationname-3.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12288)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.applicationname-3.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12289)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.applicationname-3.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12290)*





___

___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:12292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12292)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.description-2.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-description"

*Defined in [spec/spec.ts:12293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12293)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.description-2.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12294)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.description-2.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12295)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.description-2.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12296)*





___

___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.environmentid"></a>

###  EnvironmentId

** EnvironmentId**:  *`object`* 

*Defined in [spec/spec.ts:12298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12298)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.environmentid.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-environmentid"

*Defined in [spec/spec.ts:12299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12299)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.environmentid.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12300)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.environmentid.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12301)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.environmentid.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12302)*





___

___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.optionsettings"></a>

###  OptionSettings

** OptionSettings**:  *`object`* 

*Defined in [spec/spec.ts:12304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12304)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.optionsettings.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-optionsettings"

*Defined in [spec/spec.ts:12305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12305)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.optionsettings.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12306)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.optionsettings.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ConfigurationOptionSetting"

*Defined in [spec/spec.ts:12307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12307)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.optionsettings.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12308)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.optionsettings.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12309)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.optionsettings.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12310)*





___

___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.platformarn"></a>

###  PlatformArn

** PlatformArn**:  *`object`* 

*Defined in [spec/spec.ts:12312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12312)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.platformarn.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-platformarn"

*Defined in [spec/spec.ts:12313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12313)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.platformarn.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12314)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.platformarn.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12315)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.platformarn.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12316)*





___

___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.solutionstackname"></a>

###  SolutionStackName

** SolutionStackName**:  *`object`* 

*Defined in [spec/spec.ts:12318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12318)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.solutionstackname.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-solutionstackname"

*Defined in [spec/spec.ts:12319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12319)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.solutionstackname.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12320)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.solutionstackname.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12321)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.solutionstackname.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12322)*





___

___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.sourceconfiguration-1"></a>

###  SourceConfiguration

** SourceConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:12324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12324)*




<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.sourceconfiguration-1.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticbeanstalk-configurationtemplate.html#cfn-elasticbeanstalk-configurationtemplate-sourceconfiguration"

*Defined in [spec/spec.ts:12325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12325)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.sourceconfiguration-1.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12326)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.sourceconfiguration-1.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "SourceConfiguration"

*Defined in [spec/spec.ts:12327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12327)*





___
<a id="elasticbeanstalk.resources.configurationtemplate.properties-11.sourceconfiguration-1.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12328)*





___

___

___

___
<a id="elasticbeanstalk.resources.environment"></a>

###  Environment

** Environment**:  *`object`* 

*Defined in [spec/spec.ts:12333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12333)*




<a id="elasticbeanstalk.resources.environment.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html"

*Defined in [spec/spec.ts:12339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12339)*





___
<a id="elasticbeanstalk.resources.environment.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticBeanstalk::Environment"

*Defined in [spec/spec.ts:12412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12412)*





___
<a id="elasticbeanstalk.resources.environment.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:12334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12334)*




<a id="elasticbeanstalk.resources.environment.attributes.endpointurl"></a>

###  EndpointURL

** EndpointURL**:  *`object`* 

*Defined in [spec/spec.ts:12335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12335)*




<a id="elasticbeanstalk.resources.environment.attributes.endpointurl.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12336)*





___

___

___
<a id="elasticbeanstalk.resources.environment.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12340)*




<a id="elasticbeanstalk.resources.environment.properties-12.applicationname-4"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:12341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12341)*




<a id="elasticbeanstalk.resources.environment.properties-12.applicationname-4.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-applicationname"

*Defined in [spec/spec.ts:12342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12342)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.applicationname-4.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12343)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.applicationname-4.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12344)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.applicationname-4.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12345)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.cnameprefix"></a>

###  CNAMEPrefix

** CNAMEPrefix**:  *`object`* 

*Defined in [spec/spec.ts:12347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12347)*




<a id="elasticbeanstalk.resources.environment.properties-12.cnameprefix.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-cnameprefix"

*Defined in [spec/spec.ts:12348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12348)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.cnameprefix.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12349)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.cnameprefix.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12350)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.cnameprefix.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12351)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.description-3"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:12353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12353)*




<a id="elasticbeanstalk.resources.environment.properties-12.description-3.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-description"

*Defined in [spec/spec.ts:12354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12354)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.description-3.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12355)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.description-3.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12356)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.description-3.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12357)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.environmentname"></a>

###  EnvironmentName

** EnvironmentName**:  *`object`* 

*Defined in [spec/spec.ts:12359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12359)*




<a id="elasticbeanstalk.resources.environment.properties-12.environmentname.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-name"

*Defined in [spec/spec.ts:12360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12360)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.environmentname.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12361)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.environmentname.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12362)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.environmentname.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12363)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.optionsettings-1"></a>

###  OptionSettings

** OptionSettings**:  *`object`* 

*Defined in [spec/spec.ts:12365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12365)*




<a id="elasticbeanstalk.resources.environment.properties-12.optionsettings-1.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-optionsettings"

*Defined in [spec/spec.ts:12366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12366)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.optionsettings-1.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12367)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.optionsettings-1.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "OptionSetting"

*Defined in [spec/spec.ts:12368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12368)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.optionsettings-1.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12369)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.optionsettings-1.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12370)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.optionsettings-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12371)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.platformarn-1"></a>

###  PlatformArn

** PlatformArn**:  *`object`* 

*Defined in [spec/spec.ts:12373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12373)*




<a id="elasticbeanstalk.resources.environment.properties-12.platformarn-1.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-platformarn"

*Defined in [spec/spec.ts:12374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12374)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.platformarn-1.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12375)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.platformarn-1.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12376)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.platformarn-1.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12377)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.solutionstackname-1"></a>

###  SolutionStackName

** SolutionStackName**:  *`object`* 

*Defined in [spec/spec.ts:12379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12379)*




<a id="elasticbeanstalk.resources.environment.properties-12.solutionstackname-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-solutionstackname"

*Defined in [spec/spec.ts:12380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12380)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.solutionstackname-1.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12381)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.solutionstackname-1.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12382)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.solutionstackname-1.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12383)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:12385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12385)*




<a id="elasticbeanstalk.resources.environment.properties-12.tags.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-elasticbeanstalk-environment-tags"

*Defined in [spec/spec.ts:12386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12386)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tags.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12387)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tags.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:12388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12388)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tags.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12389)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tags.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12390)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tags.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12391)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.templatename-1"></a>

###  TemplateName

** TemplateName**:  *`object`* 

*Defined in [spec/spec.ts:12393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12393)*




<a id="elasticbeanstalk.resources.environment.properties-12.templatename-1.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-templatename"

*Defined in [spec/spec.ts:12394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12394)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.templatename-1.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12395)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.templatename-1.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12396)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.templatename-1.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12397)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.tier-1"></a>

###  Tier

** Tier**:  *`object`* 

*Defined in [spec/spec.ts:12399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12399)*




<a id="elasticbeanstalk.resources.environment.properties-12.tier-1.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-tier"

*Defined in [spec/spec.ts:12400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12400)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tier-1.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12401)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tier-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "Tier"

*Defined in [spec/spec.ts:12402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12402)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.tier-1.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:12403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12403)*





___

___
<a id="elasticbeanstalk.resources.environment.properties-12.versionlabel"></a>

###  VersionLabel

** VersionLabel**:  *`object`* 

*Defined in [spec/spec.ts:12405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12405)*




<a id="elasticbeanstalk.resources.environment.properties-12.versionlabel.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-beanstalk-environment.html#cfn-beanstalk-environment-versionlabel"

*Defined in [spec/spec.ts:12406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12406)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.versionlabel.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12407)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.versionlabel.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12408)*





___
<a id="elasticbeanstalk.resources.environment.properties-12.versionlabel.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12409)*





___

___

___

___

___

<a id="elasticloadbalancing"></a>

## Object literal: ElasticLoadBalancing


<a id="elasticloadbalancing.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:12762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12762)*




<a id="elasticloadbalancing.models.accessloggingpolicy"></a>

###  AccessLoggingPolicy

** AccessLoggingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12763)*




<a id="elasticloadbalancing.models.accessloggingpolicy.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html"

*Defined in [spec/spec.ts:12764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12764)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.AccessLoggingPolicy"

*Defined in [spec/spec.ts:12791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12791)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12765)*




<a id="elasticloadbalancing.models.accessloggingpolicy.properties.emitinterval"></a>

###  EmitInterval

** EmitInterval**:  *`object`* 

*Defined in [spec/spec.ts:12766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12766)*




<a id="elasticloadbalancing.models.accessloggingpolicy.properties.emitinterval.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-emitinterval"

*Defined in [spec/spec.ts:12767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12767)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.emitinterval.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12768)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.emitinterval.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12769)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.emitinterval.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12770)*





___

___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:12772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12772)*




<a id="elasticloadbalancing.models.accessloggingpolicy.properties.enabled.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-enabled"

*Defined in [spec/spec.ts:12773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12773)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.enabled.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12774)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.enabled.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12775)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.enabled.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12776)*





___

___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketname"></a>

###  S3BucketName

** S3BucketName**:  *`object`* 

*Defined in [spec/spec.ts:12778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12778)*




<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketname.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketname"

*Defined in [spec/spec.ts:12779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12779)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketname.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12780)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketname.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12781)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketname.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12782)*





___

___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketprefix"></a>

###  S3BucketPrefix

** S3BucketPrefix**:  *`object`* 

*Defined in [spec/spec.ts:12784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12784)*




<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketprefix.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-accessloggingpolicy.html#cfn-elb-accessloggingpolicy-s3bucketprefix"

*Defined in [spec/spec.ts:12785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12785)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketprefix.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12786)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketprefix.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12787)*





___
<a id="elasticloadbalancing.models.accessloggingpolicy.properties.s3bucketprefix.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12788)*





___

___

___

___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy"></a>

###  AppCookieStickinessPolicy

** AppCookieStickinessPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12793)*




<a id="elasticloadbalancing.models.appcookiestickinesspolicy.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-AppCookieStickinessPolicy.html"

*Defined in [spec/spec.ts:12794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12794)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.AppCookieStickinessPolicy"

*Defined in [spec/spec.ts:12809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12809)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12795)*




<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.cookiename"></a>

###  CookieName

** CookieName**:  *`object`* 

*Defined in [spec/spec.ts:12796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12796)*




<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.cookiename.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-AppCookieStickinessPolicy.html#cfn-elb-appcookiestickinesspolicy-cookiename"

*Defined in [spec/spec.ts:12797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12797)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.cookiename.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12798)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.cookiename.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12799)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.cookiename.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12800)*





___

___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.policyname"></a>

###  PolicyName

** PolicyName**:  *`object`* 

*Defined in [spec/spec.ts:12802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12802)*




<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.policyname.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-AppCookieStickinessPolicy.html#cfn-elb-appcookiestickinesspolicy-policyname"

*Defined in [spec/spec.ts:12803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12803)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.policyname.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12804)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.policyname.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12805)*





___
<a id="elasticloadbalancing.models.appcookiestickinesspolicy.properties-1.policyname.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12806)*





___

___

___

___
<a id="elasticloadbalancing.models.connectiondrainingpolicy"></a>

###  ConnectionDrainingPolicy

** ConnectionDrainingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12811)*




<a id="elasticloadbalancing.models.connectiondrainingpolicy.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html"

*Defined in [spec/spec.ts:12812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12812)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.ConnectionDrainingPolicy"

*Defined in [spec/spec.ts:12827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12827)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12813)*




<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.enabled-1"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:12814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12814)*




<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.enabled-1.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-enabled"

*Defined in [spec/spec.ts:12815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12815)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.enabled-1.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12816)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.enabled-1.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12817)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.enabled-1.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12818)*





___

___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.timeout"></a>

###  Timeout

** Timeout**:  *`object`* 

*Defined in [spec/spec.ts:12820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12820)*




<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.timeout.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectiondrainingpolicy.html#cfn-elb-connectiondrainingpolicy-timeout"

*Defined in [spec/spec.ts:12821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12821)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.timeout.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12822)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.timeout.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12823)*





___
<a id="elasticloadbalancing.models.connectiondrainingpolicy.properties-2.timeout.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12824)*





___

___

___

___
<a id="elasticloadbalancing.models.connectionsettings"></a>

###  ConnectionSettings

** ConnectionSettings**:  *`object`* 

*Defined in [spec/spec.ts:12829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12829)*




<a id="elasticloadbalancing.models.connectionsettings.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html"

*Defined in [spec/spec.ts:12830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12830)*





___
<a id="elasticloadbalancing.models.connectionsettings.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.ConnectionSettings"

*Defined in [spec/spec.ts:12839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12839)*





___
<a id="elasticloadbalancing.models.connectionsettings.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12831)*




<a id="elasticloadbalancing.models.connectionsettings.properties-3.idletimeout"></a>

###  IdleTimeout

** IdleTimeout**:  *`object`* 

*Defined in [spec/spec.ts:12832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12832)*




<a id="elasticloadbalancing.models.connectionsettings.properties-3.idletimeout.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-connectionsettings.html#cfn-elb-connectionsettings-idletimeout"

*Defined in [spec/spec.ts:12833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12833)*





___
<a id="elasticloadbalancing.models.connectionsettings.properties-3.idletimeout.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:12834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12834)*





___
<a id="elasticloadbalancing.models.connectionsettings.properties-3.idletimeout.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12835)*





___
<a id="elasticloadbalancing.models.connectionsettings.properties-3.idletimeout.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12836)*





___

___

___

___
<a id="elasticloadbalancing.models.healthcheck"></a>

###  HealthCheck

** HealthCheck**:  *`object`* 

*Defined in [spec/spec.ts:12841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12841)*




<a id="elasticloadbalancing.models.healthcheck.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html"

*Defined in [spec/spec.ts:12842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12842)*





___
<a id="elasticloadbalancing.models.healthcheck.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.HealthCheck"

*Defined in [spec/spec.ts:12875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12875)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12843)*




<a id="elasticloadbalancing.models.healthcheck.properties-4.healthythreshold"></a>

###  HealthyThreshold

** HealthyThreshold**:  *`object`* 

*Defined in [spec/spec.ts:12844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12844)*




<a id="elasticloadbalancing.models.healthcheck.properties-4.healthythreshold.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-healthythreshold"

*Defined in [spec/spec.ts:12845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12845)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.healthythreshold.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12846)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.healthythreshold.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12847)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.healthythreshold.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12848)*





___

___
<a id="elasticloadbalancing.models.healthcheck.properties-4.interval"></a>

###  Interval

** Interval**:  *`object`* 

*Defined in [spec/spec.ts:12850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12850)*




<a id="elasticloadbalancing.models.healthcheck.properties-4.interval.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-interval"

*Defined in [spec/spec.ts:12851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12851)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.interval.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12852)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.interval.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12853)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.interval.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12854)*





___

___
<a id="elasticloadbalancing.models.healthcheck.properties-4.target"></a>

###  Target

** Target**:  *`object`* 

*Defined in [spec/spec.ts:12856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12856)*




<a id="elasticloadbalancing.models.healthcheck.properties-4.target.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-target"

*Defined in [spec/spec.ts:12857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12857)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.target.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12858)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.target.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12859)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.target.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12860)*





___

___
<a id="elasticloadbalancing.models.healthcheck.properties-4.timeout-1"></a>

###  Timeout

** Timeout**:  *`object`* 

*Defined in [spec/spec.ts:12862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12862)*




<a id="elasticloadbalancing.models.healthcheck.properties-4.timeout-1.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-timeout"

*Defined in [spec/spec.ts:12863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12863)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.timeout-1.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12864)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.timeout-1.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12865)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.timeout-1.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12866)*





___

___
<a id="elasticloadbalancing.models.healthcheck.properties-4.unhealthythreshold"></a>

###  UnhealthyThreshold

** UnhealthyThreshold**:  *`object`* 

*Defined in [spec/spec.ts:12868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12868)*




<a id="elasticloadbalancing.models.healthcheck.properties-4.unhealthythreshold.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-health-check.html#cfn-elb-healthcheck-unhealthythreshold"

*Defined in [spec/spec.ts:12869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12869)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.unhealthythreshold.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12870)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.unhealthythreshold.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12871)*





___
<a id="elasticloadbalancing.models.healthcheck.properties-4.unhealthythreshold.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12872)*





___

___

___

___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy"></a>

###  LBCookieStickinessPolicy

** LBCookieStickinessPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12877)*




<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-LBCookieStickinessPolicy.html"

*Defined in [spec/spec.ts:12878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12878)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.LBCookieStickinessPolicy"

*Defined in [spec/spec.ts:12893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12893)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12879)*




<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.cookieexpirationperiod"></a>

###  CookieExpirationPeriod

** CookieExpirationPeriod**:  *`object`* 

*Defined in [spec/spec.ts:12880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12880)*




<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.cookieexpirationperiod.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-LBCookieStickinessPolicy.html#cfn-elb-lbcookiestickinesspolicy-cookieexpirationperiod"

*Defined in [spec/spec.ts:12881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12881)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.cookieexpirationperiod.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12882)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.cookieexpirationperiod.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12883)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.cookieexpirationperiod.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12884)*





___

___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.policyname-1"></a>

###  PolicyName

** PolicyName**:  *`object`* 

*Defined in [spec/spec.ts:12886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12886)*




<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.policyname-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-LBCookieStickinessPolicy.html#cfn-elb-lbcookiestickinesspolicy-policyname"

*Defined in [spec/spec.ts:12887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12887)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.policyname-1.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12888)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.policyname-1.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12889)*





___
<a id="elasticloadbalancing.models.lbcookiestickinesspolicy.properties-5.policyname-1.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12890)*





___

___

___

___
<a id="elasticloadbalancing.models.listeners"></a>

###  Listeners

** Listeners**:  *`object`* 

*Defined in [spec/spec.ts:12895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12895)*




<a id="elasticloadbalancing.models.listeners.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-listener.html"

*Defined in [spec/spec.ts:12896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12896)*





___
<a id="elasticloadbalancing.models.listeners.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.Listeners"

*Defined in [spec/spec.ts:12937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12937)*





___
<a id="elasticloadbalancing.models.listeners.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12897)*




<a id="elasticloadbalancing.models.listeners.properties-6.instanceport"></a>

###  InstancePort

** InstancePort**:  *`object`* 

*Defined in [spec/spec.ts:12898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12898)*




<a id="elasticloadbalancing.models.listeners.properties-6.instanceport.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-listener.html#cfn-ec2-elb-listener-instanceport"

*Defined in [spec/spec.ts:12899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12899)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.instanceport.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12900)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.instanceport.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12901)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.instanceport.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12902)*





___

___
<a id="elasticloadbalancing.models.listeners.properties-6.instanceprotocol"></a>

###  InstanceProtocol

** InstanceProtocol**:  *`object`* 

*Defined in [spec/spec.ts:12904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12904)*




<a id="elasticloadbalancing.models.listeners.properties-6.instanceprotocol.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-listener.html#cfn-ec2-elb-listener-instanceprotocol"

*Defined in [spec/spec.ts:12905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12905)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.instanceprotocol.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12906)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.instanceprotocol.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12907)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.instanceprotocol.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12908)*





___

___
<a id="elasticloadbalancing.models.listeners.properties-6.loadbalancerport"></a>

###  LoadBalancerPort

** LoadBalancerPort**:  *`object`* 

*Defined in [spec/spec.ts:12910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12910)*




<a id="elasticloadbalancing.models.listeners.properties-6.loadbalancerport.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-listener.html#cfn-ec2-elb-listener-loadbalancerport"

*Defined in [spec/spec.ts:12911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12911)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.loadbalancerport.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12912)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.loadbalancerport.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12913)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.loadbalancerport.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12914)*





___

___
<a id="elasticloadbalancing.models.listeners.properties-6.policynames"></a>

###  PolicyNames

** PolicyNames**:  *`object`* 

*Defined in [spec/spec.ts:12916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12916)*




<a id="elasticloadbalancing.models.listeners.properties-6.policynames.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-listener.html#cfn-ec2-elb-listener-policynames"

*Defined in [spec/spec.ts:12917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12917)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.policynames.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12918)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.policynames.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12919)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.policynames.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12920)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.policynames.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12921)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.policynames.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12922)*





___

___
<a id="elasticloadbalancing.models.listeners.properties-6.protocol"></a>

###  Protocol

** Protocol**:  *`object`* 

*Defined in [spec/spec.ts:12924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12924)*




<a id="elasticloadbalancing.models.listeners.properties-6.protocol.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-listener.html#cfn-ec2-elb-listener-protocol"

*Defined in [spec/spec.ts:12925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12925)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.protocol.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12926)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.protocol.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12927)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.protocol.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12928)*





___

___
<a id="elasticloadbalancing.models.listeners.properties-6.sslcertificateid"></a>

###  SSLCertificateId

** SSLCertificateId**:  *`object`* 

*Defined in [spec/spec.ts:12930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12930)*




<a id="elasticloadbalancing.models.listeners.properties-6.sslcertificateid.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-listener.html#cfn-ec2-elb-listener-sslcertificateid"

*Defined in [spec/spec.ts:12931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12931)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.sslcertificateid.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12932)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.sslcertificateid.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12933)*





___
<a id="elasticloadbalancing.models.listeners.properties-6.sslcertificateid.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12934)*





___

___

___

___
<a id="elasticloadbalancing.models.policies"></a>

###  Policies

** Policies**:  *`object`* 

*Defined in [spec/spec.ts:12939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12939)*




<a id="elasticloadbalancing.models.policies.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-policy.html"

*Defined in [spec/spec.ts:12940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12940)*





___
<a id="elasticloadbalancing.models.policies.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer.Policies"

*Defined in [spec/spec.ts:12979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12979)*





___
<a id="elasticloadbalancing.models.policies.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12941)*




<a id="elasticloadbalancing.models.policies.properties-7.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:12942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12942)*




<a id="elasticloadbalancing.models.policies.properties-7.attributes.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-policy.html#cfn-ec2-elb-policy-attributes"

*Defined in [spec/spec.ts:12943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12943)*





___
<a id="elasticloadbalancing.models.policies.properties-7.attributes.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12944)*





___
<a id="elasticloadbalancing.models.policies.properties-7.attributes.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:12945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12945)*





___
<a id="elasticloadbalancing.models.policies.properties-7.attributes.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12946)*





___
<a id="elasticloadbalancing.models.policies.properties-7.attributes.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12947)*





___
<a id="elasticloadbalancing.models.policies.properties-7.attributes.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12948)*





___

___
<a id="elasticloadbalancing.models.policies.properties-7.instanceports"></a>

###  InstancePorts

** InstancePorts**:  *`object`* 

*Defined in [spec/spec.ts:12950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12950)*




<a id="elasticloadbalancing.models.policies.properties-7.instanceports.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-policy.html#cfn-ec2-elb-policy-instanceports"

*Defined in [spec/spec.ts:12951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12951)*





___
<a id="elasticloadbalancing.models.policies.properties-7.instanceports.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12952)*





___
<a id="elasticloadbalancing.models.policies.properties-7.instanceports.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12953)*





___
<a id="elasticloadbalancing.models.policies.properties-7.instanceports.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12954)*





___
<a id="elasticloadbalancing.models.policies.properties-7.instanceports.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12955)*





___
<a id="elasticloadbalancing.models.policies.properties-7.instanceports.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12956)*





___

___
<a id="elasticloadbalancing.models.policies.properties-7.loadbalancerports"></a>

###  LoadBalancerPorts

** LoadBalancerPorts**:  *`object`* 

*Defined in [spec/spec.ts:12958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12958)*




<a id="elasticloadbalancing.models.policies.properties-7.loadbalancerports.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-policy.html#cfn-ec2-elb-policy-loadbalancerports"

*Defined in [spec/spec.ts:12959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12959)*





___
<a id="elasticloadbalancing.models.policies.properties-7.loadbalancerports.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12960)*





___
<a id="elasticloadbalancing.models.policies.properties-7.loadbalancerports.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12961)*





___
<a id="elasticloadbalancing.models.policies.properties-7.loadbalancerports.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12962)*





___
<a id="elasticloadbalancing.models.policies.properties-7.loadbalancerports.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12963)*





___
<a id="elasticloadbalancing.models.policies.properties-7.loadbalancerports.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12964)*





___

___
<a id="elasticloadbalancing.models.policies.properties-7.policyname-2"></a>

###  PolicyName

** PolicyName**:  *`object`* 

*Defined in [spec/spec.ts:12966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12966)*




<a id="elasticloadbalancing.models.policies.properties-7.policyname-2.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-policy.html#cfn-ec2-elb-policy-policyname"

*Defined in [spec/spec.ts:12967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12967)*





___
<a id="elasticloadbalancing.models.policies.properties-7.policyname-2.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12968)*





___
<a id="elasticloadbalancing.models.policies.properties-7.policyname-2.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12969)*





___
<a id="elasticloadbalancing.models.policies.properties-7.policyname-2.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12970)*





___

___
<a id="elasticloadbalancing.models.policies.properties-7.policytype"></a>

###  PolicyType

** PolicyType**:  *`object`* 

*Defined in [spec/spec.ts:12972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12972)*




<a id="elasticloadbalancing.models.policies.properties-7.policytype.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb-policy.html#cfn-ec2-elb-policy-policytype"

*Defined in [spec/spec.ts:12973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12973)*





___
<a id="elasticloadbalancing.models.policies.properties-7.policytype.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12974)*





___
<a id="elasticloadbalancing.models.policies.properties-7.policytype.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12975)*





___
<a id="elasticloadbalancing.models.policies.properties-7.policytype.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12976)*





___

___

___

___

___
<a id="elasticloadbalancing.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:12623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12623)*




<a id="elasticloadbalancing.resources.loadbalancer"></a>

###  LoadBalancer

** LoadBalancer**:  *`object`* 

*Defined in [spec/spec.ts:12624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12624)*




<a id="elasticloadbalancing.resources.loadbalancer.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html"

*Defined in [spec/spec.ts:12642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12642)*





___
<a id="elasticloadbalancing.resources.loadbalancer.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancing::LoadBalancer"

*Defined in [spec/spec.ts:12759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12759)*





___
<a id="elasticloadbalancing.resources.loadbalancer.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:12625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12625)*




<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.canonicalhostedzonename"></a>

###  CanonicalHostedZoneName

** CanonicalHostedZoneName**:  *`object`* 

*Defined in [spec/spec.ts:12626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12626)*




<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.canonicalhostedzonename.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12627)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.canonicalhostedzonenameid"></a>

###  CanonicalHostedZoneNameID

** CanonicalHostedZoneNameID**:  *`object`* 

*Defined in [spec/spec.ts:12629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12629)*




<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.canonicalhostedzonenameid.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12630)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.dnsname"></a>

###  DNSName

** DNSName**:  *`object`* 

*Defined in [spec/spec.ts:12632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12632)*




<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.dnsname.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12633)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.sourcesecuritygroup_groupname"></a>

###  SourceSecurityGroup.GroupName

** SourceSecurityGroup.GroupName**:  *`object`* 

*Defined in [spec/spec.ts:12635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12635)*




<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.sourcesecuritygroup_groupname.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12636)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.sourcesecuritygroup_owneralias"></a>

###  SourceSecurityGroup.OwnerAlias

** SourceSecurityGroup.OwnerAlias**:  *`object`* 

*Defined in [spec/spec.ts:12638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12638)*




<a id="elasticloadbalancing.resources.loadbalancer.attributes-1.sourcesecuritygroup_owneralias.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12639)*





___

___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12643)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.accessloggingpolicy-1"></a>

###  AccessLoggingPolicy

** AccessLoggingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12644)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.accessloggingpolicy-1.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-accessloggingpolicy"

*Defined in [spec/spec.ts:12645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12645)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.accessloggingpolicy-1.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12646)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.accessloggingpolicy-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "AccessLoggingPolicy"

*Defined in [spec/spec.ts:12647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12647)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.accessloggingpolicy-1.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12648)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.appcookiestickinesspolicy-1"></a>

###  AppCookieStickinessPolicy

** AppCookieStickinessPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12650)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.appcookiestickinesspolicy-1.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-appcookiestickinesspolicy"

*Defined in [spec/spec.ts:12651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12651)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.appcookiestickinesspolicy-1.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12652)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.appcookiestickinesspolicy-1.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "AppCookieStickinessPolicy"

*Defined in [spec/spec.ts:12653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12653)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.appcookiestickinesspolicy-1.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12654)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.appcookiestickinesspolicy-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12655)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.appcookiestickinesspolicy-1.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12656)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.availabilityzones"></a>

###  AvailabilityZones

** AvailabilityZones**:  *`object`* 

*Defined in [spec/spec.ts:12658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12658)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.availabilityzones.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-availabilityzones"

*Defined in [spec/spec.ts:12659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12659)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.availabilityzones.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12660)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.availabilityzones.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12661)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.availabilityzones.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12662)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.availabilityzones.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12663)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.availabilityzones.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:12664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12664)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectiondrainingpolicy-1"></a>

###  ConnectionDrainingPolicy

** ConnectionDrainingPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12666)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectiondrainingpolicy-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-connectiondrainingpolicy"

*Defined in [spec/spec.ts:12667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12667)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectiondrainingpolicy-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12668)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectiondrainingpolicy-1.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "ConnectionDrainingPolicy"

*Defined in [spec/spec.ts:12669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12669)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectiondrainingpolicy-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12670)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectionsettings-1"></a>

###  ConnectionSettings

** ConnectionSettings**:  *`object`* 

*Defined in [spec/spec.ts:12672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12672)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectionsettings-1.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-connectionsettings"

*Defined in [spec/spec.ts:12673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12673)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectionsettings-1.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12674)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectionsettings-1.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "ConnectionSettings"

*Defined in [spec/spec.ts:12675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12675)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.connectionsettings-1.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12676)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.crosszone"></a>

###  CrossZone

** CrossZone**:  *`object`* 

*Defined in [spec/spec.ts:12678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12678)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.crosszone.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-crosszone"

*Defined in [spec/spec.ts:12679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12679)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.crosszone.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:12680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12680)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.crosszone.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12681)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.crosszone.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12682)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.healthcheck-1"></a>

###  HealthCheck

** HealthCheck**:  *`object`* 

*Defined in [spec/spec.ts:12684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12684)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.healthcheck-1.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-healthcheck"

*Defined in [spec/spec.ts:12685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12685)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.healthcheck-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12686)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.healthcheck-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "HealthCheck"

*Defined in [spec/spec.ts:12687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12687)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.healthcheck-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:12688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12688)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.instances"></a>

###  Instances

** Instances**:  *`object`* 

*Defined in [spec/spec.ts:12690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12690)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.instances.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-instances"

*Defined in [spec/spec.ts:12691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12691)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.instances.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12692)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.instances.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12693)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.instances.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12694)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.instances.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12695)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.instances.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12696)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.lbcookiestickinesspolicy-1"></a>

###  LBCookieStickinessPolicy

** LBCookieStickinessPolicy**:  *`object`* 

*Defined in [spec/spec.ts:12698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12698)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.lbcookiestickinesspolicy-1.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-lbcookiestickinesspolicy"

*Defined in [spec/spec.ts:12699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12699)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.lbcookiestickinesspolicy-1.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12700)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.lbcookiestickinesspolicy-1.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "LBCookieStickinessPolicy"

*Defined in [spec/spec.ts:12701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12701)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.lbcookiestickinesspolicy-1.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12702)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.lbcookiestickinesspolicy-1.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12703)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.lbcookiestickinesspolicy-1.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12704)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.listeners-1"></a>

###  Listeners

** Listeners**:  *`object`* 

*Defined in [spec/spec.ts:12706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12706)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.listeners-1.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-listeners"

*Defined in [spec/spec.ts:12707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12707)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.listeners-1.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12708)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.listeners-1.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Listeners"

*Defined in [spec/spec.ts:12709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12709)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.listeners-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12710)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.listeners-1.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12711)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.listeners-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12712)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.loadbalancername"></a>

###  LoadBalancerName

** LoadBalancerName**:  *`object`* 

*Defined in [spec/spec.ts:12714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12714)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.loadbalancername.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-elbname"

*Defined in [spec/spec.ts:12715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12715)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.loadbalancername.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12716)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.loadbalancername.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12717)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.loadbalancername.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12718)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.policies-1"></a>

###  Policies

** Policies**:  *`object`* 

*Defined in [spec/spec.ts:12720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12720)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.policies-1.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-policies"

*Defined in [spec/spec.ts:12721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12721)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.policies-1.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12722)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.policies-1.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Policies"

*Defined in [spec/spec.ts:12723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12723)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.policies-1.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12724)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.policies-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12725)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.policies-1.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12726)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.scheme"></a>

###  Scheme

** Scheme**:  *`object`* 

*Defined in [spec/spec.ts:12728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12728)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.scheme.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-scheme"

*Defined in [spec/spec.ts:12729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12729)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.scheme.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12730)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.scheme.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12731)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.scheme.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:12732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12732)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.securitygroups"></a>

###  SecurityGroups

** SecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:12734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12734)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.securitygroups.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-securitygroups"

*Defined in [spec/spec.ts:12735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12735)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.securitygroups.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12736)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.securitygroups.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12737)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.securitygroups.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12738)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.securitygroups.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12739)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.securitygroups.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12740)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.subnets"></a>

###  Subnets

** Subnets**:  *`object`* 

*Defined in [spec/spec.ts:12742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12742)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.subnets.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-ec2-elb-subnets"

*Defined in [spec/spec.ts:12743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12743)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.subnets.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12744)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.subnets.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:12745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12745)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.subnets.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12746)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.subnets.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12747)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.subnets.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:12748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12748)*





___

___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:12750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12750)*




<a id="elasticloadbalancing.resources.loadbalancer.properties-8.tags.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-elb.html#cfn-elasticloadbalancing-loadbalancer-tags"

*Defined in [spec/spec.ts:12751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12751)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.tags.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:12752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12752)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.tags.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:12753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12753)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.tags.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12754)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.tags.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12755)*





___
<a id="elasticloadbalancing.resources.loadbalancer.properties-8.tags.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12756)*





___

___

___

___

___

<a id="elasticloadbalancingv2"></a>

## Object literal: ElasticLoadBalancingV2


<a id="elasticloadbalancingv2.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:13294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13294)*




<a id="elasticloadbalancingv2.models.action"></a>

###  Action

** Action**:  *`object`* 

*Defined in [spec/spec.ts:13295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13295)*




<a id="elasticloadbalancingv2.models.action.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-actions.html"

*Defined in [spec/spec.ts:13296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13296)*





___
<a id="elasticloadbalancingv2.models.action.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::ListenerRule.Action"

*Defined in [spec/spec.ts:13311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13311)*





___
<a id="elasticloadbalancingv2.models.action.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13297)*




<a id="elasticloadbalancingv2.models.action.properties.targetgrouparn"></a>

###  TargetGroupArn

** TargetGroupArn**:  *`object`* 

*Defined in [spec/spec.ts:13298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13298)*




<a id="elasticloadbalancingv2.models.action.properties.targetgrouparn.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-actions.html#cfn-elasticloadbalancingv2-listener-actions-targetgrouparn"

*Defined in [spec/spec.ts:13299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13299)*





___
<a id="elasticloadbalancingv2.models.action.properties.targetgrouparn.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13300)*





___
<a id="elasticloadbalancingv2.models.action.properties.targetgrouparn.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13301)*





___
<a id="elasticloadbalancingv2.models.action.properties.targetgrouparn.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13302)*





___

___
<a id="elasticloadbalancingv2.models.action.properties.type"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:13304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13304)*




<a id="elasticloadbalancingv2.models.action.properties.type.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-actions.html#cfn-elasticloadbalancingv2-listener-actions-type"

*Defined in [spec/spec.ts:13305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13305)*





___
<a id="elasticloadbalancingv2.models.action.properties.type.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13306)*





___
<a id="elasticloadbalancingv2.models.action.properties.type.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13307)*





___
<a id="elasticloadbalancingv2.models.action.properties.type.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13308)*





___

___

___

___
<a id="elasticloadbalancingv2.models.certificate"></a>

###  Certificate

** Certificate**:  *`object`* 

*Defined in [spec/spec.ts:13313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13313)*




<a id="elasticloadbalancingv2.models.certificate.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-certificates.html"

*Defined in [spec/spec.ts:13314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13314)*





___
<a id="elasticloadbalancingv2.models.certificate.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::ListenerCertificate.Certificate"

*Defined in [spec/spec.ts:13323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13323)*





___
<a id="elasticloadbalancingv2.models.certificate.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13315)*




<a id="elasticloadbalancingv2.models.certificate.properties-1.certificatearn"></a>

###  CertificateArn

** CertificateArn**:  *`object`* 

*Defined in [spec/spec.ts:13316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13316)*




<a id="elasticloadbalancingv2.models.certificate.properties-1.certificatearn.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-certificates.html#cfn-elasticloadbalancingv2-listener-certificates-certificatearn"

*Defined in [spec/spec.ts:13317](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13317)*





___
<a id="elasticloadbalancingv2.models.certificate.properties-1.certificatearn.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13318)*





___
<a id="elasticloadbalancingv2.models.certificate.properties-1.certificatearn.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13319)*





___
<a id="elasticloadbalancingv2.models.certificate.properties-1.certificatearn.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13320)*





___

___

___

___
<a id="elasticloadbalancingv2.models.loadbalancerattribute"></a>

###  LoadBalancerAttribute

** LoadBalancerAttribute**:  *`object`* 

*Defined in [spec/spec.ts:13345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13345)*




<a id="elasticloadbalancingv2.models.loadbalancerattribute.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-loadbalancerattributes.html"

*Defined in [spec/spec.ts:13346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13346)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::LoadBalancer.LoadBalancerAttribute"

*Defined in [spec/spec.ts:13361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13361)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13347)*




<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:13348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13348)*




<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.key.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-loadbalancerattributes.html#cfn-elasticloadbalancingv2-loadbalancer-loadbalancerattributes-key"

*Defined in [spec/spec.ts:13349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13349)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.key.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13350)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.key.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13351)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.key.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13352)*





___

___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:13354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13354)*




<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.value.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-loadbalancerattributes.html#cfn-elasticloadbalancingv2-loadbalancer-loadbalancerattributes-value"

*Defined in [spec/spec.ts:13355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13355)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.value.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13356)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.value.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13357)*





___
<a id="elasticloadbalancingv2.models.loadbalancerattribute.properties-2.value.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13358)*





___

___

___

___
<a id="elasticloadbalancingv2.models.matcher"></a>

###  Matcher

** Matcher**:  *`object`* 

*Defined in [spec/spec.ts:13381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13381)*




<a id="elasticloadbalancingv2.models.matcher.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html"

*Defined in [spec/spec.ts:13382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13382)*





___
<a id="elasticloadbalancingv2.models.matcher.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::TargetGroup.Matcher"

*Defined in [spec/spec.ts:13391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13391)*





___
<a id="elasticloadbalancingv2.models.matcher.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13383)*




<a id="elasticloadbalancingv2.models.matcher.properties-3.httpcode"></a>

###  HttpCode

** HttpCode**:  *`object`* 

*Defined in [spec/spec.ts:13384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13384)*




<a id="elasticloadbalancingv2.models.matcher.properties-3.httpcode.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-matcher.html#cfn-elasticloadbalancingv2-targetgroup-matcher-httpcode"

*Defined in [spec/spec.ts:13385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13385)*





___
<a id="elasticloadbalancingv2.models.matcher.properties-3.httpcode.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13386)*





___
<a id="elasticloadbalancingv2.models.matcher.properties-3.httpcode.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13387)*





___
<a id="elasticloadbalancingv2.models.matcher.properties-3.httpcode.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13388)*





___

___

___

___
<a id="elasticloadbalancingv2.models.rulecondition"></a>

###  RuleCondition

** RuleCondition**:  *`object`* 

*Defined in [spec/spec.ts:13325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13325)*




<a id="elasticloadbalancingv2.models.rulecondition.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-conditions.html"

*Defined in [spec/spec.ts:13326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13326)*





___
<a id="elasticloadbalancingv2.models.rulecondition.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::ListenerRule.RuleCondition"

*Defined in [spec/spec.ts:13343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13343)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13327)*




<a id="elasticloadbalancingv2.models.rulecondition.properties-4.field"></a>

###  Field

** Field**:  *`object`* 

*Defined in [spec/spec.ts:13328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13328)*




<a id="elasticloadbalancingv2.models.rulecondition.properties-4.field.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-conditions.html#cfn-elasticloadbalancingv2-listenerrule-conditions-field"

*Defined in [spec/spec.ts:13329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13329)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.field.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13330)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.field.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13331)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.field.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13332)*





___

___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.values"></a>

###  Values

** Values**:  *`object`* 

*Defined in [spec/spec.ts:13334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13334)*




<a id="elasticloadbalancingv2.models.rulecondition.properties-4.values.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-conditions.html#cfn-elasticloadbalancingv2-listenerrule-conditions-values"

*Defined in [spec/spec.ts:13335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13335)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.values.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13336)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.values.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13337)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.values.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13338)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.values.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13339)*





___
<a id="elasticloadbalancingv2.models.rulecondition.properties-4.values.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13340)*





___

___

___

___
<a id="elasticloadbalancingv2.models.subnetmapping"></a>

###  SubnetMapping

** SubnetMapping**:  *`object`* 

*Defined in [spec/spec.ts:13363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13363)*




<a id="elasticloadbalancingv2.models.subnetmapping.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-subnetmapping.html"

*Defined in [spec/spec.ts:13364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13364)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::LoadBalancer.SubnetMapping"

*Defined in [spec/spec.ts:13379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13379)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13365)*




<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.allocationid"></a>

###  AllocationId

** AllocationId**:  *`object`* 

*Defined in [spec/spec.ts:13366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13366)*




<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.allocationid.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-subnetmapping.html#cfn-elasticloadbalancingv2-loadbalancer-subnetmapping-allocationid"

*Defined in [spec/spec.ts:13367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13367)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.allocationid.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13368)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.allocationid.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13369)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.allocationid.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13370)*





___

___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.subnetid"></a>

###  SubnetId

** SubnetId**:  *`object`* 

*Defined in [spec/spec.ts:13372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13372)*




<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.subnetid.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-loadbalancer-subnetmapping.html#cfn-elasticloadbalancingv2-loadbalancer-subnetmapping-subnetid"

*Defined in [spec/spec.ts:13373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13373)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.subnetid.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13374)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.subnetid.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13375)*





___
<a id="elasticloadbalancingv2.models.subnetmapping.properties-5.subnetid.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13376)*





___

___

___

___
<a id="elasticloadbalancingv2.models.targetdescription"></a>

###  TargetDescription

** TargetDescription**:  *`object`* 

*Defined in [spec/spec.ts:13393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13393)*




<a id="elasticloadbalancingv2.models.targetdescription.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetdescription.html"

*Defined in [spec/spec.ts:13394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13394)*





___
<a id="elasticloadbalancingv2.models.targetdescription.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::TargetGroup.TargetDescription"

*Defined in [spec/spec.ts:13415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13415)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13395)*




<a id="elasticloadbalancingv2.models.targetdescription.properties-6.availabilityzone"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:13396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13396)*




<a id="elasticloadbalancingv2.models.targetdescription.properties-6.availabilityzone.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetdescription.html#cfn-elasticloadbalancingv2-targetgroup-targetdescription-availabilityzone"

*Defined in [spec/spec.ts:13397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13397)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.availabilityzone.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13398)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.availabilityzone.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13399)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.availabilityzone.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13400)*





___

___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.id"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:13402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13402)*




<a id="elasticloadbalancingv2.models.targetdescription.properties-6.id.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetdescription.html#cfn-elasticloadbalancingv2-targetgroup-targetdescription-id"

*Defined in [spec/spec.ts:13403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13403)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.id.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13404)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.id.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13405)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.id.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13406)*





___

___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.port"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:13408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13408)*




<a id="elasticloadbalancingv2.models.targetdescription.properties-6.port.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetdescription.html#cfn-elasticloadbalancingv2-targetgroup-targetdescription-port"

*Defined in [spec/spec.ts:13409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13409)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.port.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13410)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.port.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13411)*





___
<a id="elasticloadbalancingv2.models.targetdescription.properties-6.port.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13412)*





___

___

___

___
<a id="elasticloadbalancingv2.models.targetgroupattribute"></a>

###  TargetGroupAttribute

** TargetGroupAttribute**:  *`object`* 

*Defined in [spec/spec.ts:13417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13417)*




<a id="elasticloadbalancingv2.models.targetgroupattribute.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetgroupattribute.html"

*Defined in [spec/spec.ts:13418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13418)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::TargetGroup.TargetGroupAttribute"

*Defined in [spec/spec.ts:13433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13433)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13419)*




<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.key-1"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:13420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13420)*




<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.key-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetgroupattribute.html#cfn-elasticloadbalancingv2-targetgroup-targetgroupattribute-key"

*Defined in [spec/spec.ts:13421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13421)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.key-1.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13422)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.key-1.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13423)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.key-1.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13424)*





___

___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.value-1"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:13426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13426)*




<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.value-1.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-targetgroup-targetgroupattribute.html#cfn-elasticloadbalancingv2-targetgroup-targetgroupattribute-value"

*Defined in [spec/spec.ts:13427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13427)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.value-1.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13428)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.value-1.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13429)*





___
<a id="elasticloadbalancingv2.models.targetgroupattribute.properties-7.value-1.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13430)*





___

___

___

___

___
<a id="elasticloadbalancingv2.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:12984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12984)*




<a id="elasticloadbalancingv2.resources.listener"></a>

###  Listener

** Listener**:  *`object`* 

*Defined in [spec/spec.ts:12985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12985)*




<a id="elasticloadbalancingv2.resources.listener.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html"

*Defined in [spec/spec.ts:12986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12986)*





___
<a id="elasticloadbalancingv2.resources.listener.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::Listener"

*Defined in [spec/spec.ts:13029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13029)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:12987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12987)*




<a id="elasticloadbalancingv2.resources.listener.properties-8.certificates"></a>

###  Certificates

** Certificates**:  *`object`* 

*Defined in [spec/spec.ts:12988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12988)*




<a id="elasticloadbalancingv2.resources.listener.properties-8.certificates.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-certificates"

*Defined in [spec/spec.ts:12989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12989)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.certificates.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12990)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.certificates.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Certificate"

*Defined in [spec/spec.ts:12991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12991)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.certificates.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12992)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.certificates.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:12993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12993)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.certificates.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:12994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12994)*





___

___
<a id="elasticloadbalancingv2.resources.listener.properties-8.defaultactions"></a>

###  DefaultActions

** DefaultActions**:  *`object`* 

*Defined in [spec/spec.ts:12996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12996)*




<a id="elasticloadbalancingv2.resources.listener.properties-8.defaultactions.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-defaultactions"

*Defined in [spec/spec.ts:12997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12997)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.defaultactions.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:12998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12998)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.defaultactions.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Action"

*Defined in [spec/spec.ts:12999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L12999)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.defaultactions.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13000)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.defaultactions.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13001)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.defaultactions.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13002)*





___

___
<a id="elasticloadbalancingv2.resources.listener.properties-8.loadbalancerarn"></a>

###  LoadBalancerArn

** LoadBalancerArn**:  *`object`* 

*Defined in [spec/spec.ts:13004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13004)*




<a id="elasticloadbalancingv2.resources.listener.properties-8.loadbalancerarn.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-loadbalancerarn"

*Defined in [spec/spec.ts:13005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13005)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.loadbalancerarn.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13006)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.loadbalancerarn.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13007)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.loadbalancerarn.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13008)*





___

___
<a id="elasticloadbalancingv2.resources.listener.properties-8.port-1"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:13010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13010)*




<a id="elasticloadbalancingv2.resources.listener.properties-8.port-1.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-port"

*Defined in [spec/spec.ts:13011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13011)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.port-1.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13012)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.port-1.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13013)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.port-1.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13014)*





___

___
<a id="elasticloadbalancingv2.resources.listener.properties-8.protocol"></a>

###  Protocol

** Protocol**:  *`object`* 

*Defined in [spec/spec.ts:13016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13016)*




<a id="elasticloadbalancingv2.resources.listener.properties-8.protocol.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-protocol"

*Defined in [spec/spec.ts:13017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13017)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.protocol.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13018)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.protocol.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13019)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.protocol.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13020)*





___

___
<a id="elasticloadbalancingv2.resources.listener.properties-8.sslpolicy"></a>

###  SslPolicy

** SslPolicy**:  *`object`* 

*Defined in [spec/spec.ts:13022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13022)*




<a id="elasticloadbalancingv2.resources.listener.properties-8.sslpolicy.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listener.html#cfn-elasticloadbalancingv2-listener-sslpolicy"

*Defined in [spec/spec.ts:13023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13023)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.sslpolicy.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13024)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.sslpolicy.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13025)*





___
<a id="elasticloadbalancingv2.resources.listener.properties-8.sslpolicy.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13026)*





___

___

___

___
<a id="elasticloadbalancingv2.resources.listenercertificate"></a>

###  ListenerCertificate

** ListenerCertificate**:  *`object`* 

*Defined in [spec/spec.ts:13031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13031)*




<a id="elasticloadbalancingv2.resources.listenercertificate.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html"

*Defined in [spec/spec.ts:13032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13032)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::ListenerCertificate"

*Defined in [spec/spec.ts:13049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13049)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13033)*




<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.certificates-1"></a>

###  Certificates

** Certificates**:  *`object`* 

*Defined in [spec/spec.ts:13034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13034)*




<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.certificates-1.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-certificates"

*Defined in [spec/spec.ts:13035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13035)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.certificates-1.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13036)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.certificates-1.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Certificate"

*Defined in [spec/spec.ts:13037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13037)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.certificates-1.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13038)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.certificates-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13039)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.certificates-1.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13040)*





___

___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.listenerarn"></a>

###  ListenerArn

** ListenerArn**:  *`object`* 

*Defined in [spec/spec.ts:13042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13042)*




<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.listenerarn.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenercertificate.html#cfn-elasticloadbalancingv2-listenercertificate-listenerarn"

*Defined in [spec/spec.ts:13043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13043)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.listenerarn.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13044)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.listenerarn.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13045)*





___
<a id="elasticloadbalancingv2.resources.listenercertificate.properties-9.listenerarn.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13046)*





___

___

___

___
<a id="elasticloadbalancingv2.resources.listenerrule"></a>

###  ListenerRule

** ListenerRule**:  *`object`* 

*Defined in [spec/spec.ts:13051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13051)*




<a id="elasticloadbalancingv2.resources.listenerrule.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html"

*Defined in [spec/spec.ts:13052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13052)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::ListenerRule"

*Defined in [spec/spec.ts:13083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13083)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13053)*




<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.actions"></a>

###  Actions

** Actions**:  *`object`* 

*Defined in [spec/spec.ts:13054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13054)*




<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.actions.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-actions"

*Defined in [spec/spec.ts:13055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13055)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.actions.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13056)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.actions.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Action"

*Defined in [spec/spec.ts:13057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13057)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.actions.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13058)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.actions.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13059)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.actions.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13060)*





___

___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.conditions"></a>

###  Conditions

** Conditions**:  *`object`* 

*Defined in [spec/spec.ts:13062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13062)*




<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.conditions.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-conditions"

*Defined in [spec/spec.ts:13063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13063)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.conditions.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13064)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.conditions.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "RuleCondition"

*Defined in [spec/spec.ts:13065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13065)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.conditions.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13066)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.conditions.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13067)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.conditions.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13068)*





___

___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.listenerarn-1"></a>

###  ListenerArn

** ListenerArn**:  *`object`* 

*Defined in [spec/spec.ts:13070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13070)*




<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.listenerarn-1.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-listenerarn"

*Defined in [spec/spec.ts:13071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13071)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.listenerarn-1.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13072)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.listenerarn-1.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13073)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.listenerarn-1.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13074)*





___

___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.priority"></a>

###  Priority

** Priority**:  *`object`* 

*Defined in [spec/spec.ts:13076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13076)*




<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.priority.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-listenerrule.html#cfn-elasticloadbalancingv2-listenerrule-priority"

*Defined in [spec/spec.ts:13077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13077)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.priority.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13078)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.priority.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13079)*





___
<a id="elasticloadbalancingv2.resources.listenerrule.properties-10.priority.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13080)*





___

___

___

___
<a id="elasticloadbalancingv2.resources.loadbalancer"></a>

###  LoadBalancer

** LoadBalancer**:  *`object`* 

*Defined in [spec/spec.ts:13085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13085)*




<a id="elasticloadbalancingv2.resources.loadbalancer.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html"

*Defined in [spec/spec.ts:13104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13104)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::LoadBalancer"

*Defined in [spec/spec.ts:13171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13171)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:13086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13086)*




<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.canonicalhostedzoneid"></a>

###  CanonicalHostedZoneID

** CanonicalHostedZoneID**:  *`object`* 

*Defined in [spec/spec.ts:13087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13087)*




<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.canonicalhostedzoneid.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13088)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.dnsname"></a>

###  DNSName

** DNSName**:  *`object`* 

*Defined in [spec/spec.ts:13090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13090)*




<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.dnsname.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13091)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.loadbalancerfullname"></a>

###  LoadBalancerFullName

** LoadBalancerFullName**:  *`object`* 

*Defined in [spec/spec.ts:13093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13093)*




<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.loadbalancerfullname.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13094)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.loadbalancername"></a>

###  LoadBalancerName

** LoadBalancerName**:  *`object`* 

*Defined in [spec/spec.ts:13096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13096)*




<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.loadbalancername.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13097)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.securitygroups"></a>

###  SecurityGroups

** SecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:13099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13099)*




<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.securitygroups.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13100)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.attributes.securitygroups.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13101)*





___

___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13105)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.ipaddresstype"></a>

###  IpAddressType

** IpAddressType**:  *`object`* 

*Defined in [spec/spec.ts:13106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13106)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.ipaddresstype.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-ipaddresstype"

*Defined in [spec/spec.ts:13107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13107)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.ipaddresstype.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13108)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.ipaddresstype.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13109)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.ipaddresstype.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13110)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.loadbalancerattributes"></a>

###  LoadBalancerAttributes

** LoadBalancerAttributes**:  *`object`* 

*Defined in [spec/spec.ts:13112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13112)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.loadbalancerattributes.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-loadbalancerattributes"

*Defined in [spec/spec.ts:13113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13113)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.loadbalancerattributes.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13114)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.loadbalancerattributes.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "LoadBalancerAttribute"

*Defined in [spec/spec.ts:13115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13115)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.loadbalancerattributes.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13116)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.loadbalancerattributes.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13117)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.loadbalancerattributes.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13118)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.name-12"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:13120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13120)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.name-12.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-name"

*Defined in [spec/spec.ts:13121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13121)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.name-12.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13122)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.name-12.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13123)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.name-12.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13124)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.scheme"></a>

###  Scheme

** Scheme**:  *`object`* 

*Defined in [spec/spec.ts:13126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13126)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.scheme.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-scheme"

*Defined in [spec/spec.ts:13127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13127)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.scheme.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13128)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.scheme.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13129)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.scheme.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13130)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.securitygroups-1"></a>

###  SecurityGroups

** SecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:13132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13132)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.securitygroups-1.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-securitygroups"

*Defined in [spec/spec.ts:13133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13133)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.securitygroups-1.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13134)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.securitygroups-1.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13135)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.securitygroups-1.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13136)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.securitygroups-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13137)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.securitygroups-1.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13138)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnetmappings"></a>

###  SubnetMappings

** SubnetMappings**:  *`object`* 

*Defined in [spec/spec.ts:13140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13140)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnetmappings.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-subnetmappings"

*Defined in [spec/spec.ts:13141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13141)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnetmappings.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13142)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnetmappings.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "SubnetMapping"

*Defined in [spec/spec.ts:13143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13143)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnetmappings.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13144)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnetmappings.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13145)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnetmappings.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13146)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnets"></a>

###  Subnets

** Subnets**:  *`object`* 

*Defined in [spec/spec.ts:13148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13148)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnets.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-subnets"

*Defined in [spec/spec.ts:13149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13149)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnets.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13150)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnets.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13151)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnets.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13152)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnets.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13153)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.subnets.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13154)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:13156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13156)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.tags.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-tags"

*Defined in [spec/spec.ts:13157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13157)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.tags.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13158)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.tags.itemtype-7"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:13159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13159)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.tags.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13160)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.tags.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13161)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.tags.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13162)*





___

___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.type-13"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:13164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13164)*




<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.type-13.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-loadbalancer.html#cfn-elasticloadbalancingv2-loadbalancer-type"

*Defined in [spec/spec.ts:13165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13165)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.type-13.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13166)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.type-13.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13167)*





___
<a id="elasticloadbalancingv2.resources.loadbalancer.properties-11.type-13.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13168)*





___

___

___

___
<a id="elasticloadbalancingv2.resources.targetgroup"></a>

###  TargetGroup

** TargetGroup**:  *`object`* 

*Defined in [spec/spec.ts:13173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13173)*




<a id="elasticloadbalancingv2.resources.targetgroup.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html"

*Defined in [spec/spec.ts:13186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13186)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ElasticLoadBalancingV2::TargetGroup"

*Defined in [spec/spec.ts:13291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13291)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:13174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13174)*




<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1.loadbalancerarns"></a>

###  LoadBalancerArns

** LoadBalancerArns**:  *`object`* 

*Defined in [spec/spec.ts:13175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13175)*




<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1.loadbalancerarns.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13176)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1.loadbalancerarns.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13177)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1.targetgroupfullname"></a>

###  TargetGroupFullName

** TargetGroupFullName**:  *`object`* 

*Defined in [spec/spec.ts:13179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13179)*




<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1.targetgroupfullname.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13180)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1.targetgroupname"></a>

###  TargetGroupName

** TargetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:13182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13182)*




<a id="elasticloadbalancingv2.resources.targetgroup.attributes-1.targetgroupname.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13183)*





___

___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13187)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckintervalseconds"></a>

###  HealthCheckIntervalSeconds

** HealthCheckIntervalSeconds**:  *`object`* 

*Defined in [spec/spec.ts:13188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13188)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckintervalseconds.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds"

*Defined in [spec/spec.ts:13189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13189)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckintervalseconds.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13190)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckintervalseconds.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13191)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckintervalseconds.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13192)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckpath"></a>

###  HealthCheckPath

** HealthCheckPath**:  *`object`* 

*Defined in [spec/spec.ts:13194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13194)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckpath.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath"

*Defined in [spec/spec.ts:13195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13195)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckpath.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13196)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckpath.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13197)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckpath.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13198)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckport"></a>

###  HealthCheckPort

** HealthCheckPort**:  *`object`* 

*Defined in [spec/spec.ts:13200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13200)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckport.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport"

*Defined in [spec/spec.ts:13201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13201)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckport.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13202)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckport.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13203)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckport.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13204)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckprotocol"></a>

###  HealthCheckProtocol

** HealthCheckProtocol**:  *`object`* 

*Defined in [spec/spec.ts:13206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13206)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckprotocol.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol"

*Defined in [spec/spec.ts:13207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13207)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckprotocol.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13208)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckprotocol.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13209)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthcheckprotocol.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13210)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthchecktimeoutseconds"></a>

###  HealthCheckTimeoutSeconds

** HealthCheckTimeoutSeconds**:  *`object`* 

*Defined in [spec/spec.ts:13212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13212)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthchecktimeoutseconds.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds"

*Defined in [spec/spec.ts:13213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13213)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthchecktimeoutseconds.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13214)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthchecktimeoutseconds.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13215)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthchecktimeoutseconds.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13216)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthythresholdcount"></a>

###  HealthyThresholdCount

** HealthyThresholdCount**:  *`object`* 

*Defined in [spec/spec.ts:13218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13218)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthythresholdcount.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount"

*Defined in [spec/spec.ts:13219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13219)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthythresholdcount.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13220)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthythresholdcount.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13221)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.healthythresholdcount.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13222)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.matcher-1"></a>

###  Matcher

** Matcher**:  *`object`* 

*Defined in [spec/spec.ts:13224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13224)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.matcher-1.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-matcher"

*Defined in [spec/spec.ts:13225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13225)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.matcher-1.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13226)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.matcher-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "Matcher"

*Defined in [spec/spec.ts:13227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13227)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.matcher-1.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13228)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.name-14"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:13230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13230)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.name-14.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name"

*Defined in [spec/spec.ts:13231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13231)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.name-14.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13232)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.name-14.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13233)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.name-14.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13234)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.port-2"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:13236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13236)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.port-2.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port"

*Defined in [spec/spec.ts:13237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13237)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.port-2.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13238)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.port-2.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13239)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.port-2.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13240)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.protocol-1"></a>

###  Protocol

** Protocol**:  *`object`* 

*Defined in [spec/spec.ts:13242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13242)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.protocol-1.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol"

*Defined in [spec/spec.ts:13243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13243)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.protocol-1.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13244)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.protocol-1.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13245)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.protocol-1.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13246)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.tags-1"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:13248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13248)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.tags-1.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-tags"

*Defined in [spec/spec.ts:13249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13249)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.tags-1.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13250)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.tags-1.itemtype-8"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:13251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13251)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.tags-1.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13252)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.tags-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13253)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.tags-1.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13254)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targetgroupattributes"></a>

###  TargetGroupAttributes

** TargetGroupAttributes**:  *`object`* 

*Defined in [spec/spec.ts:13256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13256)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targetgroupattributes.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targetgroupattributes"

*Defined in [spec/spec.ts:13257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13257)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targetgroupattributes.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13258)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targetgroupattributes.itemtype-9"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "TargetGroupAttribute"

*Defined in [spec/spec.ts:13259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13259)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targetgroupattributes.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13260)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targetgroupattributes.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13261)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targetgroupattributes.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13262)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targettype"></a>

###  TargetType

** TargetType**:  *`object`* 

*Defined in [spec/spec.ts:13264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13264)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targettype.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype"

*Defined in [spec/spec.ts:13265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13265)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targettype.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13266)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targettype.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13267)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targettype.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13268)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targets"></a>

###  Targets

** Targets**:  *`object`* 

*Defined in [spec/spec.ts:13270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13270)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targets.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targets"

*Defined in [spec/spec.ts:13271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13271)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targets.duplicatesallowed-13"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13272)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targets.itemtype-10"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "TargetDescription"

*Defined in [spec/spec.ts:13273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13273)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targets.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13274)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targets.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13275)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.targets.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13276)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.unhealthythresholdcount"></a>

###  UnhealthyThresholdCount

** UnhealthyThresholdCount**:  *`object`* 

*Defined in [spec/spec.ts:13278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13278)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.unhealthythresholdcount.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount"

*Defined in [spec/spec.ts:13279](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13279)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.unhealthythresholdcount.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13280](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13280)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.unhealthythresholdcount.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13281)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.unhealthythresholdcount.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13282)*





___

___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.vpcid"></a>

###  VpcId

** VpcId**:  *`object`* 

*Defined in [spec/spec.ts:13284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13284)*




<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.vpcid.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid"

*Defined in [spec/spec.ts:13285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13285)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.vpcid.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13286)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.vpcid.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13287)*





___
<a id="elasticloadbalancingv2.resources.targetgroup.properties-12.vpcid.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13288)*





___

___

___

___

___

<a id="elasticsearch"></a>

## Object literal: Elasticsearch


<a id="elasticsearch.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:13512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13512)*




<a id="elasticsearch.models.ebsoptions"></a>

###  EBSOptions

** EBSOptions**:  *`object`* 

*Defined in [spec/spec.ts:13513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13513)*




<a id="elasticsearch.models.ebsoptions.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html"

*Defined in [spec/spec.ts:13514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13514)*





___
<a id="elasticsearch.models.ebsoptions.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Elasticsearch::Domain.EBSOptions"

*Defined in [spec/spec.ts:13541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13541)*





___
<a id="elasticsearch.models.ebsoptions.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13515)*




<a id="elasticsearch.models.ebsoptions.properties.ebsenabled"></a>

###  EBSEnabled

** EBSEnabled**:  *`object`* 

*Defined in [spec/spec.ts:13516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13516)*




<a id="elasticsearch.models.ebsoptions.properties.ebsenabled.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-ebsenabled"

*Defined in [spec/spec.ts:13517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13517)*





___
<a id="elasticsearch.models.ebsoptions.properties.ebsenabled.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:13518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13518)*





___
<a id="elasticsearch.models.ebsoptions.properties.ebsenabled.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13519)*





___
<a id="elasticsearch.models.ebsoptions.properties.ebsenabled.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13520)*





___

___
<a id="elasticsearch.models.ebsoptions.properties.iops"></a>

###  Iops

** Iops**:  *`object`* 

*Defined in [spec/spec.ts:13522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13522)*




<a id="elasticsearch.models.ebsoptions.properties.iops.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-iops"

*Defined in [spec/spec.ts:13523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13523)*





___
<a id="elasticsearch.models.ebsoptions.properties.iops.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13524)*





___
<a id="elasticsearch.models.ebsoptions.properties.iops.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13525)*





___
<a id="elasticsearch.models.ebsoptions.properties.iops.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13526)*





___

___
<a id="elasticsearch.models.ebsoptions.properties.volumesize"></a>

###  VolumeSize

** VolumeSize**:  *`object`* 

*Defined in [spec/spec.ts:13528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13528)*




<a id="elasticsearch.models.ebsoptions.properties.volumesize.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumesize"

*Defined in [spec/spec.ts:13529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13529)*





___
<a id="elasticsearch.models.ebsoptions.properties.volumesize.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13530)*





___
<a id="elasticsearch.models.ebsoptions.properties.volumesize.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13531)*





___
<a id="elasticsearch.models.ebsoptions.properties.volumesize.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13532)*





___

___
<a id="elasticsearch.models.ebsoptions.properties.volumetype"></a>

###  VolumeType

** VolumeType**:  *`object`* 

*Defined in [spec/spec.ts:13534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13534)*




<a id="elasticsearch.models.ebsoptions.properties.volumetype.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-ebsoptions.html#cfn-elasticsearch-domain-ebsoptions-volumetype"

*Defined in [spec/spec.ts:13535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13535)*





___
<a id="elasticsearch.models.ebsoptions.properties.volumetype.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13536)*





___
<a id="elasticsearch.models.ebsoptions.properties.volumetype.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13537)*





___
<a id="elasticsearch.models.ebsoptions.properties.volumetype.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13538)*





___

___

___

___
<a id="elasticsearch.models.elasticsearchclusterconfig"></a>

###  ElasticsearchClusterConfig

** ElasticsearchClusterConfig**:  *`object`* 

*Defined in [spec/spec.ts:13543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13543)*




<a id="elasticsearch.models.elasticsearchclusterconfig.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html"

*Defined in [spec/spec.ts:13544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13544)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Elasticsearch::Domain.ElasticsearchClusterConfig"

*Defined in [spec/spec.ts:13583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13583)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13545)*




<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastercount"></a>

###  DedicatedMasterCount

** DedicatedMasterCount**:  *`object`* 

*Defined in [spec/spec.ts:13546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13546)*




<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastercount.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastercount"

*Defined in [spec/spec.ts:13547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13547)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastercount.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13548)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastercount.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13549)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastercount.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13550)*





___

___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmasterenabled"></a>

###  DedicatedMasterEnabled

** DedicatedMasterEnabled**:  *`object`* 

*Defined in [spec/spec.ts:13552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13552)*




<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmasterenabled.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmasterenabled"

*Defined in [spec/spec.ts:13553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13553)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmasterenabled.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:13554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13554)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmasterenabled.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13555)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmasterenabled.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13556)*





___

___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastertype"></a>

###  DedicatedMasterType

** DedicatedMasterType**:  *`object`* 

*Defined in [spec/spec.ts:13558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13558)*




<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastertype.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-dedicatedmastertype"

*Defined in [spec/spec.ts:13559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13559)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastertype.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13560)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastertype.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13561)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.dedicatedmastertype.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13562)*





___

___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancecount"></a>

###  InstanceCount

** InstanceCount**:  *`object`* 

*Defined in [spec/spec.ts:13564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13564)*




<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancecount.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instancecount"

*Defined in [spec/spec.ts:13565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13565)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancecount.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13566)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancecount.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13567)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancecount.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13568)*





___

___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancetype"></a>

###  InstanceType

** InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:13570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13570)*




<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancetype.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-instnacetype"

*Defined in [spec/spec.ts:13571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13571)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancetype.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13572)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancetype.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13573)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.instancetype.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13574)*





___

___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.zoneawarenessenabled"></a>

###  ZoneAwarenessEnabled

** ZoneAwarenessEnabled**:  *`object`* 

*Defined in [spec/spec.ts:13576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13576)*




<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.zoneawarenessenabled.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-elasticsearchclusterconfig.html#cfn-elasticsearch-domain-elasticseachclusterconfig-zoneawarenessenabled"

*Defined in [spec/spec.ts:13577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13577)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.zoneawarenessenabled.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:13578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13578)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.zoneawarenessenabled.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13579)*





___
<a id="elasticsearch.models.elasticsearchclusterconfig.properties-1.zoneawarenessenabled.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13580)*





___

___

___

___
<a id="elasticsearch.models.snapshotoptions"></a>

###  SnapshotOptions

** SnapshotOptions**:  *`object`* 

*Defined in [spec/spec.ts:13585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13585)*




<a id="elasticsearch.models.snapshotoptions.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html"

*Defined in [spec/spec.ts:13586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13586)*





___
<a id="elasticsearch.models.snapshotoptions.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Elasticsearch::Domain.SnapshotOptions"

*Defined in [spec/spec.ts:13595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13595)*





___
<a id="elasticsearch.models.snapshotoptions.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13587)*




<a id="elasticsearch.models.snapshotoptions.properties-2.automatedsnapshotstarthour"></a>

###  AutomatedSnapshotStartHour

** AutomatedSnapshotStartHour**:  *`object`* 

*Defined in [spec/spec.ts:13588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13588)*




<a id="elasticsearch.models.snapshotoptions.properties-2.automatedsnapshotstarthour.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-snapshotoptions.html#cfn-elasticsearch-domain-snapshotoptions-automatedsnapshotstarthour"

*Defined in [spec/spec.ts:13589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13589)*





___
<a id="elasticsearch.models.snapshotoptions.properties-2.automatedsnapshotstarthour.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13590)*





___
<a id="elasticsearch.models.snapshotoptions.properties-2.automatedsnapshotstarthour.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13591)*





___
<a id="elasticsearch.models.snapshotoptions.properties-2.automatedsnapshotstarthour.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13592)*





___

___

___

___
<a id="elasticsearch.models.vpcoptions"></a>

###  VPCOptions

** VPCOptions**:  *`object`* 

*Defined in [spec/spec.ts:13597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13597)*




<a id="elasticsearch.models.vpcoptions.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-vpcoptions.html"

*Defined in [spec/spec.ts:13598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13598)*





___
<a id="elasticsearch.models.vpcoptions.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Elasticsearch::Domain.VPCOptions"

*Defined in [spec/spec.ts:13617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13617)*





___
<a id="elasticsearch.models.vpcoptions.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13599)*




<a id="elasticsearch.models.vpcoptions.properties-3.securitygroupids"></a>

###  SecurityGroupIds

** SecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:13600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13600)*




<a id="elasticsearch.models.vpcoptions.properties-3.securitygroupids.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-vpcoptions.html#cfn-elasticsearch-domain-vpcoptions-securitygroupids"

*Defined in [spec/spec.ts:13601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13601)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.securitygroupids.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13602)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.securitygroupids.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13603)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.securitygroupids.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13604)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.securitygroupids.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13605)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.securitygroupids.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13606)*





___

___
<a id="elasticsearch.models.vpcoptions.properties-3.subnetids"></a>

###  SubnetIds

** SubnetIds**:  *`object`* 

*Defined in [spec/spec.ts:13608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13608)*




<a id="elasticsearch.models.vpcoptions.properties-3.subnetids.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticsearch-domain-vpcoptions.html#cfn-elasticsearch-domain-vpcoptions-subnetids"

*Defined in [spec/spec.ts:13609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13609)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.subnetids.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13610)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.subnetids.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13611)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.subnetids.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13612)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.subnetids.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13613)*





___
<a id="elasticsearch.models.vpcoptions.properties-3.subnetids.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13614)*





___

___

___

___

___
<a id="elasticsearch.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:13438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13438)*




<a id="elasticsearch.resources.domain"></a>

###  Domain

** Domain**:  *`object`* 

*Defined in [spec/spec.ts:13439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13439)*




<a id="elasticsearch.resources.domain.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html"

*Defined in [spec/spec.ts:13448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13448)*





___
<a id="elasticsearch.resources.domain.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Elasticsearch::Domain"

*Defined in [spec/spec.ts:13509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13509)*





___
<a id="elasticsearch.resources.domain.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:13440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13440)*




<a id="elasticsearch.resources.domain.attributes.domainarn"></a>

###  DomainArn

** DomainArn**:  *`object`* 

*Defined in [spec/spec.ts:13441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13441)*




<a id="elasticsearch.resources.domain.attributes.domainarn.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13442)*





___

___
<a id="elasticsearch.resources.domain.attributes.domainendpoint"></a>

###  DomainEndpoint

** DomainEndpoint**:  *`object`* 

*Defined in [spec/spec.ts:13444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13444)*




<a id="elasticsearch.resources.domain.attributes.domainendpoint.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13445)*





___

___

___
<a id="elasticsearch.resources.domain.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13449)*




<a id="elasticsearch.resources.domain.properties-4.accesspolicies"></a>

###  AccessPolicies

** AccessPolicies**:  *`object`* 

*Defined in [spec/spec.ts:13450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13450)*




<a id="elasticsearch.resources.domain.properties-4.accesspolicies.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-accesspolicies"

*Defined in [spec/spec.ts:13451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13451)*





___
<a id="elasticsearch.resources.domain.properties-4.accesspolicies.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:13452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13452)*





___
<a id="elasticsearch.resources.domain.properties-4.accesspolicies.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13453)*





___
<a id="elasticsearch.resources.domain.properties-4.accesspolicies.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13454)*





___

___
<a id="elasticsearch.resources.domain.properties-4.advancedoptions"></a>

###  AdvancedOptions

** AdvancedOptions**:  *`object`* 

*Defined in [spec/spec.ts:13456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13456)*




<a id="elasticsearch.resources.domain.properties-4.advancedoptions.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-advancedoptions"

*Defined in [spec/spec.ts:13457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13457)*





___
<a id="elasticsearch.resources.domain.properties-4.advancedoptions.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13458)*





___
<a id="elasticsearch.resources.domain.properties-4.advancedoptions.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13459)*





___
<a id="elasticsearch.resources.domain.properties-4.advancedoptions.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13460)*





___
<a id="elasticsearch.resources.domain.properties-4.advancedoptions.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:13461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13461)*





___
<a id="elasticsearch.resources.domain.properties-4.advancedoptions.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13462)*





___

___
<a id="elasticsearch.resources.domain.properties-4.domainname"></a>

###  DomainName

** DomainName**:  *`object`* 

*Defined in [spec/spec.ts:13464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13464)*




<a id="elasticsearch.resources.domain.properties-4.domainname.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-domainname"

*Defined in [spec/spec.ts:13465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13465)*





___
<a id="elasticsearch.resources.domain.properties-4.domainname.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13466)*





___
<a id="elasticsearch.resources.domain.properties-4.domainname.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13467)*





___
<a id="elasticsearch.resources.domain.properties-4.domainname.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13468)*





___

___
<a id="elasticsearch.resources.domain.properties-4.ebsoptions-1"></a>

###  EBSOptions

** EBSOptions**:  *`object`* 

*Defined in [spec/spec.ts:13470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13470)*




<a id="elasticsearch.resources.domain.properties-4.ebsoptions-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-ebsoptions"

*Defined in [spec/spec.ts:13471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13471)*





___
<a id="elasticsearch.resources.domain.properties-4.ebsoptions-1.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13472)*





___
<a id="elasticsearch.resources.domain.properties-4.ebsoptions-1.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "EBSOptions"

*Defined in [spec/spec.ts:13473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13473)*





___
<a id="elasticsearch.resources.domain.properties-4.ebsoptions-1.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13474)*





___

___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchclusterconfig-1"></a>

###  ElasticsearchClusterConfig

** ElasticsearchClusterConfig**:  *`object`* 

*Defined in [spec/spec.ts:13476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13476)*




<a id="elasticsearch.resources.domain.properties-4.elasticsearchclusterconfig-1.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchclusterconfig"

*Defined in [spec/spec.ts:13477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13477)*





___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchclusterconfig-1.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13478)*





___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchclusterconfig-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "ElasticsearchClusterConfig"

*Defined in [spec/spec.ts:13479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13479)*





___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchclusterconfig-1.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13480)*





___

___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchversion"></a>

###  ElasticsearchVersion

** ElasticsearchVersion**:  *`object`* 

*Defined in [spec/spec.ts:13482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13482)*




<a id="elasticsearch.resources.domain.properties-4.elasticsearchversion.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-elasticsearchversion"

*Defined in [spec/spec.ts:13483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13483)*





___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchversion.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13484)*





___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchversion.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13485)*





___
<a id="elasticsearch.resources.domain.properties-4.elasticsearchversion.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13486)*





___

___
<a id="elasticsearch.resources.domain.properties-4.snapshotoptions-1"></a>

###  SnapshotOptions

** SnapshotOptions**:  *`object`* 

*Defined in [spec/spec.ts:13488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13488)*




<a id="elasticsearch.resources.domain.properties-4.snapshotoptions-1.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-snapshotoptions"

*Defined in [spec/spec.ts:13489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13489)*





___
<a id="elasticsearch.resources.domain.properties-4.snapshotoptions-1.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13490)*





___
<a id="elasticsearch.resources.domain.properties-4.snapshotoptions-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "SnapshotOptions"

*Defined in [spec/spec.ts:13491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13491)*





___
<a id="elasticsearch.resources.domain.properties-4.snapshotoptions-1.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13492)*





___

___
<a id="elasticsearch.resources.domain.properties-4.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:13494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13494)*




<a id="elasticsearch.resources.domain.properties-4.tags.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-tags"

*Defined in [spec/spec.ts:13495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13495)*





___
<a id="elasticsearch.resources.domain.properties-4.tags.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13496)*





___
<a id="elasticsearch.resources.domain.properties-4.tags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:13497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13497)*





___
<a id="elasticsearch.resources.domain.properties-4.tags.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13498)*





___
<a id="elasticsearch.resources.domain.properties-4.tags.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13499)*





___
<a id="elasticsearch.resources.domain.properties-4.tags.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13500)*





___

___
<a id="elasticsearch.resources.domain.properties-4.vpcoptions-1"></a>

###  VPCOptions

** VPCOptions**:  *`object`* 

*Defined in [spec/spec.ts:13502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13502)*




<a id="elasticsearch.resources.domain.properties-4.vpcoptions-1.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-domain.html#cfn-elasticsearch-domain-vpcoptions"

*Defined in [spec/spec.ts:13503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13503)*





___
<a id="elasticsearch.resources.domain.properties-4.vpcoptions-1.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13504)*





___
<a id="elasticsearch.resources.domain.properties-4.vpcoptions-1.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "VPCOptions"

*Defined in [spec/spec.ts:13505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13505)*





___
<a id="elasticsearch.resources.domain.properties-4.vpcoptions-1.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13506)*





___

___

___

___

___

<a id="events"></a>

## Object literal: Events


<a id="events.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:13679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13679)*




<a id="events.models.ecsparameters"></a>

###  EcsParameters

** EcsParameters**:  *`object`* 

*Defined in [spec/spec.ts:13680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13680)*




<a id="events.models.ecsparameters.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html"

*Defined in [spec/spec.ts:13681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13681)*





___
<a id="events.models.ecsparameters.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Events::Rule.EcsParameters"

*Defined in [spec/spec.ts:13696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13696)*





___
<a id="events.models.ecsparameters.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13682)*




<a id="events.models.ecsparameters.properties.taskcount"></a>

###  TaskCount

** TaskCount**:  *`object`* 

*Defined in [spec/spec.ts:13683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13683)*




<a id="events.models.ecsparameters.properties.taskcount.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-taskcount"

*Defined in [spec/spec.ts:13684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13684)*





___
<a id="events.models.ecsparameters.properties.taskcount.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13685)*





___
<a id="events.models.ecsparameters.properties.taskcount.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13686)*





___
<a id="events.models.ecsparameters.properties.taskcount.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13687)*





___

___
<a id="events.models.ecsparameters.properties.taskdefinitionarn"></a>

###  TaskDefinitionArn

** TaskDefinitionArn**:  *`object`* 

*Defined in [spec/spec.ts:13689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13689)*




<a id="events.models.ecsparameters.properties.taskdefinitionarn.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-ecsparameters.html#cfn-events-rule-ecsparameters-taskdefinitionarn"

*Defined in [spec/spec.ts:13690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13690)*





___
<a id="events.models.ecsparameters.properties.taskdefinitionarn.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13691)*





___
<a id="events.models.ecsparameters.properties.taskdefinitionarn.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13692)*





___
<a id="events.models.ecsparameters.properties.taskdefinitionarn.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13693)*





___

___

___

___
<a id="events.models.inputtransformer"></a>

###  InputTransformer

** InputTransformer**:  *`object`* 

*Defined in [spec/spec.ts:13698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13698)*




<a id="events.models.inputtransformer.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-inputtransformer.html"

*Defined in [spec/spec.ts:13699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13699)*





___
<a id="events.models.inputtransformer.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Events::Rule.InputTransformer"

*Defined in [spec/spec.ts:13716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13716)*





___
<a id="events.models.inputtransformer.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13700)*




<a id="events.models.inputtransformer.properties-1.inputpathsmap"></a>

###  InputPathsMap

** InputPathsMap**:  *`object`* 

*Defined in [spec/spec.ts:13701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13701)*




<a id="events.models.inputtransformer.properties-1.inputpathsmap.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-inputtransformer.html#cfn-events-rule-inputtransformer-inputpathsmap"

*Defined in [spec/spec.ts:13702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13702)*





___
<a id="events.models.inputtransformer.properties-1.inputpathsmap.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13703)*





___
<a id="events.models.inputtransformer.properties-1.inputpathsmap.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13704)*





___
<a id="events.models.inputtransformer.properties-1.inputpathsmap.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13705)*





___
<a id="events.models.inputtransformer.properties-1.inputpathsmap.type"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:13706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13706)*





___
<a id="events.models.inputtransformer.properties-1.inputpathsmap.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13707)*





___

___
<a id="events.models.inputtransformer.properties-1.inputtemplate"></a>

###  InputTemplate

** InputTemplate**:  *`object`* 

*Defined in [spec/spec.ts:13709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13709)*




<a id="events.models.inputtransformer.properties-1.inputtemplate.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-inputtransformer.html#cfn-events-rule-inputtransformer-inputtemplate"

*Defined in [spec/spec.ts:13710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13710)*





___
<a id="events.models.inputtransformer.properties-1.inputtemplate.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13711)*





___
<a id="events.models.inputtransformer.properties-1.inputtemplate.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13712)*





___
<a id="events.models.inputtransformer.properties-1.inputtemplate.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13713)*





___

___

___

___
<a id="events.models.kinesisparameters"></a>

###  KinesisParameters

** KinesisParameters**:  *`object`* 

*Defined in [spec/spec.ts:13718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13718)*




<a id="events.models.kinesisparameters.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-kinesisparameters.html"

*Defined in [spec/spec.ts:13719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13719)*





___
<a id="events.models.kinesisparameters.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Events::Rule.KinesisParameters"

*Defined in [spec/spec.ts:13728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13728)*





___
<a id="events.models.kinesisparameters.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13720)*




<a id="events.models.kinesisparameters.properties-2.partitionkeypath"></a>

###  PartitionKeyPath

** PartitionKeyPath**:  *`object`* 

*Defined in [spec/spec.ts:13721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13721)*




<a id="events.models.kinesisparameters.properties-2.partitionkeypath.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-kinesisparameters.html#cfn-events-rule-kinesisparameters-partitionkeypath"

*Defined in [spec/spec.ts:13722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13722)*





___
<a id="events.models.kinesisparameters.properties-2.partitionkeypath.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13723)*





___
<a id="events.models.kinesisparameters.properties-2.partitionkeypath.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13724)*





___
<a id="events.models.kinesisparameters.properties-2.partitionkeypath.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13725)*





___

___

___

___
<a id="events.models.runcommandparameters"></a>

###  RunCommandParameters

** RunCommandParameters**:  *`object`* 

*Defined in [spec/spec.ts:13730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13730)*




<a id="events.models.runcommandparameters.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandparameters.html"

*Defined in [spec/spec.ts:13731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13731)*





___
<a id="events.models.runcommandparameters.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Events::Rule.RunCommandParameters"

*Defined in [spec/spec.ts:13742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13742)*





___
<a id="events.models.runcommandparameters.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13732)*




<a id="events.models.runcommandparameters.properties-3.runcommandtargets"></a>

###  RunCommandTargets

** RunCommandTargets**:  *`object`* 

*Defined in [spec/spec.ts:13733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13733)*




<a id="events.models.runcommandparameters.properties-3.runcommandtargets.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandparameters.html#cfn-events-rule-runcommandparameters-runcommandtargets"

*Defined in [spec/spec.ts:13734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13734)*





___
<a id="events.models.runcommandparameters.properties-3.runcommandtargets.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13735)*





___
<a id="events.models.runcommandparameters.properties-3.runcommandtargets.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "RunCommandTarget"

*Defined in [spec/spec.ts:13736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13736)*





___
<a id="events.models.runcommandparameters.properties-3.runcommandtargets.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13737)*





___
<a id="events.models.runcommandparameters.properties-3.runcommandtargets.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13738)*





___
<a id="events.models.runcommandparameters.properties-3.runcommandtargets.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13739)*





___

___

___

___
<a id="events.models.runcommandtarget"></a>

###  RunCommandTarget

** RunCommandTarget**:  *`object`* 

*Defined in [spec/spec.ts:13744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13744)*




<a id="events.models.runcommandtarget.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html"

*Defined in [spec/spec.ts:13745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13745)*





___
<a id="events.models.runcommandtarget.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Events::Rule.RunCommandTarget"

*Defined in [spec/spec.ts:13762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13762)*





___
<a id="events.models.runcommandtarget.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13746)*




<a id="events.models.runcommandtarget.properties-4.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:13747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13747)*




<a id="events.models.runcommandtarget.properties-4.key.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html#cfn-events-rule-runcommandtarget-key"

*Defined in [spec/spec.ts:13748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13748)*





___
<a id="events.models.runcommandtarget.properties-4.key.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13749)*





___
<a id="events.models.runcommandtarget.properties-4.key.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13750)*





___
<a id="events.models.runcommandtarget.properties-4.key.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13751)*





___

___
<a id="events.models.runcommandtarget.properties-4.values"></a>

###  Values

** Values**:  *`object`* 

*Defined in [spec/spec.ts:13753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13753)*




<a id="events.models.runcommandtarget.properties-4.values.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-runcommandtarget.html#cfn-events-rule-runcommandtarget-values"

*Defined in [spec/spec.ts:13754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13754)*





___
<a id="events.models.runcommandtarget.properties-4.values.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13755)*





___
<a id="events.models.runcommandtarget.properties-4.values.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13756)*





___
<a id="events.models.runcommandtarget.properties-4.values.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13757)*





___
<a id="events.models.runcommandtarget.properties-4.values.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13758)*





___
<a id="events.models.runcommandtarget.properties-4.values.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13759)*





___

___

___

___
<a id="events.models.target"></a>

###  Target

** Target**:  *`object`* 

*Defined in [spec/spec.ts:13764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13764)*




<a id="events.models.target.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html"

*Defined in [spec/spec.ts:13765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13765)*





___
<a id="events.models.target.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Events::Rule.Target"

*Defined in [spec/spec.ts:13822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13822)*





___
<a id="events.models.target.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13766)*




<a id="events.models.target.properties-5.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:13767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13767)*




<a id="events.models.target.properties-5.arn.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-arn"

*Defined in [spec/spec.ts:13768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13768)*





___
<a id="events.models.target.properties-5.arn.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13769)*





___
<a id="events.models.target.properties-5.arn.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13770)*





___
<a id="events.models.target.properties-5.arn.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13771)*





___

___
<a id="events.models.target.properties-5.ecsparameters-1"></a>

###  EcsParameters

** EcsParameters**:  *`object`* 

*Defined in [spec/spec.ts:13773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13773)*




<a id="events.models.target.properties-5.ecsparameters-1.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-ecsparameters"

*Defined in [spec/spec.ts:13774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13774)*





___
<a id="events.models.target.properties-5.ecsparameters-1.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13775)*





___
<a id="events.models.target.properties-5.ecsparameters-1.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "EcsParameters"

*Defined in [spec/spec.ts:13776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13776)*





___
<a id="events.models.target.properties-5.ecsparameters-1.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13777)*





___

___
<a id="events.models.target.properties-5.id"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:13779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13779)*




<a id="events.models.target.properties-5.id.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-id"

*Defined in [spec/spec.ts:13780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13780)*





___
<a id="events.models.target.properties-5.id.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13781)*





___
<a id="events.models.target.properties-5.id.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13782)*





___
<a id="events.models.target.properties-5.id.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13783)*





___

___
<a id="events.models.target.properties-5.input"></a>

###  Input

** Input**:  *`object`* 

*Defined in [spec/spec.ts:13785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13785)*




<a id="events.models.target.properties-5.input.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-input"

*Defined in [spec/spec.ts:13786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13786)*





___
<a id="events.models.target.properties-5.input.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13787)*





___
<a id="events.models.target.properties-5.input.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13788)*





___
<a id="events.models.target.properties-5.input.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13789)*





___

___
<a id="events.models.target.properties-5.inputpath"></a>

###  InputPath

** InputPath**:  *`object`* 

*Defined in [spec/spec.ts:13791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13791)*




<a id="events.models.target.properties-5.inputpath.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-inputpath"

*Defined in [spec/spec.ts:13792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13792)*





___
<a id="events.models.target.properties-5.inputpath.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13793)*





___
<a id="events.models.target.properties-5.inputpath.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13794)*





___
<a id="events.models.target.properties-5.inputpath.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13795)*





___

___
<a id="events.models.target.properties-5.inputtransformer-1"></a>

###  InputTransformer

** InputTransformer**:  *`object`* 

*Defined in [spec/spec.ts:13797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13797)*




<a id="events.models.target.properties-5.inputtransformer-1.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-inputtransformer"

*Defined in [spec/spec.ts:13798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13798)*





___
<a id="events.models.target.properties-5.inputtransformer-1.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13799)*





___
<a id="events.models.target.properties-5.inputtransformer-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "InputTransformer"

*Defined in [spec/spec.ts:13800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13800)*





___
<a id="events.models.target.properties-5.inputtransformer-1.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13801)*





___

___
<a id="events.models.target.properties-5.kinesisparameters-1"></a>

###  KinesisParameters

** KinesisParameters**:  *`object`* 

*Defined in [spec/spec.ts:13803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13803)*




<a id="events.models.target.properties-5.kinesisparameters-1.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-kinesisparameters"

*Defined in [spec/spec.ts:13804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13804)*





___
<a id="events.models.target.properties-5.kinesisparameters-1.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13805)*





___
<a id="events.models.target.properties-5.kinesisparameters-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "KinesisParameters"

*Defined in [spec/spec.ts:13806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13806)*





___
<a id="events.models.target.properties-5.kinesisparameters-1.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13807)*





___

___
<a id="events.models.target.properties-5.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:13809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13809)*




<a id="events.models.target.properties-5.rolearn.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-rolearn"

*Defined in [spec/spec.ts:13810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13810)*





___
<a id="events.models.target.properties-5.rolearn.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13811)*





___
<a id="events.models.target.properties-5.rolearn.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13812)*





___
<a id="events.models.target.properties-5.rolearn.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13813)*





___

___
<a id="events.models.target.properties-5.runcommandparameters-1"></a>

###  RunCommandParameters

** RunCommandParameters**:  *`object`* 

*Defined in [spec/spec.ts:13815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13815)*




<a id="events.models.target.properties-5.runcommandparameters-1.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-rule-target.html#cfn-events-rule-target-runcommandparameters"

*Defined in [spec/spec.ts:13816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13816)*





___
<a id="events.models.target.properties-5.runcommandparameters-1.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13817)*





___
<a id="events.models.target.properties-5.runcommandparameters-1.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "RunCommandParameters"

*Defined in [spec/spec.ts:13818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13818)*





___
<a id="events.models.target.properties-5.runcommandparameters-1.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13819)*





___

___

___

___

___
<a id="events.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:13622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13622)*




<a id="events.resources.rule"></a>

###  Rule

** Rule**:  *`object`* 

*Defined in [spec/spec.ts:13623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13623)*




<a id="events.resources.rule.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html"

*Defined in [spec/spec.ts:13629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13629)*





___
<a id="events.resources.rule.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Events::Rule"

*Defined in [spec/spec.ts:13676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13676)*





___
<a id="events.resources.rule.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:13624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13624)*




<a id="events.resources.rule.attributes.arn-1"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:13625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13625)*




<a id="events.resources.rule.attributes.arn-1.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13626)*





___

___

___
<a id="events.resources.rule.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13630)*




<a id="events.resources.rule.properties-6.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:13631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13631)*




<a id="events.resources.rule.properties-6.description.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-description"

*Defined in [spec/spec.ts:13632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13632)*





___
<a id="events.resources.rule.properties-6.description.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13633)*





___
<a id="events.resources.rule.properties-6.description.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13634)*





___
<a id="events.resources.rule.properties-6.description.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13635)*





___

___
<a id="events.resources.rule.properties-6.eventpattern"></a>

###  EventPattern

** EventPattern**:  *`object`* 

*Defined in [spec/spec.ts:13637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13637)*




<a id="events.resources.rule.properties-6.eventpattern.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-eventpattern"

*Defined in [spec/spec.ts:13638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13638)*





___
<a id="events.resources.rule.properties-6.eventpattern.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:13639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13639)*





___
<a id="events.resources.rule.properties-6.eventpattern.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13640)*





___
<a id="events.resources.rule.properties-6.eventpattern.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13641)*





___

___
<a id="events.resources.rule.properties-6.name-7"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:13643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13643)*




<a id="events.resources.rule.properties-6.name-7.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-name"

*Defined in [spec/spec.ts:13644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13644)*





___
<a id="events.resources.rule.properties-6.name-7.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13645)*





___
<a id="events.resources.rule.properties-6.name-7.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13646)*





___
<a id="events.resources.rule.properties-6.name-7.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13647)*





___

___
<a id="events.resources.rule.properties-6.rolearn-1"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:13649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13649)*




<a id="events.resources.rule.properties-6.rolearn-1.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-rolearn"

*Defined in [spec/spec.ts:13650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13650)*





___
<a id="events.resources.rule.properties-6.rolearn-1.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13651)*





___
<a id="events.resources.rule.properties-6.rolearn-1.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13652)*





___
<a id="events.resources.rule.properties-6.rolearn-1.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13653)*





___

___
<a id="events.resources.rule.properties-6.scheduleexpression"></a>

###  ScheduleExpression

** ScheduleExpression**:  *`object`* 

*Defined in [spec/spec.ts:13655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13655)*




<a id="events.resources.rule.properties-6.scheduleexpression.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-scheduleexpression"

*Defined in [spec/spec.ts:13656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13656)*





___
<a id="events.resources.rule.properties-6.scheduleexpression.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13657)*





___
<a id="events.resources.rule.properties-6.scheduleexpression.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13658)*





___
<a id="events.resources.rule.properties-6.scheduleexpression.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13659)*





___

___
<a id="events.resources.rule.properties-6.state"></a>

###  State

** State**:  *`object`* 

*Defined in [spec/spec.ts:13661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13661)*




<a id="events.resources.rule.properties-6.state.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-state"

*Defined in [spec/spec.ts:13662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13662)*





___
<a id="events.resources.rule.properties-6.state.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13663)*





___
<a id="events.resources.rule.properties-6.state.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13664)*





___
<a id="events.resources.rule.properties-6.state.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13665)*





___

___
<a id="events.resources.rule.properties-6.targets"></a>

###  Targets

** Targets**:  *`object`* 

*Defined in [spec/spec.ts:13667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13667)*




<a id="events.resources.rule.properties-6.targets.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-rule.html#cfn-events-rule-targets"

*Defined in [spec/spec.ts:13668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13668)*





___
<a id="events.resources.rule.properties-6.targets.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13669)*





___
<a id="events.resources.rule.properties-6.targets.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Target"

*Defined in [spec/spec.ts:13670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13670)*





___
<a id="events.resources.rule.properties-6.targets.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13671)*





___
<a id="events.resources.rule.properties-6.targets.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13672)*





___
<a id="events.resources.rule.properties-6.targets.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13673)*





___

___

___

___

___

<a id="gamelift"></a>

## Object literal: GameLift


<a id="gamelift.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:13953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13953)*




<a id="gamelift.models.ippermission"></a>

###  IpPermission

** IpPermission**:  *`object`* 

*Defined in [spec/spec.ts:14002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14002)*




<a id="gamelift.models.ippermission.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html"

*Defined in [spec/spec.ts:14003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14003)*





___
<a id="gamelift.models.ippermission.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GameLift::Fleet.IpPermission"

*Defined in [spec/spec.ts:14030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14030)*





___
<a id="gamelift.models.ippermission.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14004)*




<a id="gamelift.models.ippermission.properties.fromport"></a>

###  FromPort

** FromPort**:  *`object`* 

*Defined in [spec/spec.ts:14005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14005)*




<a id="gamelift.models.ippermission.properties.fromport.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-fromport"

*Defined in [spec/spec.ts:14006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14006)*





___
<a id="gamelift.models.ippermission.properties.fromport.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:14007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14007)*





___
<a id="gamelift.models.ippermission.properties.fromport.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14008)*





___
<a id="gamelift.models.ippermission.properties.fromport.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14009)*





___

___
<a id="gamelift.models.ippermission.properties.iprange"></a>

###  IpRange

** IpRange**:  *`object`* 

*Defined in [spec/spec.ts:14011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14011)*




<a id="gamelift.models.ippermission.properties.iprange.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-iprange"

*Defined in [spec/spec.ts:14012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14012)*





___
<a id="gamelift.models.ippermission.properties.iprange.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14013)*





___
<a id="gamelift.models.ippermission.properties.iprange.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14014)*





___
<a id="gamelift.models.ippermission.properties.iprange.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14015)*





___

___
<a id="gamelift.models.ippermission.properties.protocol"></a>

###  Protocol

** Protocol**:  *`object`* 

*Defined in [spec/spec.ts:14017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14017)*




<a id="gamelift.models.ippermission.properties.protocol.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-protocol"

*Defined in [spec/spec.ts:14018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14018)*





___
<a id="gamelift.models.ippermission.properties.protocol.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14019)*





___
<a id="gamelift.models.ippermission.properties.protocol.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14020)*





___
<a id="gamelift.models.ippermission.properties.protocol.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14021)*





___

___
<a id="gamelift.models.ippermission.properties.toport"></a>

###  ToPort

** ToPort**:  *`object`* 

*Defined in [spec/spec.ts:14023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14023)*




<a id="gamelift.models.ippermission.properties.toport.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-ec2inboundpermission.html#cfn-gamelift-fleet-ec2inboundpermissions-toport"

*Defined in [spec/spec.ts:14024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14024)*





___
<a id="gamelift.models.ippermission.properties.toport.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:14025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14025)*





___
<a id="gamelift.models.ippermission.properties.toport.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14026)*





___
<a id="gamelift.models.ippermission.properties.toport.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14027)*





___

___

___

___
<a id="gamelift.models.routingstrategy"></a>

###  RoutingStrategy

** RoutingStrategy**:  *`object`* 

*Defined in [spec/spec.ts:13954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13954)*




<a id="gamelift.models.routingstrategy.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html"

*Defined in [spec/spec.ts:13955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13955)*





___
<a id="gamelift.models.routingstrategy.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GameLift::Alias.RoutingStrategy"

*Defined in [spec/spec.ts:13976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13976)*





___
<a id="gamelift.models.routingstrategy.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13956)*




<a id="gamelift.models.routingstrategy.properties-1.fleetid"></a>

###  FleetId

** FleetId**:  *`object`* 

*Defined in [spec/spec.ts:13957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13957)*




<a id="gamelift.models.routingstrategy.properties-1.fleetid.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-fleetid"

*Defined in [spec/spec.ts:13958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13958)*





___
<a id="gamelift.models.routingstrategy.properties-1.fleetid.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13959)*





___
<a id="gamelift.models.routingstrategy.properties-1.fleetid.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13960)*





___
<a id="gamelift.models.routingstrategy.properties-1.fleetid.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13961)*





___

___
<a id="gamelift.models.routingstrategy.properties-1.message"></a>

###  Message

** Message**:  *`object`* 

*Defined in [spec/spec.ts:13963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13963)*




<a id="gamelift.models.routingstrategy.properties-1.message.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-message"

*Defined in [spec/spec.ts:13964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13964)*





___
<a id="gamelift.models.routingstrategy.properties-1.message.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13965)*





___
<a id="gamelift.models.routingstrategy.properties-1.message.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13966)*





___
<a id="gamelift.models.routingstrategy.properties-1.message.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13967)*





___

___
<a id="gamelift.models.routingstrategy.properties-1.type"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:13969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13969)*




<a id="gamelift.models.routingstrategy.properties-1.type.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-alias-routingstrategy.html#cfn-gamelift-alias-routingstrategy-type"

*Defined in [spec/spec.ts:13970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13970)*





___
<a id="gamelift.models.routingstrategy.properties-1.type.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13971)*





___
<a id="gamelift.models.routingstrategy.properties-1.type.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13972)*





___
<a id="gamelift.models.routingstrategy.properties-1.type.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13973)*





___

___

___

___
<a id="gamelift.models.s3location"></a>

###  S3Location

** S3Location**:  *`object`* 

*Defined in [spec/spec.ts:13978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13978)*




<a id="gamelift.models.s3location.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html"

*Defined in [spec/spec.ts:13979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13979)*





___
<a id="gamelift.models.s3location.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GameLift::Build.S3Location"

*Defined in [spec/spec.ts:14000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14000)*





___
<a id="gamelift.models.s3location.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13980)*




<a id="gamelift.models.s3location.properties-2.bucket"></a>

###  Bucket

** Bucket**:  *`object`* 

*Defined in [spec/spec.ts:13981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13981)*




<a id="gamelift.models.s3location.properties-2.bucket.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-bucket"

*Defined in [spec/spec.ts:13982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13982)*





___
<a id="gamelift.models.s3location.properties-2.bucket.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13983)*





___
<a id="gamelift.models.s3location.properties-2.bucket.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13984)*





___
<a id="gamelift.models.s3location.properties-2.bucket.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13985)*





___

___
<a id="gamelift.models.s3location.properties-2.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:13987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13987)*




<a id="gamelift.models.s3location.properties-2.key.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-key"

*Defined in [spec/spec.ts:13988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13988)*





___
<a id="gamelift.models.s3location.properties-2.key.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13989)*





___
<a id="gamelift.models.s3location.properties-2.key.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13990)*





___
<a id="gamelift.models.s3location.properties-2.key.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13991)*





___

___
<a id="gamelift.models.s3location.properties-2.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:13993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13993)*




<a id="gamelift.models.s3location.properties-2.rolearn.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-build-storagelocation.html#cfn-gamelift-build-storage-rolearn"

*Defined in [spec/spec.ts:13994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13994)*





___
<a id="gamelift.models.s3location.properties-2.rolearn.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13995)*





___
<a id="gamelift.models.s3location.properties-2.rolearn.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13996)*





___
<a id="gamelift.models.s3location.properties-2.rolearn.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13997)*





___

___

___

___

___
<a id="gamelift.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:13827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13827)*




<a id="gamelift.resources.alias"></a>

###  Alias

** Alias**:  *`object`* 

*Defined in [spec/spec.ts:13828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13828)*




<a id="gamelift.resources.alias.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html"

*Defined in [spec/spec.ts:13829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13829)*





___
<a id="gamelift.resources.alias.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GameLift::Alias"

*Defined in [spec/spec.ts:13850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13850)*





___
<a id="gamelift.resources.alias.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13830)*




<a id="gamelift.resources.alias.properties-3.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:13831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13831)*




<a id="gamelift.resources.alias.properties-3.description.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-description"

*Defined in [spec/spec.ts:13832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13832)*





___
<a id="gamelift.resources.alias.properties-3.description.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13833)*





___
<a id="gamelift.resources.alias.properties-3.description.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13834)*





___
<a id="gamelift.resources.alias.properties-3.description.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13835)*





___

___
<a id="gamelift.resources.alias.properties-3.name-4"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:13837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13837)*




<a id="gamelift.resources.alias.properties-3.name-4.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-name"

*Defined in [spec/spec.ts:13838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13838)*





___
<a id="gamelift.resources.alias.properties-3.name-4.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13839)*





___
<a id="gamelift.resources.alias.properties-3.name-4.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13840)*





___
<a id="gamelift.resources.alias.properties-3.name-4.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13841)*





___

___
<a id="gamelift.resources.alias.properties-3.routingstrategy-1"></a>

###  RoutingStrategy

** RoutingStrategy**:  *`object`* 

*Defined in [spec/spec.ts:13843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13843)*




<a id="gamelift.resources.alias.properties-3.routingstrategy-1.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-alias.html#cfn-gamelift-alias-routingstrategy"

*Defined in [spec/spec.ts:13844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13844)*





___
<a id="gamelift.resources.alias.properties-3.routingstrategy-1.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13845)*





___
<a id="gamelift.resources.alias.properties-3.routingstrategy-1.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "RoutingStrategy"

*Defined in [spec/spec.ts:13846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13846)*





___
<a id="gamelift.resources.alias.properties-3.routingstrategy-1.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13847)*





___

___

___

___
<a id="gamelift.resources.build"></a>

###  Build

** Build**:  *`object`* 

*Defined in [spec/spec.ts:13852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13852)*




<a id="gamelift.resources.build.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html"

*Defined in [spec/spec.ts:13853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13853)*





___
<a id="gamelift.resources.build.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GameLift::Build"

*Defined in [spec/spec.ts:13874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13874)*





___
<a id="gamelift.resources.build.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13854)*




<a id="gamelift.resources.build.properties-4.name-6"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:13855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13855)*




<a id="gamelift.resources.build.properties-4.name-6.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-name"

*Defined in [spec/spec.ts:13856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13856)*





___
<a id="gamelift.resources.build.properties-4.name-6.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13857)*





___
<a id="gamelift.resources.build.properties-4.name-6.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13858)*





___
<a id="gamelift.resources.build.properties-4.name-6.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13859)*





___

___
<a id="gamelift.resources.build.properties-4.storagelocation"></a>

###  StorageLocation

** StorageLocation**:  *`object`* 

*Defined in [spec/spec.ts:13861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13861)*




<a id="gamelift.resources.build.properties-4.storagelocation.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-storagelocation"

*Defined in [spec/spec.ts:13862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13862)*





___
<a id="gamelift.resources.build.properties-4.storagelocation.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13863)*





___
<a id="gamelift.resources.build.properties-4.storagelocation.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "S3Location"

*Defined in [spec/spec.ts:13864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13864)*





___
<a id="gamelift.resources.build.properties-4.storagelocation.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13865)*





___

___
<a id="gamelift.resources.build.properties-4.version"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:13867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13867)*




<a id="gamelift.resources.build.properties-4.version.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-build.html#cfn-gamelift-build-version"

*Defined in [spec/spec.ts:13868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13868)*





___
<a id="gamelift.resources.build.properties-4.version.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13869)*





___
<a id="gamelift.resources.build.properties-4.version.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13870)*





___
<a id="gamelift.resources.build.properties-4.version.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13871)*





___

___

___

___
<a id="gamelift.resources.fleet"></a>

###  Fleet

** Fleet**:  *`object`* 

*Defined in [spec/spec.ts:13876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13876)*




<a id="gamelift.resources.fleet.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html"

*Defined in [spec/spec.ts:13877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13877)*





___
<a id="gamelift.resources.fleet.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GameLift::Fleet"

*Defined in [spec/spec.ts:13950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13950)*





___
<a id="gamelift.resources.fleet.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:13878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13878)*




<a id="gamelift.resources.fleet.properties-5.buildid"></a>

###  BuildId

** BuildId**:  *`object`* 

*Defined in [spec/spec.ts:13879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13879)*




<a id="gamelift.resources.fleet.properties-5.buildid.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-buildid"

*Defined in [spec/spec.ts:13880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13880)*





___
<a id="gamelift.resources.fleet.properties-5.buildid.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13881)*





___
<a id="gamelift.resources.fleet.properties-5.buildid.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13882)*





___
<a id="gamelift.resources.fleet.properties-5.buildid.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13883)*





___

___
<a id="gamelift.resources.fleet.properties-5.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:13885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13885)*




<a id="gamelift.resources.fleet.properties-5.description-1.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-description"

*Defined in [spec/spec.ts:13886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13886)*





___
<a id="gamelift.resources.fleet.properties-5.description-1.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13887)*





___
<a id="gamelift.resources.fleet.properties-5.description-1.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13888)*





___
<a id="gamelift.resources.fleet.properties-5.description-1.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13889)*





___

___
<a id="gamelift.resources.fleet.properties-5.desiredec2instances"></a>

###  DesiredEC2Instances

** DesiredEC2Instances**:  *`object`* 

*Defined in [spec/spec.ts:13891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13891)*




<a id="gamelift.resources.fleet.properties-5.desiredec2instances.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-desiredec2instances"

*Defined in [spec/spec.ts:13892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13892)*





___
<a id="gamelift.resources.fleet.properties-5.desiredec2instances.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13893)*





___
<a id="gamelift.resources.fleet.properties-5.desiredec2instances.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13894)*





___
<a id="gamelift.resources.fleet.properties-5.desiredec2instances.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13895)*





___

___
<a id="gamelift.resources.fleet.properties-5.ec2inboundpermissions"></a>

###  EC2InboundPermissions

** EC2InboundPermissions**:  *`object`* 

*Defined in [spec/spec.ts:13897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13897)*




<a id="gamelift.resources.fleet.properties-5.ec2inboundpermissions.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2inboundpermissions"

*Defined in [spec/spec.ts:13898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13898)*





___
<a id="gamelift.resources.fleet.properties-5.ec2inboundpermissions.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13899)*





___
<a id="gamelift.resources.fleet.properties-5.ec2inboundpermissions.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "IpPermission"

*Defined in [spec/spec.ts:13900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13900)*





___
<a id="gamelift.resources.fleet.properties-5.ec2inboundpermissions.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13901)*





___
<a id="gamelift.resources.fleet.properties-5.ec2inboundpermissions.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13902)*





___
<a id="gamelift.resources.fleet.properties-5.ec2inboundpermissions.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13903)*





___

___
<a id="gamelift.resources.fleet.properties-5.ec2instancetype"></a>

###  EC2InstanceType

** EC2InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:13905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13905)*




<a id="gamelift.resources.fleet.properties-5.ec2instancetype.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-ec2instancetype"

*Defined in [spec/spec.ts:13906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13906)*





___
<a id="gamelift.resources.fleet.properties-5.ec2instancetype.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13907)*





___
<a id="gamelift.resources.fleet.properties-5.ec2instancetype.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13908)*





___
<a id="gamelift.resources.fleet.properties-5.ec2instancetype.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13909)*





___

___
<a id="gamelift.resources.fleet.properties-5.logpaths"></a>

###  LogPaths

** LogPaths**:  *`object`* 

*Defined in [spec/spec.ts:13911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13911)*




<a id="gamelift.resources.fleet.properties-5.logpaths.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-logpaths"

*Defined in [spec/spec.ts:13912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13912)*





___
<a id="gamelift.resources.fleet.properties-5.logpaths.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13913)*





___
<a id="gamelift.resources.fleet.properties-5.logpaths.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13914)*





___
<a id="gamelift.resources.fleet.properties-5.logpaths.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13915)*





___
<a id="gamelift.resources.fleet.properties-5.logpaths.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:13916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13916)*





___
<a id="gamelift.resources.fleet.properties-5.logpaths.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13917)*





___

___
<a id="gamelift.resources.fleet.properties-5.maxsize"></a>

###  MaxSize

** MaxSize**:  *`object`* 

*Defined in [spec/spec.ts:13919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13919)*




<a id="gamelift.resources.fleet.properties-5.maxsize.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-maxsize"

*Defined in [spec/spec.ts:13920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13920)*





___
<a id="gamelift.resources.fleet.properties-5.maxsize.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13921)*





___
<a id="gamelift.resources.fleet.properties-5.maxsize.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13922)*





___
<a id="gamelift.resources.fleet.properties-5.maxsize.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13923)*





___

___
<a id="gamelift.resources.fleet.properties-5.minsize"></a>

###  MinSize

** MinSize**:  *`object`* 

*Defined in [spec/spec.ts:13925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13925)*




<a id="gamelift.resources.fleet.properties-5.minsize.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-minsize"

*Defined in [spec/spec.ts:13926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13926)*





___
<a id="gamelift.resources.fleet.properties-5.minsize.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:13927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13927)*





___
<a id="gamelift.resources.fleet.properties-5.minsize.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13928)*





___
<a id="gamelift.resources.fleet.properties-5.minsize.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13929)*





___

___
<a id="gamelift.resources.fleet.properties-5.name-8"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:13931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13931)*




<a id="gamelift.resources.fleet.properties-5.name-8.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-name"

*Defined in [spec/spec.ts:13932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13932)*





___
<a id="gamelift.resources.fleet.properties-5.name-8.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13933)*





___
<a id="gamelift.resources.fleet.properties-5.name-8.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13934)*





___
<a id="gamelift.resources.fleet.properties-5.name-8.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:13935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13935)*





___

___
<a id="gamelift.resources.fleet.properties-5.serverlaunchparameters"></a>

###  ServerLaunchParameters

** ServerLaunchParameters**:  *`object`* 

*Defined in [spec/spec.ts:13937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13937)*




<a id="gamelift.resources.fleet.properties-5.serverlaunchparameters.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchparameters"

*Defined in [spec/spec.ts:13938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13938)*





___
<a id="gamelift.resources.fleet.properties-5.serverlaunchparameters.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13939)*





___
<a id="gamelift.resources.fleet.properties-5.serverlaunchparameters.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:13940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13940)*





___
<a id="gamelift.resources.fleet.properties-5.serverlaunchparameters.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13941)*





___

___
<a id="gamelift.resources.fleet.properties-5.serverlaunchpath"></a>

###  ServerLaunchPath

** ServerLaunchPath**:  *`object`* 

*Defined in [spec/spec.ts:13943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13943)*




<a id="gamelift.resources.fleet.properties-5.serverlaunchpath.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#cfn-gamelift-fleet-serverlaunchpath"

*Defined in [spec/spec.ts:13944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13944)*





___
<a id="gamelift.resources.fleet.properties-5.serverlaunchpath.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:13945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13945)*





___
<a id="gamelift.resources.fleet.properties-5.serverlaunchpath.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:13946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13946)*





___
<a id="gamelift.resources.fleet.properties-5.serverlaunchpath.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:13947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L13947)*





___

___

___

___

___

<a id="glue"></a>

## Object literal: Glue


<a id="glue.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:14364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14364)*




<a id="glue.models.action"></a>

###  Action

** Action**:  *`object`* 

*Defined in [spec/spec.ts:14895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14895)*




<a id="glue.models.action.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-action.html"

*Defined in [spec/spec.ts:14896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14896)*





___
<a id="glue.models.action.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Trigger.Action"

*Defined in [spec/spec.ts:14911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14911)*





___
<a id="glue.models.action.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14897)*




<a id="glue.models.action.properties.arguments"></a>

###  Arguments

** Arguments**:  *`object`* 

*Defined in [spec/spec.ts:14904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14904)*




<a id="glue.models.action.properties.arguments.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-action.html#cfn-glue-trigger-action-arguments"

*Defined in [spec/spec.ts:14906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14906)*





___
<a id="glue.models.action.properties.arguments.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14907)*





___
<a id="glue.models.action.properties.arguments.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14905)*





___
<a id="glue.models.action.properties.arguments.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14908)*





___

___
<a id="glue.models.action.properties.jobname"></a>

###  JobName

** JobName**:  *`object`* 

*Defined in [spec/spec.ts:14898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14898)*




<a id="glue.models.action.properties.jobname.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-action.html#cfn-glue-trigger-action-jobname"

*Defined in [spec/spec.ts:14900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14900)*





___
<a id="glue.models.action.properties.jobname.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14901)*





___
<a id="glue.models.action.properties.jobname.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14899)*





___
<a id="glue.models.action.properties.jobname.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14902)*





___

___

___

___
<a id="glue.models.column"></a>

###  Column

** Column**:  *`object`* 

*Defined in [spec/spec.ts:14630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14630)*




<a id="glue.models.column.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-column.html"

*Defined in [spec/spec.ts:14631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14631)*





___
<a id="glue.models.column.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Table.Column"

*Defined in [spec/spec.ts:14652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14652)*





___
<a id="glue.models.column.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14632)*




<a id="glue.models.column.properties-1.comment"></a>

###  Comment

** Comment**:  *`object`* 

*Defined in [spec/spec.ts:14633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14633)*




<a id="glue.models.column.properties-1.comment.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-column.html#cfn-glue-table-column-comment"

*Defined in [spec/spec.ts:14635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14635)*





___
<a id="glue.models.column.properties-1.comment.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14636)*





___
<a id="glue.models.column.properties-1.comment.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14634)*





___
<a id="glue.models.column.properties-1.comment.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14637)*





___

___
<a id="glue.models.column.properties-1.name-2"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14645)*




<a id="glue.models.column.properties-1.name-2.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-column.html#cfn-glue-table-column-name"

*Defined in [spec/spec.ts:14647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14647)*





___
<a id="glue.models.column.properties-1.name-2.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14648)*





___
<a id="glue.models.column.properties-1.name-2.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14646)*





___
<a id="glue.models.column.properties-1.name-2.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14649)*





___

___
<a id="glue.models.column.properties-1.type"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:14639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14639)*




<a id="glue.models.column.properties-1.type.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-column.html#cfn-glue-table-column-type"

*Defined in [spec/spec.ts:14641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14641)*





___
<a id="glue.models.column.properties-1.type.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14642)*





___
<a id="glue.models.column.properties-1.type.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14640)*





___
<a id="glue.models.column.properties-1.type.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14643)*





___

___

___

___
<a id="glue.models.condition"></a>

###  Condition

** Condition**:  *`object`* 

*Defined in [spec/spec.ts:14913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14913)*




<a id="glue.models.condition.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html"

*Defined in [spec/spec.ts:14914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14914)*





___
<a id="glue.models.condition.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Trigger.Condition"

*Defined in [spec/spec.ts:14935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14935)*





___
<a id="glue.models.condition.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14915)*




<a id="glue.models.condition.properties-2.jobname-1"></a>

###  JobName

** JobName**:  *`object`* 

*Defined in [spec/spec.ts:14928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14928)*




<a id="glue.models.condition.properties-2.jobname-1.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html#cfn-glue-trigger-condition-jobname"

*Defined in [spec/spec.ts:14930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14930)*





___
<a id="glue.models.condition.properties-2.jobname-1.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14931)*





___
<a id="glue.models.condition.properties-2.jobname-1.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14929)*





___
<a id="glue.models.condition.properties-2.jobname-1.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14932)*





___

___
<a id="glue.models.condition.properties-2.logicaloperator"></a>

###  LogicalOperator

** LogicalOperator**:  *`object`* 

*Defined in [spec/spec.ts:14922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14922)*




<a id="glue.models.condition.properties-2.logicaloperator.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html#cfn-glue-trigger-condition-logicaloperator"

*Defined in [spec/spec.ts:14924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14924)*





___
<a id="glue.models.condition.properties-2.logicaloperator.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14925)*





___
<a id="glue.models.condition.properties-2.logicaloperator.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14923)*





___
<a id="glue.models.condition.properties-2.logicaloperator.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14926)*





___

___
<a id="glue.models.condition.properties-2.state"></a>

###  State

** State**:  *`object`* 

*Defined in [spec/spec.ts:14916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14916)*




<a id="glue.models.condition.properties-2.state.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-condition.html#cfn-glue-trigger-condition-state"

*Defined in [spec/spec.ts:14918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14918)*





___
<a id="glue.models.condition.properties-2.state.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14919)*





___
<a id="glue.models.condition.properties-2.state.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14917)*





___
<a id="glue.models.condition.properties-2.state.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14920)*





___

___

___

___
<a id="glue.models.connectioninput"></a>

###  ConnectionInput

** ConnectionInput**:  *`object`* 

*Defined in [spec/spec.ts:14395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14395)*




<a id="glue.models.connectioninput.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html"

*Defined in [spec/spec.ts:14396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14396)*





___
<a id="glue.models.connectioninput.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Connection.ConnectionInput"

*Defined in [spec/spec.ts:14436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14436)*





___
<a id="glue.models.connectioninput.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14397)*




<a id="glue.models.connectioninput.properties-3.connectionproperties"></a>

###  ConnectionProperties

** ConnectionProperties**:  *`object`* 

*Defined in [spec/spec.ts:14423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14423)*




<a id="glue.models.connectioninput.properties-3.connectionproperties.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectionproperties"

*Defined in [spec/spec.ts:14425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14425)*





___
<a id="glue.models.connectioninput.properties-3.connectionproperties.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14426)*





___
<a id="glue.models.connectioninput.properties-3.connectionproperties.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14424)*





___
<a id="glue.models.connectioninput.properties-3.connectionproperties.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14427)*





___

___
<a id="glue.models.connectioninput.properties-3.connectiontype"></a>

###  ConnectionType

** ConnectionType**:  *`object`* 

*Defined in [spec/spec.ts:14404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14404)*




<a id="glue.models.connectioninput.properties-3.connectiontype.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-connectiontype"

*Defined in [spec/spec.ts:14406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14406)*





___
<a id="glue.models.connectioninput.properties-3.connectiontype.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14407)*





___
<a id="glue.models.connectioninput.properties-3.connectiontype.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14405)*





___
<a id="glue.models.connectioninput.properties-3.connectiontype.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14408)*





___

___
<a id="glue.models.connectioninput.properties-3.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:14398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14398)*




<a id="glue.models.connectioninput.properties-3.description.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-description"

*Defined in [spec/spec.ts:14400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14400)*





___
<a id="glue.models.connectioninput.properties-3.description.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14401)*





___
<a id="glue.models.connectioninput.properties-3.description.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14399)*





___
<a id="glue.models.connectioninput.properties-3.description.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14402)*





___

___
<a id="glue.models.connectioninput.properties-3.matchcriteria"></a>

###  MatchCriteria

** MatchCriteria**:  *`object`* 

*Defined in [spec/spec.ts:14410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14410)*




<a id="glue.models.connectioninput.properties-3.matchcriteria.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-matchcriteria"

*Defined in [spec/spec.ts:14414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14414)*





___
<a id="glue.models.connectioninput.properties-3.matchcriteria.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14411)*





___
<a id="glue.models.connectioninput.properties-3.matchcriteria.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14413)*





___
<a id="glue.models.connectioninput.properties-3.matchcriteria.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14412)*





___
<a id="glue.models.connectioninput.properties-3.matchcriteria.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14415)*





___

___
<a id="glue.models.connectioninput.properties-3.name-5"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14429)*




<a id="glue.models.connectioninput.properties-3.name-5.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-name"

*Defined in [spec/spec.ts:14431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14431)*





___
<a id="glue.models.connectioninput.properties-3.name-5.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14432)*





___
<a id="glue.models.connectioninput.properties-3.name-5.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14430)*





___
<a id="glue.models.connectioninput.properties-3.name-5.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14433)*





___

___
<a id="glue.models.connectioninput.properties-3.physicalconnectionrequirements"></a>

###  PhysicalConnectionRequirements

** PhysicalConnectionRequirements**:  *`object`* 

*Defined in [spec/spec.ts:14417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14417)*




<a id="glue.models.connectioninput.properties-3.physicalconnectionrequirements.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-connectioninput.html#cfn-glue-connection-connectioninput-physicalconnectionrequirements"

*Defined in [spec/spec.ts:14420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14420)*





___
<a id="glue.models.connectioninput.properties-3.physicalconnectionrequirements.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14419)*





___
<a id="glue.models.connectioninput.properties-3.physicalconnectionrequirements.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "PhysicalConnectionRequirements"

*Defined in [spec/spec.ts:14418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14418)*





___
<a id="glue.models.connectioninput.properties-3.physicalconnectionrequirements.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14421)*





___

___

___

___
<a id="glue.models.connectionslist"></a>

###  ConnectionsList

** ConnectionsList**:  *`object`* 

*Defined in [spec/spec.ts:14587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14587)*




<a id="glue.models.connectionslist.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-connectionslist.html"

*Defined in [spec/spec.ts:14588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14588)*





___
<a id="glue.models.connectionslist.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Job.ConnectionsList"

*Defined in [spec/spec.ts:14598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14598)*





___
<a id="glue.models.connectionslist.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14589)*




<a id="glue.models.connectionslist.properties-4.connections"></a>

###  Connections

** Connections**:  *`object`* 

*Defined in [spec/spec.ts:14590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14590)*




<a id="glue.models.connectionslist.properties-4.connections.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-connectionslist.html#cfn-glue-job-connectionslist-connections"

*Defined in [spec/spec.ts:14594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14594)*





___
<a id="glue.models.connectionslist.properties-4.connections.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14591)*





___
<a id="glue.models.connectionslist.properties-4.connections.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14593)*





___
<a id="glue.models.connectionslist.properties-4.connections.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14592)*





___
<a id="glue.models.connectionslist.properties-4.connections.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14595)*





___

___

___

___
<a id="glue.models.databaseinput"></a>

###  DatabaseInput

** DatabaseInput**:  *`object`* 

*Defined in [spec/spec.ts:14557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14557)*




<a id="glue.models.databaseinput.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html"

*Defined in [spec/spec.ts:14558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14558)*





___
<a id="glue.models.databaseinput.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Database.DatabaseInput"

*Defined in [spec/spec.ts:14585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14585)*





___
<a id="glue.models.databaseinput.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14559)*




<a id="glue.models.databaseinput.properties-5.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:14566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14566)*




<a id="glue.models.databaseinput.properties-5.description-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-description"

*Defined in [spec/spec.ts:14568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14568)*





___
<a id="glue.models.databaseinput.properties-5.description-1.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14569)*





___
<a id="glue.models.databaseinput.properties-5.description-1.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14567)*





___
<a id="glue.models.databaseinput.properties-5.description-1.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14570)*





___

___
<a id="glue.models.databaseinput.properties-5.locationuri"></a>

###  LocationUri

** LocationUri**:  *`object`* 

*Defined in [spec/spec.ts:14560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14560)*




<a id="glue.models.databaseinput.properties-5.locationuri.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-locationuri"

*Defined in [spec/spec.ts:14562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14562)*





___
<a id="glue.models.databaseinput.properties-5.locationuri.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14563)*





___
<a id="glue.models.databaseinput.properties-5.locationuri.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14561)*





___
<a id="glue.models.databaseinput.properties-5.locationuri.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14564)*





___

___
<a id="glue.models.databaseinput.properties-5.name-8"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14578)*




<a id="glue.models.databaseinput.properties-5.name-8.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-name"

*Defined in [spec/spec.ts:14580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14580)*





___
<a id="glue.models.databaseinput.properties-5.name-8.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14581)*





___
<a id="glue.models.databaseinput.properties-5.name-8.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14579)*





___
<a id="glue.models.databaseinput.properties-5.name-8.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14582)*





___

___
<a id="glue.models.databaseinput.properties-5.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:14572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14572)*




<a id="glue.models.databaseinput.properties-5.parameters.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html#cfn-glue-database-databaseinput-parameters"

*Defined in [spec/spec.ts:14574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14574)*





___
<a id="glue.models.databaseinput.properties-5.parameters.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14575)*





___
<a id="glue.models.databaseinput.properties-5.parameters.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14573)*





___
<a id="glue.models.databaseinput.properties-5.parameters.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14576)*





___

___

___

___
<a id="glue.models.executionproperty"></a>

###  ExecutionProperty

** ExecutionProperty**:  *`object`* 

*Defined in [spec/spec.ts:14600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14600)*




<a id="glue.models.executionproperty.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html"

*Defined in [spec/spec.ts:14601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14601)*





___
<a id="glue.models.executionproperty.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Job.ExecutionProperty"

*Defined in [spec/spec.ts:14610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14610)*





___
<a id="glue.models.executionproperty.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14602)*




<a id="glue.models.executionproperty.properties-6.maxconcurrentruns"></a>

###  MaxConcurrentRuns

** MaxConcurrentRuns**:  *`object`* 

*Defined in [spec/spec.ts:14603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14603)*




<a id="glue.models.executionproperty.properties-6.maxconcurrentruns.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-executionproperty.html#cfn-glue-job-executionproperty-maxconcurrentruns"

*Defined in [spec/spec.ts:14605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14605)*





___
<a id="glue.models.executionproperty.properties-6.maxconcurrentruns.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:14606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14606)*





___
<a id="glue.models.executionproperty.properties-6.maxconcurrentruns.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14604)*





___
<a id="glue.models.executionproperty.properties-6.maxconcurrentruns.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14607)*





___

___

___

___
<a id="glue.models.grokclassifier"></a>

###  GrokClassifier

** GrokClassifier**:  *`object`* 

*Defined in [spec/spec.ts:14365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14365)*




<a id="glue.models.grokclassifier.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html"

*Defined in [spec/spec.ts:14366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14366)*





___
<a id="glue.models.grokclassifier.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Classifier.GrokClassifier"

*Defined in [spec/spec.ts:14393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14393)*





___
<a id="glue.models.grokclassifier.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14367)*




<a id="glue.models.grokclassifier.properties-7.classification"></a>

###  Classification

** Classification**:  *`object`* 

*Defined in [spec/spec.ts:14380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14380)*




<a id="glue.models.grokclassifier.properties-7.classification.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-classification"

*Defined in [spec/spec.ts:14382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14382)*





___
<a id="glue.models.grokclassifier.properties-7.classification.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14383)*





___
<a id="glue.models.grokclassifier.properties-7.classification.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14381)*





___
<a id="glue.models.grokclassifier.properties-7.classification.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14384)*





___

___
<a id="glue.models.grokclassifier.properties-7.custompatterns"></a>

###  CustomPatterns

** CustomPatterns**:  *`object`* 

*Defined in [spec/spec.ts:14368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14368)*




<a id="glue.models.grokclassifier.properties-7.custompatterns.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-custompatterns"

*Defined in [spec/spec.ts:14370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14370)*





___
<a id="glue.models.grokclassifier.properties-7.custompatterns.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14371)*





___
<a id="glue.models.grokclassifier.properties-7.custompatterns.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14369)*





___
<a id="glue.models.grokclassifier.properties-7.custompatterns.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14372)*





___

___
<a id="glue.models.grokclassifier.properties-7.grokpattern"></a>

###  GrokPattern

** GrokPattern**:  *`object`* 

*Defined in [spec/spec.ts:14374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14374)*




<a id="glue.models.grokclassifier.properties-7.grokpattern.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-grokpattern"

*Defined in [spec/spec.ts:14376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14376)*





___
<a id="glue.models.grokclassifier.properties-7.grokpattern.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14377)*





___
<a id="glue.models.grokclassifier.properties-7.grokpattern.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14375)*





___
<a id="glue.models.grokclassifier.properties-7.grokpattern.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14378)*





___

___
<a id="glue.models.grokclassifier.properties-7.name-11"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14386)*




<a id="glue.models.grokclassifier.properties-7.name-11.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-grokclassifier.html#cfn-glue-classifier-grokclassifier-name"

*Defined in [spec/spec.ts:14388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14388)*





___
<a id="glue.models.grokclassifier.properties-7.name-11.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14389)*





___
<a id="glue.models.grokclassifier.properties-7.name-11.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14387)*





___
<a id="glue.models.grokclassifier.properties-7.name-11.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14390)*





___

___

___

___
<a id="glue.models.jdbctarget"></a>

###  JdbcTarget

** JdbcTarget**:  *`object`* 

*Defined in [spec/spec.ts:14463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14463)*




<a id="glue.models.jdbctarget.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html"

*Defined in [spec/spec.ts:14464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14464)*





___
<a id="glue.models.jdbctarget.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Crawler.JdbcTarget"

*Defined in [spec/spec.ts:14486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14486)*





___
<a id="glue.models.jdbctarget.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14465)*




<a id="glue.models.jdbctarget.properties-8.connectionname"></a>

###  ConnectionName

** ConnectionName**:  *`object`* 

*Defined in [spec/spec.ts:14466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14466)*




<a id="glue.models.jdbctarget.properties-8.connectionname.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html#cfn-glue-crawler-jdbctarget-connectionname"

*Defined in [spec/spec.ts:14468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14468)*





___
<a id="glue.models.jdbctarget.properties-8.connectionname.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14469)*





___
<a id="glue.models.jdbctarget.properties-8.connectionname.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14467)*





___
<a id="glue.models.jdbctarget.properties-8.connectionname.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14470)*





___

___
<a id="glue.models.jdbctarget.properties-8.exclusions"></a>

###  Exclusions

** Exclusions**:  *`object`* 

*Defined in [spec/spec.ts:14478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14478)*




<a id="glue.models.jdbctarget.properties-8.exclusions.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html#cfn-glue-crawler-jdbctarget-exclusions"

*Defined in [spec/spec.ts:14482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14482)*





___
<a id="glue.models.jdbctarget.properties-8.exclusions.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14479)*





___
<a id="glue.models.jdbctarget.properties-8.exclusions.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14481)*





___
<a id="glue.models.jdbctarget.properties-8.exclusions.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14480)*





___
<a id="glue.models.jdbctarget.properties-8.exclusions.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14483)*





___

___
<a id="glue.models.jdbctarget.properties-8.path"></a>

###  Path

** Path**:  *`object`* 

*Defined in [spec/spec.ts:14472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14472)*




<a id="glue.models.jdbctarget.properties-8.path.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html#cfn-glue-crawler-jdbctarget-path"

*Defined in [spec/spec.ts:14474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14474)*





___
<a id="glue.models.jdbctarget.properties-8.path.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14475)*





___
<a id="glue.models.jdbctarget.properties-8.path.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14473)*





___
<a id="glue.models.jdbctarget.properties-8.path.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14476)*





___

___

___

___
<a id="glue.models.jobcommand"></a>

###  JobCommand

** JobCommand**:  *`object`* 

*Defined in [spec/spec.ts:14612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14612)*




<a id="glue.models.jobcommand.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html"

*Defined in [spec/spec.ts:14613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14613)*





___
<a id="glue.models.jobcommand.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Job.JobCommand"

*Defined in [spec/spec.ts:14628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14628)*





___
<a id="glue.models.jobcommand.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14614)*




<a id="glue.models.jobcommand.properties-9.name-14"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14621)*




<a id="glue.models.jobcommand.properties-9.name-14.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-name"

*Defined in [spec/spec.ts:14623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14623)*





___
<a id="glue.models.jobcommand.properties-9.name-14.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14624)*





___
<a id="glue.models.jobcommand.properties-9.name-14.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14622)*





___
<a id="glue.models.jobcommand.properties-9.name-14.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14625)*





___

___
<a id="glue.models.jobcommand.properties-9.scriptlocation"></a>

###  ScriptLocation

** ScriptLocation**:  *`object`* 

*Defined in [spec/spec.ts:14615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14615)*




<a id="glue.models.jobcommand.properties-9.scriptlocation.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-job-jobcommand.html#cfn-glue-job-jobcommand-scriptlocation"

*Defined in [spec/spec.ts:14617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14617)*





___
<a id="glue.models.jobcommand.properties-9.scriptlocation.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14618)*





___
<a id="glue.models.jobcommand.properties-9.scriptlocation.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14616)*





___
<a id="glue.models.jobcommand.properties-9.scriptlocation.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14619)*





___

___

___

___
<a id="glue.models.order"></a>

###  Order

** Order**:  *`object`* 

*Defined in [spec/spec.ts:14654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14654)*




<a id="glue.models.order.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html"

*Defined in [spec/spec.ts:14655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14655)*





___
<a id="glue.models.order.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Table.Order"

*Defined in [spec/spec.ts:14670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14670)*





___
<a id="glue.models.order.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14656)*




<a id="glue.models.order.properties-10.column-1"></a>

###  Column

** Column**:  *`object`* 

*Defined in [spec/spec.ts:14657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14657)*




<a id="glue.models.order.properties-10.column-1.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html#cfn-glue-table-order-column"

*Defined in [spec/spec.ts:14659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14659)*





___
<a id="glue.models.order.properties-10.column-1.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14660)*





___
<a id="glue.models.order.properties-10.column-1.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14658)*





___
<a id="glue.models.order.properties-10.column-1.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14661)*





___

___
<a id="glue.models.order.properties-10.sortorder"></a>

###  SortOrder

** SortOrder**:  *`object`* 

*Defined in [spec/spec.ts:14663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14663)*




<a id="glue.models.order.properties-10.sortorder.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-order.html#cfn-glue-table-order-sortorder"

*Defined in [spec/spec.ts:14665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14665)*





___
<a id="glue.models.order.properties-10.sortorder.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:14666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14666)*





___
<a id="glue.models.order.properties-10.sortorder.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14664)*





___
<a id="glue.models.order.properties-10.sortorder.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14667)*





___

___

___

___
<a id="glue.models.partitioninput"></a>

###  PartitionInput

** PartitionInput**:  *`object`* 

*Defined in [spec/spec.ts:14672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14672)*




<a id="glue.models.partitioninput.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html"

*Defined in [spec/spec.ts:14673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14673)*





___
<a id="glue.models.partitioninput.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Partition.PartitionInput"

*Defined in [spec/spec.ts:14695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14695)*





___
<a id="glue.models.partitioninput.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14674)*




<a id="glue.models.partitioninput.properties-11.parameters-1"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:14675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14675)*




<a id="glue.models.partitioninput.properties-11.parameters-1.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-parameters"

*Defined in [spec/spec.ts:14677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14677)*





___
<a id="glue.models.partitioninput.properties-11.parameters-1.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14678)*





___
<a id="glue.models.partitioninput.properties-11.parameters-1.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14676)*





___
<a id="glue.models.partitioninput.properties-11.parameters-1.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14679)*





___

___
<a id="glue.models.partitioninput.properties-11.storagedescriptor"></a>

###  StorageDescriptor

** StorageDescriptor**:  *`object`* 

*Defined in [spec/spec.ts:14681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14681)*




<a id="glue.models.partitioninput.properties-11.storagedescriptor.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-storagedescriptor"

*Defined in [spec/spec.ts:14684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14684)*





___
<a id="glue.models.partitioninput.properties-11.storagedescriptor.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14683)*





___
<a id="glue.models.partitioninput.properties-11.storagedescriptor.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "StorageDescriptor"

*Defined in [spec/spec.ts:14682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14682)*





___
<a id="glue.models.partitioninput.properties-11.storagedescriptor.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14685)*





___

___
<a id="glue.models.partitioninput.properties-11.values"></a>

###  Values

** Values**:  *`object`* 

*Defined in [spec/spec.ts:14687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14687)*




<a id="glue.models.partitioninput.properties-11.values.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-partition-partitioninput.html#cfn-glue-partition-partitioninput-values"

*Defined in [spec/spec.ts:14691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14691)*





___
<a id="glue.models.partitioninput.properties-11.values.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14688)*





___
<a id="glue.models.partitioninput.properties-11.values.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14690)*





___
<a id="glue.models.partitioninput.properties-11.values.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14689)*





___
<a id="glue.models.partitioninput.properties-11.values.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14692)*





___

___

___

___
<a id="glue.models.physicalconnectionrequirements-1"></a>

###  PhysicalConnectionRequirements

** PhysicalConnectionRequirements**:  *`object`* 

*Defined in [spec/spec.ts:14438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14438)*




<a id="glue.models.physicalconnectionrequirements-1.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html"

*Defined in [spec/spec.ts:14439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14439)*





___
<a id="glue.models.physicalconnectionrequirements-1.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Connection.PhysicalConnectionRequirements"

*Defined in [spec/spec.ts:14461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14461)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14440)*




<a id="glue.models.physicalconnectionrequirements-1.properties-12.availabilityzone"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:14441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14441)*




<a id="glue.models.physicalconnectionrequirements-1.properties-12.availabilityzone.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-availabilityzone"

*Defined in [spec/spec.ts:14443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14443)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.availabilityzone.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14444)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.availabilityzone.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14442)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.availabilityzone.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14445)*





___

___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.securitygroupidlist"></a>

###  SecurityGroupIdList

** SecurityGroupIdList**:  *`object`* 

*Defined in [spec/spec.ts:14447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14447)*




<a id="glue.models.physicalconnectionrequirements-1.properties-12.securitygroupidlist.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-securitygroupidlist"

*Defined in [spec/spec.ts:14451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14451)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.securitygroupidlist.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14448)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.securitygroupidlist.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14450)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.securitygroupidlist.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14449)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.securitygroupidlist.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14452)*





___

___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.subnetid"></a>

###  SubnetId

** SubnetId**:  *`object`* 

*Defined in [spec/spec.ts:14454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14454)*




<a id="glue.models.physicalconnectionrequirements-1.properties-12.subnetid.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-connection-physicalconnectionrequirements.html#cfn-glue-connection-physicalconnectionrequirements-subnetid"

*Defined in [spec/spec.ts:14456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14456)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.subnetid.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14457)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.subnetid.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14455)*





___
<a id="glue.models.physicalconnectionrequirements-1.properties-12.subnetid.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14458)*





___

___

___

___
<a id="glue.models.predicate"></a>

###  Predicate

** Predicate**:  *`object`* 

*Defined in [spec/spec.ts:14937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14937)*




<a id="glue.models.predicate.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html"

*Defined in [spec/spec.ts:14938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14938)*





___
<a id="glue.models.predicate.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Trigger.Predicate"

*Defined in [spec/spec.ts:14954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14954)*





___
<a id="glue.models.predicate.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14939)*




<a id="glue.models.predicate.properties-13.conditions"></a>

###  Conditions

** Conditions**:  *`object`* 

*Defined in [spec/spec.ts:14946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14946)*




<a id="glue.models.predicate.properties-13.conditions.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-conditions"

*Defined in [spec/spec.ts:14949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14949)*





___
<a id="glue.models.predicate.properties-13.conditions.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Condition"

*Defined in [spec/spec.ts:14950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14950)*





___
<a id="glue.models.predicate.properties-13.conditions.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14948)*





___
<a id="glue.models.predicate.properties-13.conditions.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14947)*





___
<a id="glue.models.predicate.properties-13.conditions.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14951)*





___

___
<a id="glue.models.predicate.properties-13.logical"></a>

###  Logical

** Logical**:  *`object`* 

*Defined in [spec/spec.ts:14940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14940)*




<a id="glue.models.predicate.properties-13.logical.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-trigger-predicate.html#cfn-glue-trigger-predicate-logical"

*Defined in [spec/spec.ts:14942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14942)*





___
<a id="glue.models.predicate.properties-13.logical.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14943)*





___
<a id="glue.models.predicate.properties-13.logical.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14941)*





___
<a id="glue.models.predicate.properties-13.logical.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14944)*





___

___

___

___
<a id="glue.models.s3target"></a>

###  S3Target

** S3Target**:  *`object`* 

*Defined in [spec/spec.ts:14488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14488)*




<a id="glue.models.s3target.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-s3target.html"

*Defined in [spec/spec.ts:14489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14489)*





___
<a id="glue.models.s3target.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Crawler.S3Target"

*Defined in [spec/spec.ts:14505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14505)*





___
<a id="glue.models.s3target.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14490)*




<a id="glue.models.s3target.properties-14.exclusions-1"></a>

###  Exclusions

** Exclusions**:  *`object`* 

*Defined in [spec/spec.ts:14497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14497)*




<a id="glue.models.s3target.properties-14.exclusions-1.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-s3target.html#cfn-glue-crawler-s3target-exclusions"

*Defined in [spec/spec.ts:14501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14501)*





___
<a id="glue.models.s3target.properties-14.exclusions-1.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14498)*





___
<a id="glue.models.s3target.properties-14.exclusions-1.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14500)*





___
<a id="glue.models.s3target.properties-14.exclusions-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14499)*





___
<a id="glue.models.s3target.properties-14.exclusions-1.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14502)*





___

___
<a id="glue.models.s3target.properties-14.path-1"></a>

###  Path

** Path**:  *`object`* 

*Defined in [spec/spec.ts:14491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14491)*




<a id="glue.models.s3target.properties-14.path-1.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-s3target.html#cfn-glue-crawler-s3target-path"

*Defined in [spec/spec.ts:14493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14493)*





___
<a id="glue.models.s3target.properties-14.path-1.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14494)*





___
<a id="glue.models.s3target.properties-14.path-1.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14492)*





___
<a id="glue.models.s3target.properties-14.path-1.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14495)*





___

___

___

___
<a id="glue.models.schedule"></a>

###  Schedule

** Schedule**:  *`object`* 

*Defined in [spec/spec.ts:14507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14507)*




<a id="glue.models.schedule.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html"

*Defined in [spec/spec.ts:14508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14508)*





___
<a id="glue.models.schedule.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Crawler.Schedule"

*Defined in [spec/spec.ts:14517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14517)*





___
<a id="glue.models.schedule.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14509)*




<a id="glue.models.schedule.properties-15.scheduleexpression"></a>

###  ScheduleExpression

** ScheduleExpression**:  *`object`* 

*Defined in [spec/spec.ts:14510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14510)*




<a id="glue.models.schedule.properties-15.scheduleexpression.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html#cfn-glue-crawler-schedule-scheduleexpression"

*Defined in [spec/spec.ts:14512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14512)*





___
<a id="glue.models.schedule.properties-15.scheduleexpression.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14513)*





___
<a id="glue.models.schedule.properties-15.scheduleexpression.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14511)*





___
<a id="glue.models.schedule.properties-15.scheduleexpression.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14514)*





___

___

___

___
<a id="glue.models.schemachangepolicy"></a>

###  SchemaChangePolicy

** SchemaChangePolicy**:  *`object`* 

*Defined in [spec/spec.ts:14519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14519)*




<a id="glue.models.schemachangepolicy.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html"

*Defined in [spec/spec.ts:14520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14520)*





___
<a id="glue.models.schemachangepolicy.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Crawler.SchemaChangePolicy"

*Defined in [spec/spec.ts:14535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14535)*





___
<a id="glue.models.schemachangepolicy.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14521)*




<a id="glue.models.schemachangepolicy.properties-16.deletebehavior"></a>

###  DeleteBehavior

** DeleteBehavior**:  *`object`* 

*Defined in [spec/spec.ts:14528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14528)*




<a id="glue.models.schemachangepolicy.properties-16.deletebehavior.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-deletebehavior"

*Defined in [spec/spec.ts:14530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14530)*





___
<a id="glue.models.schemachangepolicy.properties-16.deletebehavior.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14531)*





___
<a id="glue.models.schemachangepolicy.properties-16.deletebehavior.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14529)*





___
<a id="glue.models.schemachangepolicy.properties-16.deletebehavior.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14532)*





___

___
<a id="glue.models.schemachangepolicy.properties-16.updatebehavior"></a>

###  UpdateBehavior

** UpdateBehavior**:  *`object`* 

*Defined in [spec/spec.ts:14522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14522)*




<a id="glue.models.schemachangepolicy.properties-16.updatebehavior.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html#cfn-glue-crawler-schemachangepolicy-updatebehavior"

*Defined in [spec/spec.ts:14524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14524)*





___
<a id="glue.models.schemachangepolicy.properties-16.updatebehavior.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14525)*





___
<a id="glue.models.schemachangepolicy.properties-16.updatebehavior.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14523)*





___
<a id="glue.models.schemachangepolicy.properties-16.updatebehavior.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14526)*





___

___

___

___
<a id="glue.models.serdeinfo"></a>

###  SerdeInfo

** SerdeInfo**:  *`object`* 

*Defined in [spec/spec.ts:14697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14697)*




<a id="glue.models.serdeinfo.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html"

*Defined in [spec/spec.ts:14698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14698)*





___
<a id="glue.models.serdeinfo.name-22"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Table.SerdeInfo"

*Defined in [spec/spec.ts:14719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14719)*





___
<a id="glue.models.serdeinfo.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14699)*




<a id="glue.models.serdeinfo.properties-17.name-23"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14712)*




<a id="glue.models.serdeinfo.properties-17.name-23.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-name"

*Defined in [spec/spec.ts:14714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14714)*





___
<a id="glue.models.serdeinfo.properties-17.name-23.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14715)*





___
<a id="glue.models.serdeinfo.properties-17.name-23.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14713)*





___
<a id="glue.models.serdeinfo.properties-17.name-23.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14716)*





___

___
<a id="glue.models.serdeinfo.properties-17.parameters-2"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:14700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14700)*




<a id="glue.models.serdeinfo.properties-17.parameters-2.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-parameters"

*Defined in [spec/spec.ts:14702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14702)*





___
<a id="glue.models.serdeinfo.properties-17.parameters-2.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14703)*





___
<a id="glue.models.serdeinfo.properties-17.parameters-2.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14701)*





___
<a id="glue.models.serdeinfo.properties-17.parameters-2.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14704)*





___

___
<a id="glue.models.serdeinfo.properties-17.serializationlibrary"></a>

###  SerializationLibrary

** SerializationLibrary**:  *`object`* 

*Defined in [spec/spec.ts:14706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14706)*




<a id="glue.models.serdeinfo.properties-17.serializationlibrary.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-serdeinfo.html#cfn-glue-table-serdeinfo-serializationlibrary"

*Defined in [spec/spec.ts:14708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14708)*





___
<a id="glue.models.serdeinfo.properties-17.serializationlibrary.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14709)*





___
<a id="glue.models.serdeinfo.properties-17.serializationlibrary.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14707)*





___
<a id="glue.models.serdeinfo.properties-17.serializationlibrary.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14710)*





___

___

___

___
<a id="glue.models.skewedinfo"></a>

###  SkewedInfo

** SkewedInfo**:  *`object`* 

*Defined in [spec/spec.ts:14721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14721)*




<a id="glue.models.skewedinfo.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html"

*Defined in [spec/spec.ts:14722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14722)*





___
<a id="glue.models.skewedinfo.name-24"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Table.SkewedInfo"

*Defined in [spec/spec.ts:14745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14745)*





___
<a id="glue.models.skewedinfo.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14723)*




<a id="glue.models.skewedinfo.properties-18.skewedcolumnnames"></a>

###  SkewedColumnNames

** SkewedColumnNames**:  *`object`* 

*Defined in [spec/spec.ts:14724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14724)*




<a id="glue.models.skewedinfo.properties-18.skewedcolumnnames.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnnames"

*Defined in [spec/spec.ts:14728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14728)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnnames.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14725)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnnames.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14727)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnnames.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14726)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnnames.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14729)*





___

___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvaluelocationmaps"></a>

###  SkewedColumnValueLocationMaps

** SkewedColumnValueLocationMaps**:  *`object`* 

*Defined in [spec/spec.ts:14738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14738)*




<a id="glue.models.skewedinfo.properties-18.skewedcolumnvaluelocationmaps.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvaluelocationmaps"

*Defined in [spec/spec.ts:14740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14740)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvaluelocationmaps.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14741)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvaluelocationmaps.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14739)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvaluelocationmaps.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14742)*





___

___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvalues"></a>

###  SkewedColumnValues

** SkewedColumnValues**:  *`object`* 

*Defined in [spec/spec.ts:14731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14731)*




<a id="glue.models.skewedinfo.properties-18.skewedcolumnvalues.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-skewedinfo.html#cfn-glue-table-skewedinfo-skewedcolumnvalues"

*Defined in [spec/spec.ts:14735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14735)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvalues.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14732)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvalues.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14734)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvalues.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14733)*





___
<a id="glue.models.skewedinfo.properties-18.skewedcolumnvalues.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14736)*





___

___

___

___
<a id="glue.models.storagedescriptor-1"></a>

###  StorageDescriptor

** StorageDescriptor**:  *`object`* 

*Defined in [spec/spec.ts:14747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14747)*




<a id="glue.models.storagedescriptor-1.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html"

*Defined in [spec/spec.ts:14748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14748)*





___
<a id="glue.models.storagedescriptor-1.name-25"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Table.StorageDescriptor"

*Defined in [spec/spec.ts:14826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14826)*





___
<a id="glue.models.storagedescriptor-1.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14749)*




<a id="glue.models.storagedescriptor-1.properties-19.bucketcolumns"></a>

###  BucketColumns

** BucketColumns**:  *`object`* 

*Defined in [spec/spec.ts:14762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14762)*




<a id="glue.models.storagedescriptor-1.properties-19.bucketcolumns.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-bucketcolumns"

*Defined in [spec/spec.ts:14766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14766)*





___
<a id="glue.models.storagedescriptor-1.properties-19.bucketcolumns.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14763)*





___
<a id="glue.models.storagedescriptor-1.properties-19.bucketcolumns.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14765)*





___
<a id="glue.models.storagedescriptor-1.properties-19.bucketcolumns.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14764)*





___
<a id="glue.models.storagedescriptor-1.properties-19.bucketcolumns.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14767)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.columns"></a>

###  Columns

** Columns**:  *`object`* 

*Defined in [spec/spec.ts:14793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14793)*




<a id="glue.models.storagedescriptor-1.properties-19.columns.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-columns"

*Defined in [spec/spec.ts:14796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14796)*





___
<a id="glue.models.storagedescriptor-1.properties-19.columns.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Column"

*Defined in [spec/spec.ts:14797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14797)*





___
<a id="glue.models.storagedescriptor-1.properties-19.columns.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14795)*





___
<a id="glue.models.storagedescriptor-1.properties-19.columns.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14794)*





___
<a id="glue.models.storagedescriptor-1.properties-19.columns.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14798)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.compressed"></a>

###  Compressed

** Compressed**:  *`object`* 

*Defined in [spec/spec.ts:14813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14813)*




<a id="glue.models.storagedescriptor-1.properties-19.compressed.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-compressed"

*Defined in [spec/spec.ts:14815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14815)*





___
<a id="glue.models.storagedescriptor-1.properties-19.compressed.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:14816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14816)*





___
<a id="glue.models.storagedescriptor-1.properties-19.compressed.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14814)*





___
<a id="glue.models.storagedescriptor-1.properties-19.compressed.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14817)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.inputformat"></a>

###  InputFormat

** InputFormat**:  *`object`* 

*Defined in [spec/spec.ts:14775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14775)*




<a id="glue.models.storagedescriptor-1.properties-19.inputformat.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-inputformat"

*Defined in [spec/spec.ts:14777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14777)*





___
<a id="glue.models.storagedescriptor-1.properties-19.inputformat.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14778)*





___
<a id="glue.models.storagedescriptor-1.properties-19.inputformat.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14776)*





___
<a id="glue.models.storagedescriptor-1.properties-19.inputformat.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14779)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.location"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:14819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14819)*




<a id="glue.models.storagedescriptor-1.properties-19.location.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-location"

*Defined in [spec/spec.ts:14821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14821)*





___
<a id="glue.models.storagedescriptor-1.properties-19.location.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14822)*





___
<a id="glue.models.storagedescriptor-1.properties-19.location.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14820)*





___
<a id="glue.models.storagedescriptor-1.properties-19.location.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14823)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.numberofbuckets"></a>

###  NumberOfBuckets

** NumberOfBuckets**:  *`object`* 

*Defined in [spec/spec.ts:14781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14781)*




<a id="glue.models.storagedescriptor-1.properties-19.numberofbuckets.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-numberofbuckets"

*Defined in [spec/spec.ts:14783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14783)*





___
<a id="glue.models.storagedescriptor-1.properties-19.numberofbuckets.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:14784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14784)*





___
<a id="glue.models.storagedescriptor-1.properties-19.numberofbuckets.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14782)*





___
<a id="glue.models.storagedescriptor-1.properties-19.numberofbuckets.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14785)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.outputformat"></a>

###  OutputFormat

** OutputFormat**:  *`object`* 

*Defined in [spec/spec.ts:14787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14787)*




<a id="glue.models.storagedescriptor-1.properties-19.outputformat.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-outputformat"

*Defined in [spec/spec.ts:14789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14789)*





___
<a id="glue.models.storagedescriptor-1.properties-19.outputformat.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14790)*





___
<a id="glue.models.storagedescriptor-1.properties-19.outputformat.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14788)*





___
<a id="glue.models.storagedescriptor-1.properties-19.outputformat.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14791)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.parameters-3"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:14756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14756)*




<a id="glue.models.storagedescriptor-1.properties-19.parameters-3.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-parameters"

*Defined in [spec/spec.ts:14758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14758)*





___
<a id="glue.models.storagedescriptor-1.properties-19.parameters-3.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14759)*





___
<a id="glue.models.storagedescriptor-1.properties-19.parameters-3.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14757)*





___
<a id="glue.models.storagedescriptor-1.properties-19.parameters-3.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14760)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.serdeinfo-1"></a>

###  SerdeInfo

** SerdeInfo**:  *`object`* 

*Defined in [spec/spec.ts:14800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14800)*




<a id="glue.models.storagedescriptor-1.properties-19.serdeinfo-1.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-serdeinfo"

*Defined in [spec/spec.ts:14803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14803)*





___
<a id="glue.models.storagedescriptor-1.properties-19.serdeinfo-1.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14802)*





___
<a id="glue.models.storagedescriptor-1.properties-19.serdeinfo-1.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "SerdeInfo"

*Defined in [spec/spec.ts:14801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14801)*





___
<a id="glue.models.storagedescriptor-1.properties-19.serdeinfo-1.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14804)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.skewedinfo-1"></a>

###  SkewedInfo

** SkewedInfo**:  *`object`* 

*Defined in [spec/spec.ts:14769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14769)*




<a id="glue.models.storagedescriptor-1.properties-19.skewedinfo-1.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-skewedinfo"

*Defined in [spec/spec.ts:14772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14772)*





___
<a id="glue.models.storagedescriptor-1.properties-19.skewedinfo-1.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14771)*





___
<a id="glue.models.storagedescriptor-1.properties-19.skewedinfo-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "SkewedInfo"

*Defined in [spec/spec.ts:14770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14770)*





___
<a id="glue.models.storagedescriptor-1.properties-19.skewedinfo-1.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14773)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.sortcolumns"></a>

###  SortColumns

** SortColumns**:  *`object`* 

*Defined in [spec/spec.ts:14806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14806)*




<a id="glue.models.storagedescriptor-1.properties-19.sortcolumns.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-sortcolumns"

*Defined in [spec/spec.ts:14809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14809)*





___
<a id="glue.models.storagedescriptor-1.properties-19.sortcolumns.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Order"

*Defined in [spec/spec.ts:14810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14810)*





___
<a id="glue.models.storagedescriptor-1.properties-19.sortcolumns.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14808)*





___
<a id="glue.models.storagedescriptor-1.properties-19.sortcolumns.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14807)*





___
<a id="glue.models.storagedescriptor-1.properties-19.sortcolumns.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14811)*





___

___
<a id="glue.models.storagedescriptor-1.properties-19.storedassubdirectories"></a>

###  StoredAsSubDirectories

** StoredAsSubDirectories**:  *`object`* 

*Defined in [spec/spec.ts:14750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14750)*




<a id="glue.models.storagedescriptor-1.properties-19.storedassubdirectories.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-storagedescriptor.html#cfn-glue-table-storagedescriptor-storedassubdirectories"

*Defined in [spec/spec.ts:14752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14752)*





___
<a id="glue.models.storagedescriptor-1.properties-19.storedassubdirectories.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:14753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14753)*





___
<a id="glue.models.storagedescriptor-1.properties-19.storedassubdirectories.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14751)*





___
<a id="glue.models.storagedescriptor-1.properties-19.storedassubdirectories.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14754)*





___

___

___

___
<a id="glue.models.tableinput"></a>

###  TableInput

** TableInput**:  *`object`* 

*Defined in [spec/spec.ts:14828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14828)*




<a id="glue.models.tableinput.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html"

*Defined in [spec/spec.ts:14829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14829)*





___
<a id="glue.models.tableinput.name-26"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Table.TableInput"

*Defined in [spec/spec.ts:14893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14893)*





___
<a id="glue.models.tableinput.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14830)*




<a id="glue.models.tableinput.properties-20.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:14843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14843)*




<a id="glue.models.tableinput.properties-20.description-2.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-description"

*Defined in [spec/spec.ts:14845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14845)*





___
<a id="glue.models.tableinput.properties-20.description-2.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14846)*





___
<a id="glue.models.tableinput.properties-20.description-2.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14844)*





___
<a id="glue.models.tableinput.properties-20.description-2.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14847)*





___

___
<a id="glue.models.tableinput.properties-20.name-27"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14886)*




<a id="glue.models.tableinput.properties-20.name-27.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-name"

*Defined in [spec/spec.ts:14888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14888)*





___
<a id="glue.models.tableinput.properties-20.name-27.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14889)*





___
<a id="glue.models.tableinput.properties-20.name-27.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14887)*





___
<a id="glue.models.tableinput.properties-20.name-27.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14890)*





___

___
<a id="glue.models.tableinput.properties-20.owner"></a>

###  Owner

** Owner**:  *`object`* 

*Defined in [spec/spec.ts:14831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14831)*




<a id="glue.models.tableinput.properties-20.owner.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-owner"

*Defined in [spec/spec.ts:14833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14833)*





___
<a id="glue.models.tableinput.properties-20.owner.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14834)*





___
<a id="glue.models.tableinput.properties-20.owner.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14832)*





___
<a id="glue.models.tableinput.properties-20.owner.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14835)*





___

___
<a id="glue.models.tableinput.properties-20.parameters-4"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:14855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14855)*




<a id="glue.models.tableinput.properties-20.parameters-4.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-parameters"

*Defined in [spec/spec.ts:14857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14857)*





___
<a id="glue.models.tableinput.properties-20.parameters-4.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14858)*





___
<a id="glue.models.tableinput.properties-20.parameters-4.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14856)*





___
<a id="glue.models.tableinput.properties-20.parameters-4.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14859)*





___

___
<a id="glue.models.tableinput.properties-20.partitionkeys"></a>

###  PartitionKeys

** PartitionKeys**:  *`object`* 

*Defined in [spec/spec.ts:14873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14873)*




<a id="glue.models.tableinput.properties-20.partitionkeys.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-partitionkeys"

*Defined in [spec/spec.ts:14876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14876)*





___
<a id="glue.models.tableinput.properties-20.partitionkeys.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Column"

*Defined in [spec/spec.ts:14877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14877)*





___
<a id="glue.models.tableinput.properties-20.partitionkeys.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14875)*





___
<a id="glue.models.tableinput.properties-20.partitionkeys.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14874)*





___
<a id="glue.models.tableinput.properties-20.partitionkeys.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14878)*





___

___
<a id="glue.models.tableinput.properties-20.retention"></a>

###  Retention

** Retention**:  *`object`* 

*Defined in [spec/spec.ts:14880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14880)*




<a id="glue.models.tableinput.properties-20.retention.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-retention"

*Defined in [spec/spec.ts:14882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14882)*





___
<a id="glue.models.tableinput.properties-20.retention.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:14883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14883)*





___
<a id="glue.models.tableinput.properties-20.retention.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14881)*





___
<a id="glue.models.tableinput.properties-20.retention.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14884)*





___

___
<a id="glue.models.tableinput.properties-20.storagedescriptor-2"></a>

###  StorageDescriptor

** StorageDescriptor**:  *`object`* 

*Defined in [spec/spec.ts:14867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14867)*




<a id="glue.models.tableinput.properties-20.storagedescriptor-2.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-storagedescriptor"

*Defined in [spec/spec.ts:14870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14870)*





___
<a id="glue.models.tableinput.properties-20.storagedescriptor-2.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14869)*





___
<a id="glue.models.tableinput.properties-20.storagedescriptor-2.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "StorageDescriptor"

*Defined in [spec/spec.ts:14868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14868)*





___
<a id="glue.models.tableinput.properties-20.storagedescriptor-2.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14871)*





___

___
<a id="glue.models.tableinput.properties-20.tabletype"></a>

###  TableType

** TableType**:  *`object`* 

*Defined in [spec/spec.ts:14849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14849)*




<a id="glue.models.tableinput.properties-20.tabletype.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-tabletype"

*Defined in [spec/spec.ts:14851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14851)*





___
<a id="glue.models.tableinput.properties-20.tabletype.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14852)*





___
<a id="glue.models.tableinput.properties-20.tabletype.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14850)*





___
<a id="glue.models.tableinput.properties-20.tabletype.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14853)*





___

___
<a id="glue.models.tableinput.properties-20.viewexpandedtext"></a>

###  ViewExpandedText

** ViewExpandedText**:  *`object`* 

*Defined in [spec/spec.ts:14861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14861)*




<a id="glue.models.tableinput.properties-20.viewexpandedtext.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-viewexpandedtext"

*Defined in [spec/spec.ts:14863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14863)*





___
<a id="glue.models.tableinput.properties-20.viewexpandedtext.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14864)*





___
<a id="glue.models.tableinput.properties-20.viewexpandedtext.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14862)*





___
<a id="glue.models.tableinput.properties-20.viewexpandedtext.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14865)*





___

___
<a id="glue.models.tableinput.properties-20.vieworiginaltext"></a>

###  ViewOriginalText

** ViewOriginalText**:  *`object`* 

*Defined in [spec/spec.ts:14837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14837)*




<a id="glue.models.tableinput.properties-20.vieworiginaltext.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableinput.html#cfn-glue-table-tableinput-vieworiginaltext"

*Defined in [spec/spec.ts:14839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14839)*





___
<a id="glue.models.tableinput.properties-20.vieworiginaltext.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14840)*





___
<a id="glue.models.tableinput.properties-20.vieworiginaltext.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14838)*





___
<a id="glue.models.tableinput.properties-20.vieworiginaltext.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14841)*





___

___

___

___
<a id="glue.models.targets"></a>

###  Targets

** Targets**:  *`object`* 

*Defined in [spec/spec.ts:14537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14537)*




<a id="glue.models.targets.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html"

*Defined in [spec/spec.ts:14538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14538)*





___
<a id="glue.models.targets.name-28"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Crawler.Targets"

*Defined in [spec/spec.ts:14555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14555)*





___
<a id="glue.models.targets.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14539)*




<a id="glue.models.targets.properties-21.jdbctargets"></a>

###  JdbcTargets

** JdbcTargets**:  *`object`* 

*Defined in [spec/spec.ts:14547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14547)*




<a id="glue.models.targets.properties-21.jdbctargets.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html#cfn-glue-crawler-targets-jdbctargets"

*Defined in [spec/spec.ts:14550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14550)*





___
<a id="glue.models.targets.properties-21.jdbctargets.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "JdbcTarget"

*Defined in [spec/spec.ts:14551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14551)*





___
<a id="glue.models.targets.properties-21.jdbctargets.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14549)*





___
<a id="glue.models.targets.properties-21.jdbctargets.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14548)*





___
<a id="glue.models.targets.properties-21.jdbctargets.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14552)*





___

___
<a id="glue.models.targets.properties-21.s3targets"></a>

###  S3Targets

** S3Targets**:  *`object`* 

*Defined in [spec/spec.ts:14540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14540)*




<a id="glue.models.targets.properties-21.s3targets.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html#cfn-glue-crawler-targets-s3targets"

*Defined in [spec/spec.ts:14543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14543)*





___
<a id="glue.models.targets.properties-21.s3targets.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "S3Target"

*Defined in [spec/spec.ts:14544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14544)*





___
<a id="glue.models.targets.properties-21.s3targets.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14542)*





___
<a id="glue.models.targets.properties-21.s3targets.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14541)*





___
<a id="glue.models.targets.properties-21.s3targets.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14545)*





___

___

___

___

___
<a id="glue.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:14035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14035)*




<a id="glue.resources.classifier"></a>

###  Classifier

** Classifier**:  *`object`* 

*Defined in [spec/spec.ts:14036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14036)*




<a id="glue.resources.classifier.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html"

*Defined in [spec/spec.ts:14037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14037)*





___
<a id="glue.resources.classifier.name-29"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Classifier"

*Defined in [spec/spec.ts:14046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14046)*





___
<a id="glue.resources.classifier.properties-22"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14038)*




<a id="glue.resources.classifier.properties-22.grokclassifier-1"></a>

###  GrokClassifier

** GrokClassifier**:  *`object`* 

*Defined in [spec/spec.ts:14039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14039)*




<a id="glue.resources.classifier.properties-22.grokclassifier-1.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-classifier.html#cfn-glue-classifier-grokclassifier"

*Defined in [spec/spec.ts:14042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14042)*





___
<a id="glue.resources.classifier.properties-22.grokclassifier-1.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14041)*





___
<a id="glue.resources.classifier.properties-22.grokclassifier-1.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "GrokClassifier"

*Defined in [spec/spec.ts:14040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14040)*





___
<a id="glue.resources.classifier.properties-22.grokclassifier-1.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14043)*





___

___

___

___
<a id="glue.resources.connection"></a>

###  Connection

** Connection**:  *`object`* 

*Defined in [spec/spec.ts:14048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14048)*




<a id="glue.resources.connection.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html"

*Defined in [spec/spec.ts:14049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14049)*





___
<a id="glue.resources.connection.name-30"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Connection"

*Defined in [spec/spec.ts:14064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14064)*





___
<a id="glue.resources.connection.properties-23"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14050)*




<a id="glue.resources.connection.properties-23.catalogid"></a>

###  CatalogId

** CatalogId**:  *`object`* 

*Defined in [spec/spec.ts:14057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14057)*




<a id="glue.resources.connection.properties-23.catalogid.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-catalogid"

*Defined in [spec/spec.ts:14059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14059)*





___
<a id="glue.resources.connection.properties-23.catalogid.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14060)*





___
<a id="glue.resources.connection.properties-23.catalogid.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14058)*





___
<a id="glue.resources.connection.properties-23.catalogid.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14061)*





___

___
<a id="glue.resources.connection.properties-23.connectioninput-1"></a>

###  ConnectionInput

** ConnectionInput**:  *`object`* 

*Defined in [spec/spec.ts:14051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14051)*




<a id="glue.resources.connection.properties-23.connectioninput-1.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-connection.html#cfn-glue-connection-connectioninput"

*Defined in [spec/spec.ts:14054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14054)*





___
<a id="glue.resources.connection.properties-23.connectioninput-1.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14053)*





___
<a id="glue.resources.connection.properties-23.connectioninput-1.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "ConnectionInput"

*Defined in [spec/spec.ts:14052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14052)*





___
<a id="glue.resources.connection.properties-23.connectioninput-1.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14055)*





___

___

___

___
<a id="glue.resources.crawler"></a>

###  Crawler

** Crawler**:  *`object`* 

*Defined in [spec/spec.ts:14066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14066)*




<a id="glue.resources.crawler.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html"

*Defined in [spec/spec.ts:14067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14067)*





___
<a id="glue.resources.crawler.name-31"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Crawler"

*Defined in [spec/spec.ts:14125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14125)*





___
<a id="glue.resources.crawler.properties-24"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14068)*




<a id="glue.resources.crawler.properties-24.classifiers"></a>

###  Classifiers

** Classifiers**:  *`object`* 

*Defined in [spec/spec.ts:14075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14075)*




<a id="glue.resources.crawler.properties-24.classifiers.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-classifiers"

*Defined in [spec/spec.ts:14079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14079)*





___
<a id="glue.resources.crawler.properties-24.classifiers.primitiveitemtype-9"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14076)*





___
<a id="glue.resources.crawler.properties-24.classifiers.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14078)*





___
<a id="glue.resources.crawler.properties-24.classifiers.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14077)*





___
<a id="glue.resources.crawler.properties-24.classifiers.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14080)*





___

___
<a id="glue.resources.crawler.properties-24.databasename"></a>

###  DatabaseName

** DatabaseName**:  *`object`* 

*Defined in [spec/spec.ts:14100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14100)*




<a id="glue.resources.crawler.properties-24.databasename.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-databasename"

*Defined in [spec/spec.ts:14102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14102)*





___
<a id="glue.resources.crawler.properties-24.databasename.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14103)*





___
<a id="glue.resources.crawler.properties-24.databasename.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14101)*





___
<a id="glue.resources.crawler.properties-24.databasename.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14104)*





___

___
<a id="glue.resources.crawler.properties-24.description-3"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:14082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14082)*




<a id="glue.resources.crawler.properties-24.description-3.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-description"

*Defined in [spec/spec.ts:14084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14084)*





___
<a id="glue.resources.crawler.properties-24.description-3.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14085)*





___
<a id="glue.resources.crawler.properties-24.description-3.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14083)*





___
<a id="glue.resources.crawler.properties-24.description-3.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14086)*





___

___
<a id="glue.resources.crawler.properties-24.name-32"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14118)*




<a id="glue.resources.crawler.properties-24.name-32.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-name"

*Defined in [spec/spec.ts:14120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14120)*





___
<a id="glue.resources.crawler.properties-24.name-32.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14121)*





___
<a id="glue.resources.crawler.properties-24.name-32.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14119)*





___
<a id="glue.resources.crawler.properties-24.name-32.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14122)*





___

___
<a id="glue.resources.crawler.properties-24.role"></a>

###  Role

** Role**:  *`object`* 

*Defined in [spec/spec.ts:14069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14069)*




<a id="glue.resources.crawler.properties-24.role.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-role"

*Defined in [spec/spec.ts:14071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14071)*





___
<a id="glue.resources.crawler.properties-24.role.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14072)*





___
<a id="glue.resources.crawler.properties-24.role.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14070)*





___
<a id="glue.resources.crawler.properties-24.role.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14073)*





___

___
<a id="glue.resources.crawler.properties-24.schedule-1"></a>

###  Schedule

** Schedule**:  *`object`* 

*Defined in [spec/spec.ts:14094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14094)*




<a id="glue.resources.crawler.properties-24.schedule-1.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-schedule"

*Defined in [spec/spec.ts:14097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14097)*





___
<a id="glue.resources.crawler.properties-24.schedule-1.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14096)*





___
<a id="glue.resources.crawler.properties-24.schedule-1.type-24"></a>

###  Type

**●  Type**:  *`string`*  = "Schedule"

*Defined in [spec/spec.ts:14095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14095)*





___
<a id="glue.resources.crawler.properties-24.schedule-1.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14098)*





___

___
<a id="glue.resources.crawler.properties-24.schemachangepolicy-1"></a>

###  SchemaChangePolicy

** SchemaChangePolicy**:  *`object`* 

*Defined in [spec/spec.ts:14088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14088)*




<a id="glue.resources.crawler.properties-24.schemachangepolicy-1.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-schemachangepolicy"

*Defined in [spec/spec.ts:14091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14091)*





___
<a id="glue.resources.crawler.properties-24.schemachangepolicy-1.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14090)*





___
<a id="glue.resources.crawler.properties-24.schemachangepolicy-1.type-25"></a>

###  Type

**●  Type**:  *`string`*  = "SchemaChangePolicy"

*Defined in [spec/spec.ts:14089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14089)*





___
<a id="glue.resources.crawler.properties-24.schemachangepolicy-1.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14092)*





___

___
<a id="glue.resources.crawler.properties-24.tableprefix"></a>

###  TablePrefix

** TablePrefix**:  *`object`* 

*Defined in [spec/spec.ts:14112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14112)*




<a id="glue.resources.crawler.properties-24.tableprefix.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-tableprefix"

*Defined in [spec/spec.ts:14114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14114)*





___
<a id="glue.resources.crawler.properties-24.tableprefix.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14115)*





___
<a id="glue.resources.crawler.properties-24.tableprefix.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14113)*





___
<a id="glue.resources.crawler.properties-24.tableprefix.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14116)*





___

___
<a id="glue.resources.crawler.properties-24.targets-1"></a>

###  Targets

** Targets**:  *`object`* 

*Defined in [spec/spec.ts:14106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14106)*




<a id="glue.resources.crawler.properties-24.targets-1.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#cfn-glue-crawler-targets"

*Defined in [spec/spec.ts:14109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14109)*





___
<a id="glue.resources.crawler.properties-24.targets-1.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14108)*





___
<a id="glue.resources.crawler.properties-24.targets-1.type-26"></a>

###  Type

**●  Type**:  *`string`*  = "Targets"

*Defined in [spec/spec.ts:14107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14107)*





___
<a id="glue.resources.crawler.properties-24.targets-1.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14110)*





___

___

___

___
<a id="glue.resources.database"></a>

###  Database

** Database**:  *`object`* 

*Defined in [spec/spec.ts:14127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14127)*




<a id="glue.resources.database.documentation-111"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html"

*Defined in [spec/spec.ts:14128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14128)*





___
<a id="glue.resources.database.name-33"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Database"

*Defined in [spec/spec.ts:14143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14143)*





___
<a id="glue.resources.database.properties-25"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14129)*




<a id="glue.resources.database.properties-25.catalogid-1"></a>

###  CatalogId

** CatalogId**:  *`object`* 

*Defined in [spec/spec.ts:14136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14136)*




<a id="glue.resources.database.properties-25.catalogid-1.documentation-112"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-catalogid"

*Defined in [spec/spec.ts:14138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14138)*





___
<a id="glue.resources.database.properties-25.catalogid-1.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14139)*





___
<a id="glue.resources.database.properties-25.catalogid-1.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14137)*





___
<a id="glue.resources.database.properties-25.catalogid-1.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14140)*





___

___
<a id="glue.resources.database.properties-25.databaseinput-1"></a>

###  DatabaseInput

** DatabaseInput**:  *`object`* 

*Defined in [spec/spec.ts:14130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14130)*




<a id="glue.resources.database.properties-25.databaseinput-1.documentation-113"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html#cfn-glue-database-databaseinput"

*Defined in [spec/spec.ts:14133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14133)*





___
<a id="glue.resources.database.properties-25.databaseinput-1.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14132)*





___
<a id="glue.resources.database.properties-25.databaseinput-1.type-27"></a>

###  Type

**●  Type**:  *`string`*  = "DatabaseInput"

*Defined in [spec/spec.ts:14131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14131)*





___
<a id="glue.resources.database.properties-25.databaseinput-1.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14134)*





___

___

___

___
<a id="glue.resources.devendpoint"></a>

###  DevEndpoint

** DevEndpoint**:  *`object`* 

*Defined in [spec/spec.ts:14145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14145)*




<a id="glue.resources.devendpoint.documentation-114"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html"

*Defined in [spec/spec.ts:14146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14146)*





___
<a id="glue.resources.devendpoint.name-34"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::DevEndpoint"

*Defined in [spec/spec.ts:14198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14198)*





___
<a id="glue.resources.devendpoint.properties-26"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14147)*




<a id="glue.resources.devendpoint.properties-26.endpointname"></a>

###  EndpointName

** EndpointName**:  *`object`* 

*Defined in [spec/spec.ts:14154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14154)*




<a id="glue.resources.devendpoint.properties-26.endpointname.documentation-115"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-endpointname"

*Defined in [spec/spec.ts:14156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14156)*





___
<a id="glue.resources.devendpoint.properties-26.endpointname.primitivetype-61"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14157)*





___
<a id="glue.resources.devendpoint.properties-26.endpointname.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14155)*





___
<a id="glue.resources.devendpoint.properties-26.endpointname.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14158)*





___

___
<a id="glue.resources.devendpoint.properties-26.extrajarss3path"></a>

###  ExtraJarsS3Path

** ExtraJarsS3Path**:  *`object`* 

*Defined in [spec/spec.ts:14148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14148)*




<a id="glue.resources.devendpoint.properties-26.extrajarss3path.documentation-116"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrajarss3path"

*Defined in [spec/spec.ts:14150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14150)*





___
<a id="glue.resources.devendpoint.properties-26.extrajarss3path.primitivetype-62"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14151)*





___
<a id="glue.resources.devendpoint.properties-26.extrajarss3path.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14149)*





___
<a id="glue.resources.devendpoint.properties-26.extrajarss3path.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14152)*





___

___
<a id="glue.resources.devendpoint.properties-26.extrapythonlibss3path"></a>

###  ExtraPythonLibsS3Path

** ExtraPythonLibsS3Path**:  *`object`* 

*Defined in [spec/spec.ts:14178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14178)*




<a id="glue.resources.devendpoint.properties-26.extrapythonlibss3path.documentation-117"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-extrapythonlibss3path"

*Defined in [spec/spec.ts:14180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14180)*





___
<a id="glue.resources.devendpoint.properties-26.extrapythonlibss3path.primitivetype-63"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14181)*





___
<a id="glue.resources.devendpoint.properties-26.extrapythonlibss3path.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14179](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14179)*





___
<a id="glue.resources.devendpoint.properties-26.extrapythonlibss3path.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14182)*





___

___
<a id="glue.resources.devendpoint.properties-26.numberofnodes"></a>

###  NumberOfNodes

** NumberOfNodes**:  *`object`* 

*Defined in [spec/spec.ts:14166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14166)*




<a id="glue.resources.devendpoint.properties-26.numberofnodes.documentation-118"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-numberofnodes"

*Defined in [spec/spec.ts:14168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14168)*





___
<a id="glue.resources.devendpoint.properties-26.numberofnodes.primitivetype-64"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:14169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14169)*





___
<a id="glue.resources.devendpoint.properties-26.numberofnodes.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14167)*





___
<a id="glue.resources.devendpoint.properties-26.numberofnodes.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14170)*





___

___
<a id="glue.resources.devendpoint.properties-26.publickey"></a>

###  PublicKey

** PublicKey**:  *`object`* 

*Defined in [spec/spec.ts:14160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14160)*




<a id="glue.resources.devendpoint.properties-26.publickey.documentation-119"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-publickey"

*Defined in [spec/spec.ts:14162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14162)*





___
<a id="glue.resources.devendpoint.properties-26.publickey.primitivetype-65"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14163)*





___
<a id="glue.resources.devendpoint.properties-26.publickey.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14161)*





___
<a id="glue.resources.devendpoint.properties-26.publickey.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14164)*





___

___
<a id="glue.resources.devendpoint.properties-26.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:14191](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14191)*




<a id="glue.resources.devendpoint.properties-26.rolearn.documentation-120"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-rolearn"

*Defined in [spec/spec.ts:14193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14193)*





___
<a id="glue.resources.devendpoint.properties-26.rolearn.primitivetype-66"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14194)*





___
<a id="glue.resources.devendpoint.properties-26.rolearn.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14192)*





___
<a id="glue.resources.devendpoint.properties-26.rolearn.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14195)*





___

___
<a id="glue.resources.devendpoint.properties-26.securitygroupids"></a>

###  SecurityGroupIds

** SecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:14184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14184)*




<a id="glue.resources.devendpoint.properties-26.securitygroupids.documentation-121"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-securitygroupids"

*Defined in [spec/spec.ts:14188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14188)*





___
<a id="glue.resources.devendpoint.properties-26.securitygroupids.primitiveitemtype-10"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14185](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14185)*





___
<a id="glue.resources.devendpoint.properties-26.securitygroupids.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14187)*





___
<a id="glue.resources.devendpoint.properties-26.securitygroupids.type-28"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14186)*





___
<a id="glue.resources.devendpoint.properties-26.securitygroupids.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14189)*





___

___
<a id="glue.resources.devendpoint.properties-26.subnetid-1"></a>

###  SubnetId

** SubnetId**:  *`object`* 

*Defined in [spec/spec.ts:14172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14172)*




<a id="glue.resources.devendpoint.properties-26.subnetid-1.documentation-122"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-devendpoint.html#cfn-glue-devendpoint-subnetid"

*Defined in [spec/spec.ts:14174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14174)*





___
<a id="glue.resources.devendpoint.properties-26.subnetid-1.primitivetype-67"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14175)*





___
<a id="glue.resources.devendpoint.properties-26.subnetid-1.required-95"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14173)*





___
<a id="glue.resources.devendpoint.properties-26.subnetid-1.updatetype-95"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14176)*





___

___

___

___
<a id="glue.resources.job"></a>

###  Job

** Job**:  *`object`* 

*Defined in [spec/spec.ts:14200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14200)*




<a id="glue.resources.job.documentation-123"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html"

*Defined in [spec/spec.ts:14201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14201)*





___
<a id="glue.resources.job.name-35"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Job"

*Defined in [spec/spec.ts:14264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14264)*





___
<a id="glue.resources.job.properties-27"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14202)*




<a id="glue.resources.job.properties-27.allocatedcapacity"></a>

###  AllocatedCapacity

** AllocatedCapacity**:  *`object`* 

*Defined in [spec/spec.ts:14245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14245)*




<a id="glue.resources.job.properties-27.allocatedcapacity.documentation-124"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-allocatedcapacity"

*Defined in [spec/spec.ts:14247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14247)*





___
<a id="glue.resources.job.properties-27.allocatedcapacity.primitivetype-68"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:14248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14248)*





___
<a id="glue.resources.job.properties-27.allocatedcapacity.required-96"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14246)*





___
<a id="glue.resources.job.properties-27.allocatedcapacity.updatetype-96"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14249)*





___

___
<a id="glue.resources.job.properties-27.command"></a>

###  Command

** Command**:  *`object`* 

*Defined in [spec/spec.ts:14239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14239)*




<a id="glue.resources.job.properties-27.command.documentation-125"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-command"

*Defined in [spec/spec.ts:14242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14242)*





___
<a id="glue.resources.job.properties-27.command.required-97"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14241)*





___
<a id="glue.resources.job.properties-27.command.type-29"></a>

###  Type

**●  Type**:  *`string`*  = "JobCommand"

*Defined in [spec/spec.ts:14240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14240)*





___
<a id="glue.resources.job.properties-27.command.updatetype-97"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14243)*





___

___
<a id="glue.resources.job.properties-27.connections-1"></a>

###  Connections

** Connections**:  *`object`* 

*Defined in [spec/spec.ts:14215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14215)*




<a id="glue.resources.job.properties-27.connections-1.documentation-126"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-connections"

*Defined in [spec/spec.ts:14218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14218)*





___
<a id="glue.resources.job.properties-27.connections-1.required-98"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14217)*





___
<a id="glue.resources.job.properties-27.connections-1.type-30"></a>

###  Type

**●  Type**:  *`string`*  = "ConnectionsList"

*Defined in [spec/spec.ts:14216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14216)*





___
<a id="glue.resources.job.properties-27.connections-1.updatetype-98"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14219)*





___

___
<a id="glue.resources.job.properties-27.defaultarguments"></a>

###  DefaultArguments

** DefaultArguments**:  *`object`* 

*Defined in [spec/spec.ts:14209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14209)*




<a id="glue.resources.job.properties-27.defaultarguments.documentation-127"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-defaultarguments"

*Defined in [spec/spec.ts:14211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14211)*





___
<a id="glue.resources.job.properties-27.defaultarguments.primitivetype-69"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:14212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14212)*





___
<a id="glue.resources.job.properties-27.defaultarguments.required-99"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14210)*





___
<a id="glue.resources.job.properties-27.defaultarguments.updatetype-99"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14213)*





___

___
<a id="glue.resources.job.properties-27.description-4"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:14227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14227)*




<a id="glue.resources.job.properties-27.description-4.documentation-128"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-description"

*Defined in [spec/spec.ts:14229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14229)*





___
<a id="glue.resources.job.properties-27.description-4.primitivetype-70"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14230)*





___
<a id="glue.resources.job.properties-27.description-4.required-100"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14228)*





___
<a id="glue.resources.job.properties-27.description-4.updatetype-100"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14231)*





___

___
<a id="glue.resources.job.properties-27.executionproperty-1"></a>

###  ExecutionProperty

** ExecutionProperty**:  *`object`* 

*Defined in [spec/spec.ts:14251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14251)*




<a id="glue.resources.job.properties-27.executionproperty-1.documentation-129"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-executionproperty"

*Defined in [spec/spec.ts:14254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14254)*





___
<a id="glue.resources.job.properties-27.executionproperty-1.required-101"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14253)*





___
<a id="glue.resources.job.properties-27.executionproperty-1.type-31"></a>

###  Type

**●  Type**:  *`string`*  = "ExecutionProperty"

*Defined in [spec/spec.ts:14252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14252)*





___
<a id="glue.resources.job.properties-27.executionproperty-1.updatetype-101"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14255)*





___

___
<a id="glue.resources.job.properties-27.loguri"></a>

###  LogUri

** LogUri**:  *`object`* 

*Defined in [spec/spec.ts:14233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14233)*




<a id="glue.resources.job.properties-27.loguri.documentation-130"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-loguri"

*Defined in [spec/spec.ts:14235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14235)*





___
<a id="glue.resources.job.properties-27.loguri.primitivetype-71"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14236)*





___
<a id="glue.resources.job.properties-27.loguri.required-102"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14234)*





___
<a id="glue.resources.job.properties-27.loguri.updatetype-102"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14237)*





___

___
<a id="glue.resources.job.properties-27.maxretries"></a>

###  MaxRetries

** MaxRetries**:  *`object`* 

*Defined in [spec/spec.ts:14221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14221)*




<a id="glue.resources.job.properties-27.maxretries.documentation-131"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-maxretries"

*Defined in [spec/spec.ts:14223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14223)*





___
<a id="glue.resources.job.properties-27.maxretries.primitivetype-72"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:14224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14224)*





___
<a id="glue.resources.job.properties-27.maxretries.required-103"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14222)*





___
<a id="glue.resources.job.properties-27.maxretries.updatetype-103"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14225)*





___

___
<a id="glue.resources.job.properties-27.name-36"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14257)*




<a id="glue.resources.job.properties-27.name-36.documentation-132"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-name"

*Defined in [spec/spec.ts:14259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14259)*





___
<a id="glue.resources.job.properties-27.name-36.primitivetype-73"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14260)*





___
<a id="glue.resources.job.properties-27.name-36.required-104"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14258)*





___
<a id="glue.resources.job.properties-27.name-36.updatetype-104"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14261)*





___

___
<a id="glue.resources.job.properties-27.role-1"></a>

###  Role

** Role**:  *`object`* 

*Defined in [spec/spec.ts:14203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14203)*




<a id="glue.resources.job.properties-27.role-1.documentation-133"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-job.html#cfn-glue-job-role"

*Defined in [spec/spec.ts:14205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14205)*





___
<a id="glue.resources.job.properties-27.role-1.primitivetype-74"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14206)*





___
<a id="glue.resources.job.properties-27.role-1.required-105"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14204)*





___
<a id="glue.resources.job.properties-27.role-1.updatetype-105"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14207)*





___

___

___

___
<a id="glue.resources.partition"></a>

###  Partition

** Partition**:  *`object`* 

*Defined in [spec/spec.ts:14266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14266)*




<a id="glue.resources.partition.documentation-134"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html"

*Defined in [spec/spec.ts:14267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14267)*





___
<a id="glue.resources.partition.name-37"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Partition"

*Defined in [spec/spec.ts:14294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14294)*





___
<a id="glue.resources.partition.properties-28"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14268)*




<a id="glue.resources.partition.properties-28.catalogid-2"></a>

###  CatalogId

** CatalogId**:  *`object`* 

*Defined in [spec/spec.ts:14281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14281)*




<a id="glue.resources.partition.properties-28.catalogid-2.documentation-135"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-catalogid"

*Defined in [spec/spec.ts:14283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14283)*





___
<a id="glue.resources.partition.properties-28.catalogid-2.primitivetype-75"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14284)*





___
<a id="glue.resources.partition.properties-28.catalogid-2.required-106"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14282)*





___
<a id="glue.resources.partition.properties-28.catalogid-2.updatetype-106"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14285)*





___

___
<a id="glue.resources.partition.properties-28.databasename-1"></a>

###  DatabaseName

** DatabaseName**:  *`object`* 

*Defined in [spec/spec.ts:14275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14275)*




<a id="glue.resources.partition.properties-28.databasename-1.documentation-136"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-databasename"

*Defined in [spec/spec.ts:14277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14277)*





___
<a id="glue.resources.partition.properties-28.databasename-1.primitivetype-76"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14278)*





___
<a id="glue.resources.partition.properties-28.databasename-1.required-107"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14276)*





___
<a id="glue.resources.partition.properties-28.databasename-1.updatetype-107"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14279](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14279)*





___

___
<a id="glue.resources.partition.properties-28.partitioninput-1"></a>

###  PartitionInput

** PartitionInput**:  *`object`* 

*Defined in [spec/spec.ts:14287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14287)*




<a id="glue.resources.partition.properties-28.partitioninput-1.documentation-137"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-partitioninput"

*Defined in [spec/spec.ts:14290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14290)*





___
<a id="glue.resources.partition.properties-28.partitioninput-1.required-108"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14289)*





___
<a id="glue.resources.partition.properties-28.partitioninput-1.type-32"></a>

###  Type

**●  Type**:  *`string`*  = "PartitionInput"

*Defined in [spec/spec.ts:14288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14288)*





___
<a id="glue.resources.partition.properties-28.partitioninput-1.updatetype-108"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14291)*





___

___
<a id="glue.resources.partition.properties-28.tablename"></a>

###  TableName

** TableName**:  *`object`* 

*Defined in [spec/spec.ts:14269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14269)*




<a id="glue.resources.partition.properties-28.tablename.documentation-138"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-partition.html#cfn-glue-partition-tablename"

*Defined in [spec/spec.ts:14271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14271)*





___
<a id="glue.resources.partition.properties-28.tablename.primitivetype-77"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14272)*





___
<a id="glue.resources.partition.properties-28.tablename.required-109"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14270)*





___
<a id="glue.resources.partition.properties-28.tablename.updatetype-109"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14273)*





___

___

___

___
<a id="glue.resources.table"></a>

###  Table

** Table**:  *`object`* 

*Defined in [spec/spec.ts:14296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14296)*




<a id="glue.resources.table.documentation-139"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html"

*Defined in [spec/spec.ts:14297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14297)*





___
<a id="glue.resources.table.name-38"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Table"

*Defined in [spec/spec.ts:14318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14318)*





___
<a id="glue.resources.table.properties-29"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14298)*




<a id="glue.resources.table.properties-29.catalogid-3"></a>

###  CatalogId

** CatalogId**:  *`object`* 

*Defined in [spec/spec.ts:14311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14311)*




<a id="glue.resources.table.properties-29.catalogid-3.documentation-140"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-catalogid"

*Defined in [spec/spec.ts:14313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14313)*





___
<a id="glue.resources.table.properties-29.catalogid-3.primitivetype-78"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14314)*





___
<a id="glue.resources.table.properties-29.catalogid-3.required-110"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14312)*





___
<a id="glue.resources.table.properties-29.catalogid-3.updatetype-110"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14315)*





___

___
<a id="glue.resources.table.properties-29.databasename-2"></a>

###  DatabaseName

** DatabaseName**:  *`object`* 

*Defined in [spec/spec.ts:14305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14305)*




<a id="glue.resources.table.properties-29.databasename-2.documentation-141"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-databasename"

*Defined in [spec/spec.ts:14307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14307)*





___
<a id="glue.resources.table.properties-29.databasename-2.primitivetype-79"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14308)*





___
<a id="glue.resources.table.properties-29.databasename-2.required-111"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14306)*





___
<a id="glue.resources.table.properties-29.databasename-2.updatetype-111"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14309)*





___

___
<a id="glue.resources.table.properties-29.tableinput-1"></a>

###  TableInput

** TableInput**:  *`object`* 

*Defined in [spec/spec.ts:14299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14299)*




<a id="glue.resources.table.properties-29.tableinput-1.documentation-142"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-tableinput"

*Defined in [spec/spec.ts:14302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14302)*





___
<a id="glue.resources.table.properties-29.tableinput-1.required-112"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14301)*





___
<a id="glue.resources.table.properties-29.tableinput-1.type-33"></a>

###  Type

**●  Type**:  *`string`*  = "TableInput"

*Defined in [spec/spec.ts:14300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14300)*





___
<a id="glue.resources.table.properties-29.tableinput-1.updatetype-112"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14303)*





___

___

___

___
<a id="glue.resources.trigger"></a>

###  Trigger

** Trigger**:  *`object`* 

*Defined in [spec/spec.ts:14320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14320)*




<a id="glue.resources.trigger.documentation-143"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html"

*Defined in [spec/spec.ts:14321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14321)*





___
<a id="glue.resources.trigger.name-39"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Glue::Trigger"

*Defined in [spec/spec.ts:14361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14361)*





___
<a id="glue.resources.trigger.properties-30"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14322)*




<a id="glue.resources.trigger.properties-30.actions"></a>

###  Actions

** Actions**:  *`object`* 

*Defined in [spec/spec.ts:14335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14335)*




<a id="glue.resources.trigger.properties-30.actions.documentation-144"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-actions"

*Defined in [spec/spec.ts:14338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14338)*





___
<a id="glue.resources.trigger.properties-30.actions.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Action"

*Defined in [spec/spec.ts:14339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14339)*





___
<a id="glue.resources.trigger.properties-30.actions.required-113"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14337)*





___
<a id="glue.resources.trigger.properties-30.actions.type-34"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:14336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14336)*





___
<a id="glue.resources.trigger.properties-30.actions.updatetype-113"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14340)*





___

___
<a id="glue.resources.trigger.properties-30.description-5"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:14329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14329)*




<a id="glue.resources.trigger.properties-30.description-5.documentation-145"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-description"

*Defined in [spec/spec.ts:14331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14331)*





___
<a id="glue.resources.trigger.properties-30.description-5.primitivetype-80"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14332)*





___
<a id="glue.resources.trigger.properties-30.description-5.required-114"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14330)*





___
<a id="glue.resources.trigger.properties-30.description-5.updatetype-114"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14333)*





___

___
<a id="glue.resources.trigger.properties-30.name-40"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14348)*




<a id="glue.resources.trigger.properties-30.name-40.documentation-146"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-name"

*Defined in [spec/spec.ts:14350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14350)*





___
<a id="glue.resources.trigger.properties-30.name-40.primitivetype-81"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14351)*





___
<a id="glue.resources.trigger.properties-30.name-40.required-115"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14349)*





___
<a id="glue.resources.trigger.properties-30.name-40.updatetype-115"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14352)*





___

___
<a id="glue.resources.trigger.properties-30.predicate-1"></a>

###  Predicate

** Predicate**:  *`object`* 

*Defined in [spec/spec.ts:14354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14354)*




<a id="glue.resources.trigger.properties-30.predicate-1.documentation-147"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-predicate"

*Defined in [spec/spec.ts:14357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14357)*





___
<a id="glue.resources.trigger.properties-30.predicate-1.required-116"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14356)*





___
<a id="glue.resources.trigger.properties-30.predicate-1.type-35"></a>

###  Type

**●  Type**:  *`string`*  = "Predicate"

*Defined in [spec/spec.ts:14355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14355)*





___
<a id="glue.resources.trigger.properties-30.predicate-1.updatetype-116"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14358)*





___

___
<a id="glue.resources.trigger.properties-30.schedule-2"></a>

###  Schedule

** Schedule**:  *`object`* 

*Defined in [spec/spec.ts:14342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14342)*




<a id="glue.resources.trigger.properties-30.schedule-2.documentation-148"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-schedule"

*Defined in [spec/spec.ts:14344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14344)*





___
<a id="glue.resources.trigger.properties-30.schedule-2.primitivetype-82"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14345)*





___
<a id="glue.resources.trigger.properties-30.schedule-2.required-117"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14343)*





___
<a id="glue.resources.trigger.properties-30.schedule-2.updatetype-117"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14346)*





___

___
<a id="glue.resources.trigger.properties-30.type-36"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:14323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14323)*




<a id="glue.resources.trigger.properties-30.type-36.documentation-149"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-trigger.html#cfn-glue-trigger-type"

*Defined in [spec/spec.ts:14325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14325)*





___
<a id="glue.resources.trigger.properties-30.type-36.primitivetype-83"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14326)*





___
<a id="glue.resources.trigger.properties-30.type-36.required-118"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14324)*





___
<a id="glue.resources.trigger.properties-30.type-36.updatetype-118"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14327)*





___

___

___

___

___

<a id="guardduty"></a>

## Object literal: GuardDuty


<a id="guardduty.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:15045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15045)*


#### Type declaration





___
<a id="guardduty.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:14959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14959)*




<a id="guardduty.resources.detector"></a>

###  Detector

** Detector**:  *`object`* 

*Defined in [spec/spec.ts:14960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14960)*




<a id="guardduty.resources.detector.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html"

*Defined in [spec/spec.ts:14961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14961)*





___
<a id="guardduty.resources.detector.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GuardDuty::Detector"

*Defined in [spec/spec.ts:14970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14970)*





___
<a id="guardduty.resources.detector.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14962)*




<a id="guardduty.resources.detector.properties.enable"></a>

###  Enable

** Enable**:  *`object`* 

*Defined in [spec/spec.ts:14963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14963)*




<a id="guardduty.resources.detector.properties.enable.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-detector.html#cfn-guardduty-detector-enable"

*Defined in [spec/spec.ts:14965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14965)*





___
<a id="guardduty.resources.detector.properties.enable.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:14966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14966)*





___
<a id="guardduty.resources.detector.properties.enable.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14964)*





___
<a id="guardduty.resources.detector.properties.enable.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14967)*





___

___

___

___
<a id="guardduty.resources.ipset"></a>

###  IPSet

** IPSet**:  *`object`* 

*Defined in [spec/spec.ts:14972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14972)*




<a id="guardduty.resources.ipset.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html"

*Defined in [spec/spec.ts:14973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14973)*





___
<a id="guardduty.resources.ipset.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GuardDuty::IPSet"

*Defined in [spec/spec.ts:15006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15006)*





___
<a id="guardduty.resources.ipset.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:14974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14974)*




<a id="guardduty.resources.ipset.properties-1.activate"></a>

###  Activate

** Activate**:  *`object`* 

*Defined in [spec/spec.ts:14981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14981)*




<a id="guardduty.resources.ipset.properties-1.activate.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-activate"

*Defined in [spec/spec.ts:14983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14983)*





___
<a id="guardduty.resources.ipset.properties-1.activate.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:14984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14984)*





___
<a id="guardduty.resources.ipset.properties-1.activate.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14982)*





___
<a id="guardduty.resources.ipset.properties-1.activate.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14985)*





___

___
<a id="guardduty.resources.ipset.properties-1.detectorid"></a>

###  DetectorId

** DetectorId**:  *`object`* 

*Defined in [spec/spec.ts:14987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14987)*




<a id="guardduty.resources.ipset.properties-1.detectorid.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-detectorid"

*Defined in [spec/spec.ts:14989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14989)*





___
<a id="guardduty.resources.ipset.properties-1.detectorid.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14990)*





___
<a id="guardduty.resources.ipset.properties-1.detectorid.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14988)*





___
<a id="guardduty.resources.ipset.properties-1.detectorid.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14991)*





___

___
<a id="guardduty.resources.ipset.properties-1.format"></a>

###  Format

** Format**:  *`object`* 

*Defined in [spec/spec.ts:14975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14975)*




<a id="guardduty.resources.ipset.properties-1.format.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-format"

*Defined in [spec/spec.ts:14977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14977)*





___
<a id="guardduty.resources.ipset.properties-1.format.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14978)*





___
<a id="guardduty.resources.ipset.properties-1.format.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:14976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14976)*





___
<a id="guardduty.resources.ipset.properties-1.format.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:14979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14979)*





___

___
<a id="guardduty.resources.ipset.properties-1.location"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:14999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14999)*




<a id="guardduty.resources.ipset.properties-1.location.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-location"

*Defined in [spec/spec.ts:15001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15001)*





___
<a id="guardduty.resources.ipset.properties-1.location.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15002)*





___
<a id="guardduty.resources.ipset.properties-1.location.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15000)*





___
<a id="guardduty.resources.ipset.properties-1.location.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15003)*





___

___
<a id="guardduty.resources.ipset.properties-1.name-2"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:14993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14993)*




<a id="guardduty.resources.ipset.properties-1.name-2.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-ipset.html#cfn-guardduty-ipset-name"

*Defined in [spec/spec.ts:14995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14995)*





___
<a id="guardduty.resources.ipset.properties-1.name-2.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:14996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14996)*





___
<a id="guardduty.resources.ipset.properties-1.name-2.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:14994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14994)*





___
<a id="guardduty.resources.ipset.properties-1.name-2.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:14997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L14997)*





___

___

___

___
<a id="guardduty.resources.threatintelset"></a>

###  ThreatIntelSet

** ThreatIntelSet**:  *`object`* 

*Defined in [spec/spec.ts:15008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15008)*




<a id="guardduty.resources.threatintelset.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html"

*Defined in [spec/spec.ts:15009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15009)*





___
<a id="guardduty.resources.threatintelset.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::GuardDuty::ThreatIntelSet"

*Defined in [spec/spec.ts:15042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15042)*





___
<a id="guardduty.resources.threatintelset.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15010)*




<a id="guardduty.resources.threatintelset.properties-2.activate-1"></a>

###  Activate

** Activate**:  *`object`* 

*Defined in [spec/spec.ts:15017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15017)*




<a id="guardduty.resources.threatintelset.properties-2.activate-1.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-activate"

*Defined in [spec/spec.ts:15019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15019)*





___
<a id="guardduty.resources.threatintelset.properties-2.activate-1.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:15020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15020)*





___
<a id="guardduty.resources.threatintelset.properties-2.activate-1.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15018)*





___
<a id="guardduty.resources.threatintelset.properties-2.activate-1.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15021)*





___

___
<a id="guardduty.resources.threatintelset.properties-2.detectorid-1"></a>

###  DetectorId

** DetectorId**:  *`object`* 

*Defined in [spec/spec.ts:15023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15023)*




<a id="guardduty.resources.threatintelset.properties-2.detectorid-1.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-detectorid"

*Defined in [spec/spec.ts:15025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15025)*





___
<a id="guardduty.resources.threatintelset.properties-2.detectorid-1.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15026)*





___
<a id="guardduty.resources.threatintelset.properties-2.detectorid-1.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15024)*





___
<a id="guardduty.resources.threatintelset.properties-2.detectorid-1.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15027)*





___

___
<a id="guardduty.resources.threatintelset.properties-2.format-1"></a>

###  Format

** Format**:  *`object`* 

*Defined in [spec/spec.ts:15011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15011)*




<a id="guardduty.resources.threatintelset.properties-2.format-1.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-format"

*Defined in [spec/spec.ts:15013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15013)*





___
<a id="guardduty.resources.threatintelset.properties-2.format-1.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15014)*





___
<a id="guardduty.resources.threatintelset.properties-2.format-1.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15012)*





___
<a id="guardduty.resources.threatintelset.properties-2.format-1.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15015)*





___

___
<a id="guardduty.resources.threatintelset.properties-2.location-1"></a>

###  Location

** Location**:  *`object`* 

*Defined in [spec/spec.ts:15035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15035)*




<a id="guardduty.resources.threatintelset.properties-2.location-1.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-location"

*Defined in [spec/spec.ts:15037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15037)*





___
<a id="guardduty.resources.threatintelset.properties-2.location-1.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15038)*





___
<a id="guardduty.resources.threatintelset.properties-2.location-1.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15036)*





___
<a id="guardduty.resources.threatintelset.properties-2.location-1.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15039)*





___

___
<a id="guardduty.resources.threatintelset.properties-2.name-4"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:15029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15029)*




<a id="guardduty.resources.threatintelset.properties-2.name-4.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-guardduty-threatintelset.html#cfn-guardduty-threatintelset-name"

*Defined in [spec/spec.ts:15031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15031)*





___
<a id="guardduty.resources.threatintelset.properties-2.name-4.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15032)*





___
<a id="guardduty.resources.threatintelset.properties-2.name-4.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15030)*





___
<a id="guardduty.resources.threatintelset.properties-2.name-4.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15033)*





___

___

___

___

___

<a id="inspector"></a>

## Object literal: Inspector


<a id="inspector.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:15489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15489)*


#### Type declaration





___
<a id="inspector.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:15403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15403)*




<a id="inspector.resources.assessmenttarget"></a>

###  AssessmentTarget

** AssessmentTarget**:  *`object`* 

*Defined in [spec/spec.ts:15404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15404)*




<a id="inspector.resources.assessmenttarget.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html"

*Defined in [spec/spec.ts:15405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15405)*





___
<a id="inspector.resources.assessmenttarget.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Inspector::AssessmentTarget"

*Defined in [spec/spec.ts:15425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15425)*





___
<a id="inspector.resources.assessmenttarget.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:15406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15406)*




<a id="inspector.resources.assessmenttarget.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:15407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15407)*




<a id="inspector.resources.assessmenttarget.attributes.arn.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15408)*





___

___

___
<a id="inspector.resources.assessmenttarget.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15411)*




<a id="inspector.resources.assessmenttarget.properties.assessmenttargetname"></a>

###  AssessmentTargetName

** AssessmentTargetName**:  *`object`* 

*Defined in [spec/spec.ts:15412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15412)*




<a id="inspector.resources.assessmenttarget.properties.assessmenttargetname.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-assessmenttargetname"

*Defined in [spec/spec.ts:15414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15414)*





___
<a id="inspector.resources.assessmenttarget.properties.assessmenttargetname.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15415)*





___
<a id="inspector.resources.assessmenttarget.properties.assessmenttargetname.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15413)*





___
<a id="inspector.resources.assessmenttarget.properties.assessmenttargetname.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15416)*





___

___
<a id="inspector.resources.assessmenttarget.properties.resourcegrouparn"></a>

###  ResourceGroupArn

** ResourceGroupArn**:  *`object`* 

*Defined in [spec/spec.ts:15418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15418)*




<a id="inspector.resources.assessmenttarget.properties.resourcegrouparn.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttarget.html#cfn-inspector-assessmenttarget-resourcegrouparn"

*Defined in [spec/spec.ts:15420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15420)*





___
<a id="inspector.resources.assessmenttarget.properties.resourcegrouparn.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15421)*





___
<a id="inspector.resources.assessmenttarget.properties.resourcegrouparn.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15419)*





___
<a id="inspector.resources.assessmenttarget.properties.resourcegrouparn.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15422)*





___

___

___

___
<a id="inspector.resources.assessmenttemplate"></a>

###  AssessmentTemplate

** AssessmentTemplate**:  *`object`* 

*Defined in [spec/spec.ts:15427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15427)*




<a id="inspector.resources.assessmenttemplate.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html"

*Defined in [spec/spec.ts:15428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15428)*





___
<a id="inspector.resources.assessmenttemplate.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Inspector::AssessmentTemplate"

*Defined in [spec/spec.ts:15468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15468)*





___
<a id="inspector.resources.assessmenttemplate.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:15429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15429)*




<a id="inspector.resources.assessmenttemplate.attributes-1.arn-1"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:15430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15430)*




<a id="inspector.resources.assessmenttemplate.attributes-1.arn-1.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15431)*





___

___

___
<a id="inspector.resources.assessmenttemplate.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15434)*




<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttargetarn"></a>

###  AssessmentTargetArn

** AssessmentTargetArn**:  *`object`* 

*Defined in [spec/spec.ts:15435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15435)*




<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttargetarn.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttargetarn"

*Defined in [spec/spec.ts:15437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15437)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttargetarn.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15438)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttargetarn.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15436)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttargetarn.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15439)*





___

___
<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttemplatename"></a>

###  AssessmentTemplateName

** AssessmentTemplateName**:  *`object`* 

*Defined in [spec/spec.ts:15447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15447)*




<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttemplatename.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-assessmenttemplatename"

*Defined in [spec/spec.ts:15449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15449)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttemplatename.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15450)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttemplatename.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15448)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.assessmenttemplatename.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15451)*





___

___
<a id="inspector.resources.assessmenttemplate.properties-1.durationinseconds"></a>

###  DurationInSeconds

** DurationInSeconds**:  *`object`* 

*Defined in [spec/spec.ts:15441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15441)*




<a id="inspector.resources.assessmenttemplate.properties-1.durationinseconds.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-durationinseconds"

*Defined in [spec/spec.ts:15443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15443)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.durationinseconds.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:15444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15444)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.durationinseconds.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15442)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.durationinseconds.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15445)*





___

___
<a id="inspector.resources.assessmenttemplate.properties-1.rulespackagearns"></a>

###  RulesPackageArns

** RulesPackageArns**:  *`object`* 

*Defined in [spec/spec.ts:15453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15453)*




<a id="inspector.resources.assessmenttemplate.properties-1.rulespackagearns.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-rulespackagearns"

*Defined in [spec/spec.ts:15457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15457)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.rulespackagearns.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15454)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.rulespackagearns.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15456)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.rulespackagearns.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:15455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15455)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.rulespackagearns.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15458)*





___

___
<a id="inspector.resources.assessmenttemplate.properties-1.userattributesforfindings"></a>

###  UserAttributesForFindings

** UserAttributesForFindings**:  *`object`* 

*Defined in [spec/spec.ts:15460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15460)*




<a id="inspector.resources.assessmenttemplate.properties-1.userattributesforfindings.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-assessmenttemplate.html#cfn-inspector-assessmenttemplate-userattributesforfindings"

*Defined in [spec/spec.ts:15463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15463)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.userattributesforfindings.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:15464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15464)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.userattributesforfindings.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15462)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.userattributesforfindings.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:15461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15461)*





___
<a id="inspector.resources.assessmenttemplate.properties-1.userattributesforfindings.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15465)*





___

___

___

___
<a id="inspector.resources.resourcegroup"></a>

###  ResourceGroup

** ResourceGroup**:  *`object`* 

*Defined in [spec/spec.ts:15470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15470)*




<a id="inspector.resources.resourcegroup.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html"

*Defined in [spec/spec.ts:15471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15471)*





___
<a id="inspector.resources.resourcegroup.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Inspector::ResourceGroup"

*Defined in [spec/spec.ts:15486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15486)*





___
<a id="inspector.resources.resourcegroup.attributes-2"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:15472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15472)*




<a id="inspector.resources.resourcegroup.attributes-2.arn-2"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:15473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15473)*




<a id="inspector.resources.resourcegroup.attributes-2.arn-2.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15474)*





___

___

___
<a id="inspector.resources.resourcegroup.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15477)*




<a id="inspector.resources.resourcegroup.properties-2.resourcegrouptags"></a>

###  ResourceGroupTags

** ResourceGroupTags**:  *`object`* 

*Defined in [spec/spec.ts:15478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15478)*




<a id="inspector.resources.resourcegroup.properties-2.resourcegrouptags.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html#cfn-inspector-resourcegroup-resourcegrouptags"

*Defined in [spec/spec.ts:15481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15481)*





___
<a id="inspector.resources.resourcegroup.properties-2.resourcegrouptags.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:15482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15482)*





___
<a id="inspector.resources.resourcegroup.properties-2.resourcegrouptags.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15480)*





___
<a id="inspector.resources.resourcegroup.properties-2.resourcegrouptags.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:15479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15479)*





___
<a id="inspector.resources.resourcegroup.properties-2.resourcegrouptags.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15483)*





___

___

___

___

___

<a id="iot"></a>

## Object literal: IoT


<a id="iot.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:15617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15617)*




<a id="iot.models.action"></a>

###  Action

** Action**:  *`object`* 

*Defined in [spec/spec.ts:15632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15632)*




<a id="iot.models.action.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html"

*Defined in [spec/spec.ts:15633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15633)*





___
<a id="iot.models.action.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.Action"

*Defined in [spec/spec.ts:15708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15708)*





___
<a id="iot.models.action.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15634)*




<a id="iot.models.action.properties.cloudwatchalarm"></a>

###  CloudwatchAlarm

** CloudwatchAlarm**:  *`object`* 

*Defined in [spec/spec.ts:15635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15635)*




<a id="iot.models.action.properties.cloudwatchalarm.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-cloudwatchalarm"

*Defined in [spec/spec.ts:15636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15636)*





___
<a id="iot.models.action.properties.cloudwatchalarm.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15637)*





___
<a id="iot.models.action.properties.cloudwatchalarm.type"></a>

###  Type

**●  Type**:  *`string`*  = "CloudwatchAlarmAction"

*Defined in [spec/spec.ts:15638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15638)*





___
<a id="iot.models.action.properties.cloudwatchalarm.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15639)*





___

___
<a id="iot.models.action.properties.cloudwatchmetric"></a>

###  CloudwatchMetric

** CloudwatchMetric**:  *`object`* 

*Defined in [spec/spec.ts:15641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15641)*




<a id="iot.models.action.properties.cloudwatchmetric.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-cloudwatchmetric"

*Defined in [spec/spec.ts:15642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15642)*





___
<a id="iot.models.action.properties.cloudwatchmetric.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15643)*





___
<a id="iot.models.action.properties.cloudwatchmetric.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "CloudwatchMetricAction"

*Defined in [spec/spec.ts:15644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15644)*





___
<a id="iot.models.action.properties.cloudwatchmetric.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15645)*





___

___
<a id="iot.models.action.properties.dynamodb"></a>

###  DynamoDB

** DynamoDB**:  *`object`* 

*Defined in [spec/spec.ts:15647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15647)*




<a id="iot.models.action.properties.dynamodb.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-dynamodb"

*Defined in [spec/spec.ts:15648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15648)*





___
<a id="iot.models.action.properties.dynamodb.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15649)*





___
<a id="iot.models.action.properties.dynamodb.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "DynamoDBAction"

*Defined in [spec/spec.ts:15650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15650)*





___
<a id="iot.models.action.properties.dynamodb.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15651)*





___

___
<a id="iot.models.action.properties.dynamodbv2"></a>

###  DynamoDBv2

** DynamoDBv2**:  *`object`* 

*Defined in [spec/spec.ts:15653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15653)*




<a id="iot.models.action.properties.dynamodbv2.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-dynamodbv2"

*Defined in [spec/spec.ts:15654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15654)*





___
<a id="iot.models.action.properties.dynamodbv2.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15655)*





___
<a id="iot.models.action.properties.dynamodbv2.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "DynamoDBv2Action"

*Defined in [spec/spec.ts:15656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15656)*





___
<a id="iot.models.action.properties.dynamodbv2.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15657)*





___

___
<a id="iot.models.action.properties.elasticsearch"></a>

###  Elasticsearch

** Elasticsearch**:  *`object`* 

*Defined in [spec/spec.ts:15659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15659)*




<a id="iot.models.action.properties.elasticsearch.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-elasticsearch"

*Defined in [spec/spec.ts:15660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15660)*





___
<a id="iot.models.action.properties.elasticsearch.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15661)*





___
<a id="iot.models.action.properties.elasticsearch.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "ElasticsearchAction"

*Defined in [spec/spec.ts:15662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15662)*





___
<a id="iot.models.action.properties.elasticsearch.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15663)*





___

___
<a id="iot.models.action.properties.firehose"></a>

###  Firehose

** Firehose**:  *`object`* 

*Defined in [spec/spec.ts:15665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15665)*




<a id="iot.models.action.properties.firehose.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-firehose"

*Defined in [spec/spec.ts:15666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15666)*





___
<a id="iot.models.action.properties.firehose.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15667)*





___
<a id="iot.models.action.properties.firehose.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "FirehoseAction"

*Defined in [spec/spec.ts:15668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15668)*





___
<a id="iot.models.action.properties.firehose.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15669)*





___

___
<a id="iot.models.action.properties.kinesis"></a>

###  Kinesis

** Kinesis**:  *`object`* 

*Defined in [spec/spec.ts:15671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15671)*




<a id="iot.models.action.properties.kinesis.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-kinesis"

*Defined in [spec/spec.ts:15672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15672)*





___
<a id="iot.models.action.properties.kinesis.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15673)*





___
<a id="iot.models.action.properties.kinesis.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "KinesisAction"

*Defined in [spec/spec.ts:15674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15674)*





___
<a id="iot.models.action.properties.kinesis.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15675)*





___

___
<a id="iot.models.action.properties.lambda"></a>

###  Lambda

** Lambda**:  *`object`* 

*Defined in [spec/spec.ts:15677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15677)*




<a id="iot.models.action.properties.lambda.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-lambda"

*Defined in [spec/spec.ts:15678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15678)*





___
<a id="iot.models.action.properties.lambda.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15679)*





___
<a id="iot.models.action.properties.lambda.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "LambdaAction"

*Defined in [spec/spec.ts:15680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15680)*





___
<a id="iot.models.action.properties.lambda.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15681)*





___

___
<a id="iot.models.action.properties.republish"></a>

###  Republish

** Republish**:  *`object`* 

*Defined in [spec/spec.ts:15683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15683)*




<a id="iot.models.action.properties.republish.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-republish"

*Defined in [spec/spec.ts:15684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15684)*





___
<a id="iot.models.action.properties.republish.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15685)*





___
<a id="iot.models.action.properties.republish.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "RepublishAction"

*Defined in [spec/spec.ts:15686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15686)*





___
<a id="iot.models.action.properties.republish.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15687)*





___

___
<a id="iot.models.action.properties.s3"></a>

###  S3

** S3**:  *`object`* 

*Defined in [spec/spec.ts:15689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15689)*




<a id="iot.models.action.properties.s3.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-s3"

*Defined in [spec/spec.ts:15690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15690)*





___
<a id="iot.models.action.properties.s3.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15691)*





___
<a id="iot.models.action.properties.s3.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "S3Action"

*Defined in [spec/spec.ts:15692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15692)*





___
<a id="iot.models.action.properties.s3.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15693)*





___

___
<a id="iot.models.action.properties.sns"></a>

###  Sns

** Sns**:  *`object`* 

*Defined in [spec/spec.ts:15695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15695)*




<a id="iot.models.action.properties.sns.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-sns"

*Defined in [spec/spec.ts:15696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15696)*





___
<a id="iot.models.action.properties.sns.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15697)*





___
<a id="iot.models.action.properties.sns.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "SnsAction"

*Defined in [spec/spec.ts:15698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15698)*





___
<a id="iot.models.action.properties.sns.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15699)*





___

___
<a id="iot.models.action.properties.sqs"></a>

###  Sqs

** Sqs**:  *`object`* 

*Defined in [spec/spec.ts:15701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15701)*




<a id="iot.models.action.properties.sqs.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-action.html#cfn-iot-topicrule-action-sqs"

*Defined in [spec/spec.ts:15702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15702)*





___
<a id="iot.models.action.properties.sqs.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15703)*





___
<a id="iot.models.action.properties.sqs.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "SqsAction"

*Defined in [spec/spec.ts:15704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15704)*





___
<a id="iot.models.action.properties.sqs.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15705)*





___

___

___

___
<a id="iot.models.attributepayload"></a>

###  AttributePayload

** AttributePayload**:  *`object`* 

*Defined in [spec/spec.ts:15618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15618)*




<a id="iot.models.attributepayload.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thing-attributepayload.html"

*Defined in [spec/spec.ts:15619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15619)*





___
<a id="iot.models.attributepayload.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::Thing.AttributePayload"

*Defined in [spec/spec.ts:15630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15630)*





___
<a id="iot.models.attributepayload.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15620)*




<a id="iot.models.attributepayload.properties-1.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:15621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15621)*




<a id="iot.models.attributepayload.properties-1.attributes.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-thing-attributepayload.html#cfn-iot-thing-attributepayload-attributes"

*Defined in [spec/spec.ts:15622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15622)*





___
<a id="iot.models.attributepayload.properties-1.attributes.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15623)*





___
<a id="iot.models.attributepayload.properties-1.attributes.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15624)*





___
<a id="iot.models.attributepayload.properties-1.attributes.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15625)*





___
<a id="iot.models.attributepayload.properties-1.attributes.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:15626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15626)*





___
<a id="iot.models.attributepayload.properties-1.attributes.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15627)*





___

___

___

___
<a id="iot.models.cloudwatchalarmaction"></a>

###  CloudwatchAlarmAction

** CloudwatchAlarmAction**:  *`object`* 

*Defined in [spec/spec.ts:15710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15710)*




<a id="iot.models.cloudwatchalarmaction.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html"

*Defined in [spec/spec.ts:15711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15711)*





___
<a id="iot.models.cloudwatchalarmaction.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.CloudwatchAlarmAction"

*Defined in [spec/spec.ts:15738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15738)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15712)*




<a id="iot.models.cloudwatchalarmaction.properties-2.alarmname"></a>

###  AlarmName

** AlarmName**:  *`object`* 

*Defined in [spec/spec.ts:15713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15713)*




<a id="iot.models.cloudwatchalarmaction.properties-2.alarmname.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-alarmname"

*Defined in [spec/spec.ts:15714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15714)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.alarmname.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15715)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.alarmname.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15716)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.alarmname.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15717)*





___

___
<a id="iot.models.cloudwatchalarmaction.properties-2.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15719)*




<a id="iot.models.cloudwatchalarmaction.properties-2.rolearn.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-rolearn"

*Defined in [spec/spec.ts:15720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15720)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.rolearn.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15721)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.rolearn.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15722)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.rolearn.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15723)*





___

___
<a id="iot.models.cloudwatchalarmaction.properties-2.statereason"></a>

###  StateReason

** StateReason**:  *`object`* 

*Defined in [spec/spec.ts:15725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15725)*




<a id="iot.models.cloudwatchalarmaction.properties-2.statereason.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statereason"

*Defined in [spec/spec.ts:15726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15726)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.statereason.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15727)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.statereason.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15728)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.statereason.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15729)*





___

___
<a id="iot.models.cloudwatchalarmaction.properties-2.statevalue"></a>

###  StateValue

** StateValue**:  *`object`* 

*Defined in [spec/spec.ts:15731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15731)*




<a id="iot.models.cloudwatchalarmaction.properties-2.statevalue.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchalarmaction.html#cfn-iot-topicrule-cloudwatchalarmaction-statevalue"

*Defined in [spec/spec.ts:15732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15732)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.statevalue.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15733)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.statevalue.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15734)*





___
<a id="iot.models.cloudwatchalarmaction.properties-2.statevalue.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15735)*





___

___

___

___
<a id="iot.models.cloudwatchmetricaction"></a>

###  CloudwatchMetricAction

** CloudwatchMetricAction**:  *`object`* 

*Defined in [spec/spec.ts:15740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15740)*




<a id="iot.models.cloudwatchmetricaction.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html"

*Defined in [spec/spec.ts:15741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15741)*





___
<a id="iot.models.cloudwatchmetricaction.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.CloudwatchMetricAction"

*Defined in [spec/spec.ts:15780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15780)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15742)*




<a id="iot.models.cloudwatchmetricaction.properties-3.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:15743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15743)*




<a id="iot.models.cloudwatchmetricaction.properties-3.metricname.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricname"

*Defined in [spec/spec.ts:15744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15744)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricname.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15745)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricname.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15746)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricname.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15747)*





___

___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricnamespace"></a>

###  MetricNamespace

** MetricNamespace**:  *`object`* 

*Defined in [spec/spec.ts:15749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15749)*




<a id="iot.models.cloudwatchmetricaction.properties-3.metricnamespace.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricnamespace"

*Defined in [spec/spec.ts:15750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15750)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricnamespace.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15751)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricnamespace.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15752)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricnamespace.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15753)*





___

___
<a id="iot.models.cloudwatchmetricaction.properties-3.metrictimestamp"></a>

###  MetricTimestamp

** MetricTimestamp**:  *`object`* 

*Defined in [spec/spec.ts:15755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15755)*




<a id="iot.models.cloudwatchmetricaction.properties-3.metrictimestamp.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metrictimestamp"

*Defined in [spec/spec.ts:15756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15756)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metrictimestamp.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15757)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metrictimestamp.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15758)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metrictimestamp.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15759)*





___

___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricunit"></a>

###  MetricUnit

** MetricUnit**:  *`object`* 

*Defined in [spec/spec.ts:15761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15761)*




<a id="iot.models.cloudwatchmetricaction.properties-3.metricunit.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricunit"

*Defined in [spec/spec.ts:15762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15762)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricunit.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15763)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricunit.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15764)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricunit.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15765)*





___

___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricvalue"></a>

###  MetricValue

** MetricValue**:  *`object`* 

*Defined in [spec/spec.ts:15767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15767)*




<a id="iot.models.cloudwatchmetricaction.properties-3.metricvalue.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-metricvalue"

*Defined in [spec/spec.ts:15768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15768)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricvalue.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15769)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricvalue.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15770)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.metricvalue.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15771)*





___

___
<a id="iot.models.cloudwatchmetricaction.properties-3.rolearn-1"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15773)*




<a id="iot.models.cloudwatchmetricaction.properties-3.rolearn-1.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cloudwatchmetricaction.html#cfn-iot-topicrule-cloudwatchmetricaction-rolearn"

*Defined in [spec/spec.ts:15774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15774)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.rolearn-1.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15775)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.rolearn-1.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15776)*





___
<a id="iot.models.cloudwatchmetricaction.properties-3.rolearn-1.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15777)*





___

___

___

___
<a id="iot.models.dynamodbaction"></a>

###  DynamoDBAction

** DynamoDBAction**:  *`object`* 

*Defined in [spec/spec.ts:15782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15782)*




<a id="iot.models.dynamodbaction.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html"

*Defined in [spec/spec.ts:15783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15783)*





___
<a id="iot.models.dynamodbaction.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.DynamoDBAction"

*Defined in [spec/spec.ts:15840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15840)*





___
<a id="iot.models.dynamodbaction.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15784)*




<a id="iot.models.dynamodbaction.properties-4.hashkeyfield"></a>

###  HashKeyField

** HashKeyField**:  *`object`* 

*Defined in [spec/spec.ts:15785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15785)*




<a id="iot.models.dynamodbaction.properties-4.hashkeyfield.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyfield"

*Defined in [spec/spec.ts:15786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15786)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeyfield.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15787)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeyfield.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15788)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeyfield.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15789)*





___

___
<a id="iot.models.dynamodbaction.properties-4.hashkeytype"></a>

###  HashKeyType

** HashKeyType**:  *`object`* 

*Defined in [spec/spec.ts:15791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15791)*




<a id="iot.models.dynamodbaction.properties-4.hashkeytype.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeytype"

*Defined in [spec/spec.ts:15792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15792)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeytype.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15793)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeytype.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15794)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeytype.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15795)*





___

___
<a id="iot.models.dynamodbaction.properties-4.hashkeyvalue"></a>

###  HashKeyValue

** HashKeyValue**:  *`object`* 

*Defined in [spec/spec.ts:15797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15797)*




<a id="iot.models.dynamodbaction.properties-4.hashkeyvalue.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-hashkeyvalue"

*Defined in [spec/spec.ts:15798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15798)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeyvalue.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15799)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeyvalue.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15800)*





___
<a id="iot.models.dynamodbaction.properties-4.hashkeyvalue.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15801)*





___

___
<a id="iot.models.dynamodbaction.properties-4.payloadfield"></a>

###  PayloadField

** PayloadField**:  *`object`* 

*Defined in [spec/spec.ts:15803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15803)*




<a id="iot.models.dynamodbaction.properties-4.payloadfield.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-payloadfield"

*Defined in [spec/spec.ts:15804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15804)*





___
<a id="iot.models.dynamodbaction.properties-4.payloadfield.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15805)*





___
<a id="iot.models.dynamodbaction.properties-4.payloadfield.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15806)*





___
<a id="iot.models.dynamodbaction.properties-4.payloadfield.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15807)*





___

___
<a id="iot.models.dynamodbaction.properties-4.rangekeyfield"></a>

###  RangeKeyField

** RangeKeyField**:  *`object`* 

*Defined in [spec/spec.ts:15809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15809)*




<a id="iot.models.dynamodbaction.properties-4.rangekeyfield.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyfield"

*Defined in [spec/spec.ts:15810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15810)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeyfield.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15811)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeyfield.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15812)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeyfield.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15813)*





___

___
<a id="iot.models.dynamodbaction.properties-4.rangekeytype"></a>

###  RangeKeyType

** RangeKeyType**:  *`object`* 

*Defined in [spec/spec.ts:15815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15815)*




<a id="iot.models.dynamodbaction.properties-4.rangekeytype.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeytype"

*Defined in [spec/spec.ts:15816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15816)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeytype.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15817)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeytype.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15818)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeytype.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15819)*





___

___
<a id="iot.models.dynamodbaction.properties-4.rangekeyvalue"></a>

###  RangeKeyValue

** RangeKeyValue**:  *`object`* 

*Defined in [spec/spec.ts:15821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15821)*




<a id="iot.models.dynamodbaction.properties-4.rangekeyvalue.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rangekeyvalue"

*Defined in [spec/spec.ts:15822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15822)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeyvalue.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15823)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeyvalue.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15824)*





___
<a id="iot.models.dynamodbaction.properties-4.rangekeyvalue.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15825)*





___

___
<a id="iot.models.dynamodbaction.properties-4.rolearn-2"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15827)*




<a id="iot.models.dynamodbaction.properties-4.rolearn-2.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-rolearn"

*Defined in [spec/spec.ts:15828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15828)*





___
<a id="iot.models.dynamodbaction.properties-4.rolearn-2.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15829)*





___
<a id="iot.models.dynamodbaction.properties-4.rolearn-2.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15830)*





___
<a id="iot.models.dynamodbaction.properties-4.rolearn-2.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15831)*





___

___
<a id="iot.models.dynamodbaction.properties-4.tablename"></a>

###  TableName

** TableName**:  *`object`* 

*Defined in [spec/spec.ts:15833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15833)*




<a id="iot.models.dynamodbaction.properties-4.tablename.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbaction.html#cfn-iot-topicrule-dynamodbaction-tablename"

*Defined in [spec/spec.ts:15834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15834)*





___
<a id="iot.models.dynamodbaction.properties-4.tablename.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15835)*





___
<a id="iot.models.dynamodbaction.properties-4.tablename.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15836)*





___
<a id="iot.models.dynamodbaction.properties-4.tablename.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15837)*





___

___

___

___
<a id="iot.models.dynamodbv2action"></a>

###  DynamoDBv2Action

** DynamoDBv2Action**:  *`object`* 

*Defined in [spec/spec.ts:15842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15842)*




<a id="iot.models.dynamodbv2action.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html"

*Defined in [spec/spec.ts:15843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15843)*





___
<a id="iot.models.dynamodbv2action.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.DynamoDBv2Action"

*Defined in [spec/spec.ts:15858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15858)*





___
<a id="iot.models.dynamodbv2action.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15844)*




<a id="iot.models.dynamodbv2action.properties-5.putitem"></a>

###  PutItem

** PutItem**:  *`object`* 

*Defined in [spec/spec.ts:15845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15845)*




<a id="iot.models.dynamodbv2action.properties-5.putitem.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-putitem"

*Defined in [spec/spec.ts:15846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15846)*





___
<a id="iot.models.dynamodbv2action.properties-5.putitem.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15847)*





___
<a id="iot.models.dynamodbv2action.properties-5.putitem.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "PutItemInput"

*Defined in [spec/spec.ts:15848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15848)*





___
<a id="iot.models.dynamodbv2action.properties-5.putitem.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15849)*





___

___
<a id="iot.models.dynamodbv2action.properties-5.rolearn-3"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15851)*




<a id="iot.models.dynamodbv2action.properties-5.rolearn-3.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-dynamodbv2action.html#cfn-iot-topicrule-dynamodbv2action-rolearn"

*Defined in [spec/spec.ts:15852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15852)*





___
<a id="iot.models.dynamodbv2action.properties-5.rolearn-3.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15853)*





___
<a id="iot.models.dynamodbv2action.properties-5.rolearn-3.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15854)*





___
<a id="iot.models.dynamodbv2action.properties-5.rolearn-3.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15855)*





___

___

___

___
<a id="iot.models.elasticsearchaction"></a>

###  ElasticsearchAction

** ElasticsearchAction**:  *`object`* 

*Defined in [spec/spec.ts:15860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15860)*




<a id="iot.models.elasticsearchaction.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html"

*Defined in [spec/spec.ts:15861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15861)*





___
<a id="iot.models.elasticsearchaction.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.ElasticsearchAction"

*Defined in [spec/spec.ts:15894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15894)*





___
<a id="iot.models.elasticsearchaction.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15862)*




<a id="iot.models.elasticsearchaction.properties-6.endpoint"></a>

###  Endpoint

** Endpoint**:  *`object`* 

*Defined in [spec/spec.ts:15863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15863)*




<a id="iot.models.elasticsearchaction.properties-6.endpoint.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-endpoint"

*Defined in [spec/spec.ts:15864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15864)*





___
<a id="iot.models.elasticsearchaction.properties-6.endpoint.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15865)*





___
<a id="iot.models.elasticsearchaction.properties-6.endpoint.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15866)*





___
<a id="iot.models.elasticsearchaction.properties-6.endpoint.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15867)*





___

___
<a id="iot.models.elasticsearchaction.properties-6.id"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:15869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15869)*




<a id="iot.models.elasticsearchaction.properties-6.id.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-id"

*Defined in [spec/spec.ts:15870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15870)*





___
<a id="iot.models.elasticsearchaction.properties-6.id.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15871)*





___
<a id="iot.models.elasticsearchaction.properties-6.id.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15872)*





___
<a id="iot.models.elasticsearchaction.properties-6.id.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15873)*





___

___
<a id="iot.models.elasticsearchaction.properties-6.index"></a>

###  Index

** Index**:  *`object`* 

*Defined in [spec/spec.ts:15875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15875)*




<a id="iot.models.elasticsearchaction.properties-6.index.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-index"

*Defined in [spec/spec.ts:15876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15876)*





___
<a id="iot.models.elasticsearchaction.properties-6.index.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15877)*





___
<a id="iot.models.elasticsearchaction.properties-6.index.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15878)*





___
<a id="iot.models.elasticsearchaction.properties-6.index.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15879)*





___

___
<a id="iot.models.elasticsearchaction.properties-6.rolearn-4"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15881)*




<a id="iot.models.elasticsearchaction.properties-6.rolearn-4.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-rolearn"

*Defined in [spec/spec.ts:15882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15882)*





___
<a id="iot.models.elasticsearchaction.properties-6.rolearn-4.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15883)*





___
<a id="iot.models.elasticsearchaction.properties-6.rolearn-4.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15884)*





___
<a id="iot.models.elasticsearchaction.properties-6.rolearn-4.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15885)*





___

___
<a id="iot.models.elasticsearchaction.properties-6.type-14"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:15887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15887)*




<a id="iot.models.elasticsearchaction.properties-6.type-14.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-elasticsearchaction.html#cfn-iot-topicrule-elasticsearchaction-type"

*Defined in [spec/spec.ts:15888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15888)*





___
<a id="iot.models.elasticsearchaction.properties-6.type-14.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15889)*





___
<a id="iot.models.elasticsearchaction.properties-6.type-14.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15890)*





___
<a id="iot.models.elasticsearchaction.properties-6.type-14.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15891)*





___

___

___

___
<a id="iot.models.firehoseaction"></a>

###  FirehoseAction

** FirehoseAction**:  *`object`* 

*Defined in [spec/spec.ts:15896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15896)*




<a id="iot.models.firehoseaction.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html"

*Defined in [spec/spec.ts:15897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15897)*





___
<a id="iot.models.firehoseaction.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.FirehoseAction"

*Defined in [spec/spec.ts:15918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15918)*





___
<a id="iot.models.firehoseaction.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15898)*




<a id="iot.models.firehoseaction.properties-7.deliverystreamname"></a>

###  DeliveryStreamName

** DeliveryStreamName**:  *`object`* 

*Defined in [spec/spec.ts:15899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15899)*




<a id="iot.models.firehoseaction.properties-7.deliverystreamname.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-deliverystreamname"

*Defined in [spec/spec.ts:15900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15900)*





___
<a id="iot.models.firehoseaction.properties-7.deliverystreamname.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15901)*





___
<a id="iot.models.firehoseaction.properties-7.deliverystreamname.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15902)*





___
<a id="iot.models.firehoseaction.properties-7.deliverystreamname.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15903)*





___

___
<a id="iot.models.firehoseaction.properties-7.rolearn-5"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15905)*




<a id="iot.models.firehoseaction.properties-7.rolearn-5.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-rolearn"

*Defined in [spec/spec.ts:15906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15906)*





___
<a id="iot.models.firehoseaction.properties-7.rolearn-5.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15907)*





___
<a id="iot.models.firehoseaction.properties-7.rolearn-5.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15908)*





___
<a id="iot.models.firehoseaction.properties-7.rolearn-5.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15909)*





___

___
<a id="iot.models.firehoseaction.properties-7.separator"></a>

###  Separator

** Separator**:  *`object`* 

*Defined in [spec/spec.ts:15911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15911)*




<a id="iot.models.firehoseaction.properties-7.separator.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-firehoseaction.html#cfn-iot-topicrule-firehoseaction-separator"

*Defined in [spec/spec.ts:15912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15912)*





___
<a id="iot.models.firehoseaction.properties-7.separator.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15913)*





___
<a id="iot.models.firehoseaction.properties-7.separator.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15914)*





___
<a id="iot.models.firehoseaction.properties-7.separator.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15915)*





___

___

___

___
<a id="iot.models.kinesisaction"></a>

###  KinesisAction

** KinesisAction**:  *`object`* 

*Defined in [spec/spec.ts:15920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15920)*




<a id="iot.models.kinesisaction.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html"

*Defined in [spec/spec.ts:15921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15921)*





___
<a id="iot.models.kinesisaction.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.KinesisAction"

*Defined in [spec/spec.ts:15942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15942)*





___
<a id="iot.models.kinesisaction.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15922)*




<a id="iot.models.kinesisaction.properties-8.partitionkey"></a>

###  PartitionKey

** PartitionKey**:  *`object`* 

*Defined in [spec/spec.ts:15923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15923)*




<a id="iot.models.kinesisaction.properties-8.partitionkey.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-partitionkey"

*Defined in [spec/spec.ts:15924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15924)*





___
<a id="iot.models.kinesisaction.properties-8.partitionkey.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15925)*





___
<a id="iot.models.kinesisaction.properties-8.partitionkey.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15926)*





___
<a id="iot.models.kinesisaction.properties-8.partitionkey.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15927)*





___

___
<a id="iot.models.kinesisaction.properties-8.rolearn-6"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15929)*




<a id="iot.models.kinesisaction.properties-8.rolearn-6.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-rolearn"

*Defined in [spec/spec.ts:15930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15930)*





___
<a id="iot.models.kinesisaction.properties-8.rolearn-6.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15931)*





___
<a id="iot.models.kinesisaction.properties-8.rolearn-6.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15932)*





___
<a id="iot.models.kinesisaction.properties-8.rolearn-6.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15933)*





___

___
<a id="iot.models.kinesisaction.properties-8.streamname"></a>

###  StreamName

** StreamName**:  *`object`* 

*Defined in [spec/spec.ts:15935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15935)*




<a id="iot.models.kinesisaction.properties-8.streamname.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-kinesisaction.html#cfn-iot-topicrule-kinesisaction-streamname"

*Defined in [spec/spec.ts:15936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15936)*





___
<a id="iot.models.kinesisaction.properties-8.streamname.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15937)*





___
<a id="iot.models.kinesisaction.properties-8.streamname.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15938)*





___
<a id="iot.models.kinesisaction.properties-8.streamname.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15939)*





___

___

___

___
<a id="iot.models.lambdaaction"></a>

###  LambdaAction

** LambdaAction**:  *`object`* 

*Defined in [spec/spec.ts:15944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15944)*




<a id="iot.models.lambdaaction.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html"

*Defined in [spec/spec.ts:15945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15945)*





___
<a id="iot.models.lambdaaction.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.LambdaAction"

*Defined in [spec/spec.ts:15954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15954)*





___
<a id="iot.models.lambdaaction.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15946)*




<a id="iot.models.lambdaaction.properties-9.functionarn"></a>

###  FunctionArn

** FunctionArn**:  *`object`* 

*Defined in [spec/spec.ts:15947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15947)*




<a id="iot.models.lambdaaction.properties-9.functionarn.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-lambdaaction.html#cfn-iot-topicrule-lambdaaction-functionarn"

*Defined in [spec/spec.ts:15948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15948)*





___
<a id="iot.models.lambdaaction.properties-9.functionarn.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15949)*





___
<a id="iot.models.lambdaaction.properties-9.functionarn.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15950)*





___
<a id="iot.models.lambdaaction.properties-9.functionarn.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15951)*





___

___

___

___
<a id="iot.models.putiteminput"></a>

###  PutItemInput

** PutItemInput**:  *`object`* 

*Defined in [spec/spec.ts:15956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15956)*




<a id="iot.models.putiteminput.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html"

*Defined in [spec/spec.ts:15957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15957)*





___
<a id="iot.models.putiteminput.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.PutItemInput"

*Defined in [spec/spec.ts:15966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15966)*





___
<a id="iot.models.putiteminput.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15958)*




<a id="iot.models.putiteminput.properties-10.tablename-1"></a>

###  TableName

** TableName**:  *`object`* 

*Defined in [spec/spec.ts:15959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15959)*




<a id="iot.models.putiteminput.properties-10.tablename-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-putiteminput.html#cfn-iot-topicrule-putiteminput-tablename"

*Defined in [spec/spec.ts:15960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15960)*





___
<a id="iot.models.putiteminput.properties-10.tablename-1.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15961)*





___
<a id="iot.models.putiteminput.properties-10.tablename-1.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15962)*





___
<a id="iot.models.putiteminput.properties-10.tablename-1.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15963)*





___

___

___

___
<a id="iot.models.republishaction"></a>

###  RepublishAction

** RepublishAction**:  *`object`* 

*Defined in [spec/spec.ts:15968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15968)*




<a id="iot.models.republishaction.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html"

*Defined in [spec/spec.ts:15969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15969)*





___
<a id="iot.models.republishaction.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.RepublishAction"

*Defined in [spec/spec.ts:15984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15984)*





___
<a id="iot.models.republishaction.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15970)*




<a id="iot.models.republishaction.properties-11.rolearn-7"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:15971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15971)*




<a id="iot.models.republishaction.properties-11.rolearn-7.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-rolearn"

*Defined in [spec/spec.ts:15972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15972)*





___
<a id="iot.models.republishaction.properties-11.rolearn-7.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15973)*





___
<a id="iot.models.republishaction.properties-11.rolearn-7.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15974)*





___
<a id="iot.models.republishaction.properties-11.rolearn-7.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15975)*





___

___
<a id="iot.models.republishaction.properties-11.topic"></a>

###  Topic

** Topic**:  *`object`* 

*Defined in [spec/spec.ts:15977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15977)*




<a id="iot.models.republishaction.properties-11.topic.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-republishaction.html#cfn-iot-topicrule-republishaction-topic"

*Defined in [spec/spec.ts:15978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15978)*





___
<a id="iot.models.republishaction.properties-11.topic.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15979)*





___
<a id="iot.models.republishaction.properties-11.topic.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15980)*





___
<a id="iot.models.republishaction.properties-11.topic.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15981)*





___

___

___

___
<a id="iot.models.s3action"></a>

###  S3Action

** S3Action**:  *`object`* 

*Defined in [spec/spec.ts:15986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15986)*




<a id="iot.models.s3action.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html"

*Defined in [spec/spec.ts:15987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15987)*





___
<a id="iot.models.s3action.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.S3Action"

*Defined in [spec/spec.ts:16008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16008)*





___
<a id="iot.models.s3action.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15988)*




<a id="iot.models.s3action.properties-12.bucketname"></a>

###  BucketName

** BucketName**:  *`object`* 

*Defined in [spec/spec.ts:15989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15989)*




<a id="iot.models.s3action.properties-12.bucketname.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-bucketname"

*Defined in [spec/spec.ts:15990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15990)*





___
<a id="iot.models.s3action.properties-12.bucketname.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15991)*





___
<a id="iot.models.s3action.properties-12.bucketname.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15992)*





___
<a id="iot.models.s3action.properties-12.bucketname.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15993)*





___

___
<a id="iot.models.s3action.properties-12.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:15995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15995)*




<a id="iot.models.s3action.properties-12.key.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-key"

*Defined in [spec/spec.ts:15996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15996)*





___
<a id="iot.models.s3action.properties-12.key.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15997)*





___
<a id="iot.models.s3action.properties-12.key.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15998)*





___
<a id="iot.models.s3action.properties-12.key.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15999)*





___

___
<a id="iot.models.s3action.properties-12.rolearn-8"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:16001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16001)*




<a id="iot.models.s3action.properties-12.rolearn-8.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-s3action.html#cfn-iot-topicrule-s3action-rolearn"

*Defined in [spec/spec.ts:16002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16002)*





___
<a id="iot.models.s3action.properties-12.rolearn-8.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16003)*





___
<a id="iot.models.s3action.properties-12.rolearn-8.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16004)*





___
<a id="iot.models.s3action.properties-12.rolearn-8.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16005)*





___

___

___

___
<a id="iot.models.snsaction"></a>

###  SnsAction

** SnsAction**:  *`object`* 

*Defined in [spec/spec.ts:16010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16010)*




<a id="iot.models.snsaction.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html"

*Defined in [spec/spec.ts:16011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16011)*





___
<a id="iot.models.snsaction.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.SnsAction"

*Defined in [spec/spec.ts:16032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16032)*





___
<a id="iot.models.snsaction.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16012)*




<a id="iot.models.snsaction.properties-13.messageformat"></a>

###  MessageFormat

** MessageFormat**:  *`object`* 

*Defined in [spec/spec.ts:16013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16013)*




<a id="iot.models.snsaction.properties-13.messageformat.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-messageformat"

*Defined in [spec/spec.ts:16014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16014)*





___
<a id="iot.models.snsaction.properties-13.messageformat.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16015)*





___
<a id="iot.models.snsaction.properties-13.messageformat.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16016)*





___
<a id="iot.models.snsaction.properties-13.messageformat.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16017)*





___

___
<a id="iot.models.snsaction.properties-13.rolearn-9"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:16019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16019)*




<a id="iot.models.snsaction.properties-13.rolearn-9.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-rolearn"

*Defined in [spec/spec.ts:16020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16020)*





___
<a id="iot.models.snsaction.properties-13.rolearn-9.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16021)*





___
<a id="iot.models.snsaction.properties-13.rolearn-9.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16022)*





___
<a id="iot.models.snsaction.properties-13.rolearn-9.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16023)*





___

___
<a id="iot.models.snsaction.properties-13.targetarn"></a>

###  TargetArn

** TargetArn**:  *`object`* 

*Defined in [spec/spec.ts:16025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16025)*




<a id="iot.models.snsaction.properties-13.targetarn.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-snsaction.html#cfn-iot-topicrule-snsaction-targetarn"

*Defined in [spec/spec.ts:16026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16026)*





___
<a id="iot.models.snsaction.properties-13.targetarn.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16027)*





___
<a id="iot.models.snsaction.properties-13.targetarn.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16028)*





___
<a id="iot.models.snsaction.properties-13.targetarn.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16029)*





___

___

___

___
<a id="iot.models.sqsaction"></a>

###  SqsAction

** SqsAction**:  *`object`* 

*Defined in [spec/spec.ts:16034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16034)*




<a id="iot.models.sqsaction.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html"

*Defined in [spec/spec.ts:16035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16035)*





___
<a id="iot.models.sqsaction.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.SqsAction"

*Defined in [spec/spec.ts:16056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16056)*





___
<a id="iot.models.sqsaction.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16036)*




<a id="iot.models.sqsaction.properties-14.queueurl"></a>

###  QueueUrl

** QueueUrl**:  *`object`* 

*Defined in [spec/spec.ts:16037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16037)*




<a id="iot.models.sqsaction.properties-14.queueurl.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-queueurl"

*Defined in [spec/spec.ts:16038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16038)*





___
<a id="iot.models.sqsaction.properties-14.queueurl.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16039)*





___
<a id="iot.models.sqsaction.properties-14.queueurl.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16040)*





___
<a id="iot.models.sqsaction.properties-14.queueurl.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16041)*





___

___
<a id="iot.models.sqsaction.properties-14.rolearn-10"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:16043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16043)*




<a id="iot.models.sqsaction.properties-14.rolearn-10.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-rolearn"

*Defined in [spec/spec.ts:16044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16044)*





___
<a id="iot.models.sqsaction.properties-14.rolearn-10.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16045)*





___
<a id="iot.models.sqsaction.properties-14.rolearn-10.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16046)*





___
<a id="iot.models.sqsaction.properties-14.rolearn-10.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16047)*





___

___
<a id="iot.models.sqsaction.properties-14.usebase64"></a>

###  UseBase64

** UseBase64**:  *`object`* 

*Defined in [spec/spec.ts:16049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16049)*




<a id="iot.models.sqsaction.properties-14.usebase64.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-sqsaction.html#cfn-iot-topicrule-sqsaction-usebase64"

*Defined in [spec/spec.ts:16050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16050)*





___
<a id="iot.models.sqsaction.properties-14.usebase64.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:16051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16051)*





___
<a id="iot.models.sqsaction.properties-14.usebase64.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16052)*





___
<a id="iot.models.sqsaction.properties-14.usebase64.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16053)*





___

___

___

___
<a id="iot.models.topicrulepayload"></a>

###  TopicRulePayload

** TopicRulePayload**:  *`object`* 

*Defined in [spec/spec.ts:16058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16058)*




<a id="iot.models.topicrulepayload.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html"

*Defined in [spec/spec.ts:16059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16059)*





___
<a id="iot.models.topicrulepayload.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule.TopicRulePayload"

*Defined in [spec/spec.ts:16094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16094)*





___
<a id="iot.models.topicrulepayload.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16060)*




<a id="iot.models.topicrulepayload.properties-15.actions"></a>

###  Actions

** Actions**:  *`object`* 

*Defined in [spec/spec.ts:16061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16061)*




<a id="iot.models.topicrulepayload.properties-15.actions.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-actions"

*Defined in [spec/spec.ts:16062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16062)*





___
<a id="iot.models.topicrulepayload.properties-15.actions.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16063)*





___
<a id="iot.models.topicrulepayload.properties-15.actions.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Action"

*Defined in [spec/spec.ts:16064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16064)*





___
<a id="iot.models.topicrulepayload.properties-15.actions.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16065)*





___
<a id="iot.models.topicrulepayload.properties-15.actions.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:16066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16066)*





___
<a id="iot.models.topicrulepayload.properties-15.actions.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16067)*





___

___
<a id="iot.models.topicrulepayload.properties-15.awsiotsqlversion"></a>

###  AwsIotSqlVersion

** AwsIotSqlVersion**:  *`object`* 

*Defined in [spec/spec.ts:16069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16069)*




<a id="iot.models.topicrulepayload.properties-15.awsiotsqlversion.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-awsiotsqlversion"

*Defined in [spec/spec.ts:16070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16070)*





___
<a id="iot.models.topicrulepayload.properties-15.awsiotsqlversion.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16071)*





___
<a id="iot.models.topicrulepayload.properties-15.awsiotsqlversion.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16072)*





___
<a id="iot.models.topicrulepayload.properties-15.awsiotsqlversion.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16073)*





___

___
<a id="iot.models.topicrulepayload.properties-15.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:16075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16075)*




<a id="iot.models.topicrulepayload.properties-15.description.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-description"

*Defined in [spec/spec.ts:16076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16076)*





___
<a id="iot.models.topicrulepayload.properties-15.description.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16077)*





___
<a id="iot.models.topicrulepayload.properties-15.description.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16078)*





___
<a id="iot.models.topicrulepayload.properties-15.description.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16079)*





___

___
<a id="iot.models.topicrulepayload.properties-15.ruledisabled"></a>

###  RuleDisabled

** RuleDisabled**:  *`object`* 

*Defined in [spec/spec.ts:16081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16081)*




<a id="iot.models.topicrulepayload.properties-15.ruledisabled.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-ruledisabled"

*Defined in [spec/spec.ts:16082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16082)*





___
<a id="iot.models.topicrulepayload.properties-15.ruledisabled.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:16083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16083)*





___
<a id="iot.models.topicrulepayload.properties-15.ruledisabled.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16084)*





___
<a id="iot.models.topicrulepayload.properties-15.ruledisabled.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16085)*





___

___
<a id="iot.models.topicrulepayload.properties-15.sql"></a>

###  Sql

** Sql**:  *`object`* 

*Defined in [spec/spec.ts:16087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16087)*




<a id="iot.models.topicrulepayload.properties-15.sql.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-topicrulepayload.html#cfn-iot-topicrule-topicrulepayload-sql"

*Defined in [spec/spec.ts:16088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16088)*





___
<a id="iot.models.topicrulepayload.properties-15.sql.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16089)*





___
<a id="iot.models.topicrulepayload.properties-15.sql.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16090)*





___
<a id="iot.models.topicrulepayload.properties-15.sql.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16091)*





___

___

___

___

___
<a id="iot.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:15492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15492)*




<a id="iot.resources.certificate"></a>

###  Certificate

** Certificate**:  *`object`* 

*Defined in [spec/spec.ts:15493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15493)*




<a id="iot.resources.certificate.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html"

*Defined in [spec/spec.ts:15499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15499)*





___
<a id="iot.resources.certificate.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::Certificate"

*Defined in [spec/spec.ts:15514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15514)*





___
<a id="iot.resources.certificate.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:15494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15494)*




<a id="iot.resources.certificate.attributes-1.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:15495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15495)*




<a id="iot.resources.certificate.attributes-1.arn.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15496)*





___

___

___
<a id="iot.resources.certificate.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15500)*




<a id="iot.resources.certificate.properties-16.certificatesigningrequest"></a>

###  CertificateSigningRequest

** CertificateSigningRequest**:  *`object`* 

*Defined in [spec/spec.ts:15501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15501)*




<a id="iot.resources.certificate.properties-16.certificatesigningrequest.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-certificatesigningrequest"

*Defined in [spec/spec.ts:15502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15502)*





___
<a id="iot.resources.certificate.properties-16.certificatesigningrequest.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15503)*





___
<a id="iot.resources.certificate.properties-16.certificatesigningrequest.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15504)*





___
<a id="iot.resources.certificate.properties-16.certificatesigningrequest.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15505)*





___

___
<a id="iot.resources.certificate.properties-16.status"></a>

###  Status

** Status**:  *`object`* 

*Defined in [spec/spec.ts:15507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15507)*




<a id="iot.resources.certificate.properties-16.status.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificate.html#cfn-iot-certificate-status"

*Defined in [spec/spec.ts:15508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15508)*





___
<a id="iot.resources.certificate.properties-16.status.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15509)*





___
<a id="iot.resources.certificate.properties-16.status.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15510)*





___
<a id="iot.resources.certificate.properties-16.status.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15511)*





___

___

___

___
<a id="iot.resources.policy"></a>

###  Policy

** Policy**:  *`object`* 

*Defined in [spec/spec.ts:15516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15516)*




<a id="iot.resources.policy.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html"

*Defined in [spec/spec.ts:15522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15522)*





___
<a id="iot.resources.policy.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::Policy"

*Defined in [spec/spec.ts:15537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15537)*





___
<a id="iot.resources.policy.attributes-2"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:15517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15517)*




<a id="iot.resources.policy.attributes-2.arn-1"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:15518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15518)*




<a id="iot.resources.policy.attributes-2.arn-1.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15519)*





___

___

___
<a id="iot.resources.policy.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15523)*




<a id="iot.resources.policy.properties-17.policydocument"></a>

###  PolicyDocument

** PolicyDocument**:  *`object`* 

*Defined in [spec/spec.ts:15524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15524)*




<a id="iot.resources.policy.properties-17.policydocument.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policydocument"

*Defined in [spec/spec.ts:15525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15525)*





___
<a id="iot.resources.policy.properties-17.policydocument.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:15526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15526)*





___
<a id="iot.resources.policy.properties-17.policydocument.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15527)*





___
<a id="iot.resources.policy.properties-17.policydocument.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15528)*





___

___
<a id="iot.resources.policy.properties-17.policyname"></a>

###  PolicyName

** PolicyName**:  *`object`* 

*Defined in [spec/spec.ts:15530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15530)*




<a id="iot.resources.policy.properties-17.policyname.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html#cfn-iot-policy-policyname"

*Defined in [spec/spec.ts:15531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15531)*





___
<a id="iot.resources.policy.properties-17.policyname.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15532)*





___
<a id="iot.resources.policy.properties-17.policyname.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15533)*





___
<a id="iot.resources.policy.properties-17.policyname.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15534)*





___

___

___

___
<a id="iot.resources.policyprincipalattachment"></a>

###  PolicyPrincipalAttachment

** PolicyPrincipalAttachment**:  *`object`* 

*Defined in [spec/spec.ts:15539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15539)*




<a id="iot.resources.policyprincipalattachment.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html"

*Defined in [spec/spec.ts:15540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15540)*





___
<a id="iot.resources.policyprincipalattachment.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::PolicyPrincipalAttachment"

*Defined in [spec/spec.ts:15555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15555)*





___
<a id="iot.resources.policyprincipalattachment.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15541)*




<a id="iot.resources.policyprincipalattachment.properties-18.policyname-1"></a>

###  PolicyName

** PolicyName**:  *`object`* 

*Defined in [spec/spec.ts:15542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15542)*




<a id="iot.resources.policyprincipalattachment.properties-18.policyname-1.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-policyname"

*Defined in [spec/spec.ts:15543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15543)*





___
<a id="iot.resources.policyprincipalattachment.properties-18.policyname-1.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15544)*





___
<a id="iot.resources.policyprincipalattachment.properties-18.policyname-1.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15545)*





___
<a id="iot.resources.policyprincipalattachment.properties-18.policyname-1.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15546)*





___

___
<a id="iot.resources.policyprincipalattachment.properties-18.principal"></a>

###  Principal

** Principal**:  *`object`* 

*Defined in [spec/spec.ts:15548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15548)*




<a id="iot.resources.policyprincipalattachment.properties-18.principal.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policyprincipalattachment.html#cfn-iot-policyprincipalattachment-principal"

*Defined in [spec/spec.ts:15549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15549)*





___
<a id="iot.resources.policyprincipalattachment.properties-18.principal.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15550)*





___
<a id="iot.resources.policyprincipalattachment.properties-18.principal.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15551)*





___
<a id="iot.resources.policyprincipalattachment.properties-18.principal.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15552)*





___

___

___

___
<a id="iot.resources.thing"></a>

###  Thing

** Thing**:  *`object`* 

*Defined in [spec/spec.ts:15557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15557)*




<a id="iot.resources.thing.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html"

*Defined in [spec/spec.ts:15558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15558)*





___
<a id="iot.resources.thing.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::Thing"

*Defined in [spec/spec.ts:15573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15573)*





___
<a id="iot.resources.thing.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15559)*




<a id="iot.resources.thing.properties-19.attributepayload-1"></a>

###  AttributePayload

** AttributePayload**:  *`object`* 

*Defined in [spec/spec.ts:15560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15560)*




<a id="iot.resources.thing.properties-19.attributepayload-1.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-attributepayload"

*Defined in [spec/spec.ts:15561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15561)*





___
<a id="iot.resources.thing.properties-19.attributepayload-1.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15562)*





___
<a id="iot.resources.thing.properties-19.attributepayload-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "AttributePayload"

*Defined in [spec/spec.ts:15563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15563)*





___
<a id="iot.resources.thing.properties-19.attributepayload-1.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15564)*





___

___
<a id="iot.resources.thing.properties-19.thingname"></a>

###  ThingName

** ThingName**:  *`object`* 

*Defined in [spec/spec.ts:15566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15566)*




<a id="iot.resources.thing.properties-19.thingname.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thing.html#cfn-iot-thing-thingname"

*Defined in [spec/spec.ts:15567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15567)*





___
<a id="iot.resources.thing.properties-19.thingname.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15568)*





___
<a id="iot.resources.thing.properties-19.thingname.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15569)*





___
<a id="iot.resources.thing.properties-19.thingname.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15570)*





___

___

___

___
<a id="iot.resources.thingprincipalattachment"></a>

###  ThingPrincipalAttachment

** ThingPrincipalAttachment**:  *`object`* 

*Defined in [spec/spec.ts:15575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15575)*




<a id="iot.resources.thingprincipalattachment.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html"

*Defined in [spec/spec.ts:15576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15576)*





___
<a id="iot.resources.thingprincipalattachment.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::ThingPrincipalAttachment"

*Defined in [spec/spec.ts:15591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15591)*





___
<a id="iot.resources.thingprincipalattachment.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15577)*




<a id="iot.resources.thingprincipalattachment.properties-20.principal-1"></a>

###  Principal

** Principal**:  *`object`* 

*Defined in [spec/spec.ts:15578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15578)*




<a id="iot.resources.thingprincipalattachment.properties-20.principal-1.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-principal"

*Defined in [spec/spec.ts:15579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15579)*





___
<a id="iot.resources.thingprincipalattachment.properties-20.principal-1.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15580)*





___
<a id="iot.resources.thingprincipalattachment.properties-20.principal-1.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15581)*





___
<a id="iot.resources.thingprincipalattachment.properties-20.principal-1.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15582)*





___

___
<a id="iot.resources.thingprincipalattachment.properties-20.thingname-1"></a>

###  ThingName

** ThingName**:  *`object`* 

*Defined in [spec/spec.ts:15584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15584)*




<a id="iot.resources.thingprincipalattachment.properties-20.thingname-1.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-thingprincipalattachment.html#cfn-iot-thingprincipalattachment-thingname"

*Defined in [spec/spec.ts:15585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15585)*





___
<a id="iot.resources.thingprincipalattachment.properties-20.thingname-1.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15586)*





___
<a id="iot.resources.thingprincipalattachment.properties-20.thingname-1.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15587)*





___
<a id="iot.resources.thingprincipalattachment.properties-20.thingname-1.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15588)*





___

___

___

___
<a id="iot.resources.topicrule"></a>

###  TopicRule

** TopicRule**:  *`object`* 

*Defined in [spec/spec.ts:15593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15593)*




<a id="iot.resources.topicrule.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html"

*Defined in [spec/spec.ts:15599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15599)*





___
<a id="iot.resources.topicrule.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::IoT::TopicRule"

*Defined in [spec/spec.ts:15614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15614)*





___
<a id="iot.resources.topicrule.attributes-3"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:15594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15594)*




<a id="iot.resources.topicrule.attributes-3.arn-2"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:15595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15595)*




<a id="iot.resources.topicrule.attributes-3.arn-2.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15596)*





___

___

___
<a id="iot.resources.topicrule.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:15600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15600)*




<a id="iot.resources.topicrule.properties-21.rulename"></a>

###  RuleName

** RuleName**:  *`object`* 

*Defined in [spec/spec.ts:15601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15601)*




<a id="iot.resources.topicrule.properties-21.rulename.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-rulename"

*Defined in [spec/spec.ts:15602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15602)*





___
<a id="iot.resources.topicrule.properties-21.rulename.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:15603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15603)*





___
<a id="iot.resources.topicrule.properties-21.rulename.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:15604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15604)*





___
<a id="iot.resources.topicrule.properties-21.rulename.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:15605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15605)*





___

___
<a id="iot.resources.topicrule.properties-21.topicrulepayload-1"></a>

###  TopicRulePayload

** TopicRulePayload**:  *`object`* 

*Defined in [spec/spec.ts:15607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15607)*




<a id="iot.resources.topicrule.properties-21.topicrulepayload-1.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-topicrule.html#cfn-iot-topicrule-topicrulepayload"

*Defined in [spec/spec.ts:15608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15608)*





___
<a id="iot.resources.topicrule.properties-21.topicrulepayload-1.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:15609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15609)*





___
<a id="iot.resources.topicrule.properties-21.topicrulepayload-1.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "TopicRulePayload"

*Defined in [spec/spec.ts:15610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15610)*





___
<a id="iot.resources.topicrule.properties-21.topicrulepayload-1.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:15611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L15611)*





___

___

___

___

___

<a id="kms"></a>

## Object literal: KMS


<a id="kms.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:16168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16168)*


#### Type declaration





___
<a id="kms.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:16099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16099)*




<a id="kms.resources.alias"></a>

###  Alias

** Alias**:  *`object`* 

*Defined in [spec/spec.ts:16100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16100)*




<a id="kms.resources.alias.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html"

*Defined in [spec/spec.ts:16101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16101)*





___
<a id="kms.resources.alias.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KMS::Alias"

*Defined in [spec/spec.ts:16116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16116)*





___
<a id="kms.resources.alias.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16102)*




<a id="kms.resources.alias.properties.aliasname"></a>

###  AliasName

** AliasName**:  *`object`* 

*Defined in [spec/spec.ts:16103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16103)*




<a id="kms.resources.alias.properties.aliasname.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-aliasname"

*Defined in [spec/spec.ts:16104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16104)*





___
<a id="kms.resources.alias.properties.aliasname.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16105)*





___
<a id="kms.resources.alias.properties.aliasname.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16106)*





___
<a id="kms.resources.alias.properties.aliasname.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16107)*





___

___
<a id="kms.resources.alias.properties.targetkeyid"></a>

###  TargetKeyId

** TargetKeyId**:  *`object`* 

*Defined in [spec/spec.ts:16109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16109)*




<a id="kms.resources.alias.properties.targetkeyid.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-alias.html#cfn-kms-alias-targetkeyid"

*Defined in [spec/spec.ts:16110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16110)*





___
<a id="kms.resources.alias.properties.targetkeyid.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16111)*





___
<a id="kms.resources.alias.properties.targetkeyid.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16112)*





___
<a id="kms.resources.alias.properties.targetkeyid.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16113)*





___

___

___

___
<a id="kms.resources.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:16118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16118)*




<a id="kms.resources.key.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html"

*Defined in [spec/spec.ts:16124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16124)*





___
<a id="kms.resources.key.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KMS::Key"

*Defined in [spec/spec.ts:16165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16165)*





___
<a id="kms.resources.key.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:16119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16119)*




<a id="kms.resources.key.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:16120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16120)*




<a id="kms.resources.key.attributes.arn.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16121)*





___

___

___
<a id="kms.resources.key.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16125)*




<a id="kms.resources.key.properties-1.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:16126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16126)*




<a id="kms.resources.key.properties-1.description.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-description"

*Defined in [spec/spec.ts:16127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16127)*





___
<a id="kms.resources.key.properties-1.description.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16128)*





___
<a id="kms.resources.key.properties-1.description.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16129)*





___
<a id="kms.resources.key.properties-1.description.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16130)*





___

___
<a id="kms.resources.key.properties-1.enablekeyrotation"></a>

###  EnableKeyRotation

** EnableKeyRotation**:  *`object`* 

*Defined in [spec/spec.ts:16132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16132)*




<a id="kms.resources.key.properties-1.enablekeyrotation.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enablekeyrotation"

*Defined in [spec/spec.ts:16133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16133)*





___
<a id="kms.resources.key.properties-1.enablekeyrotation.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:16134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16134)*





___
<a id="kms.resources.key.properties-1.enablekeyrotation.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16135)*





___
<a id="kms.resources.key.properties-1.enablekeyrotation.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16136)*





___

___
<a id="kms.resources.key.properties-1.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:16138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16138)*




<a id="kms.resources.key.properties-1.enabled.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-enabled"

*Defined in [spec/spec.ts:16139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16139)*





___
<a id="kms.resources.key.properties-1.enabled.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:16140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16140)*





___
<a id="kms.resources.key.properties-1.enabled.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16141)*





___
<a id="kms.resources.key.properties-1.enabled.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16142)*





___

___
<a id="kms.resources.key.properties-1.keypolicy"></a>

###  KeyPolicy

** KeyPolicy**:  *`object`* 

*Defined in [spec/spec.ts:16144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16144)*




<a id="kms.resources.key.properties-1.keypolicy.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keypolicy"

*Defined in [spec/spec.ts:16145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16145)*





___
<a id="kms.resources.key.properties-1.keypolicy.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:16146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16146)*





___
<a id="kms.resources.key.properties-1.keypolicy.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16147)*





___
<a id="kms.resources.key.properties-1.keypolicy.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16148)*





___

___
<a id="kms.resources.key.properties-1.keyusage"></a>

###  KeyUsage

** KeyUsage**:  *`object`* 

*Defined in [spec/spec.ts:16150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16150)*




<a id="kms.resources.key.properties-1.keyusage.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-keyusage"

*Defined in [spec/spec.ts:16151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16151)*





___
<a id="kms.resources.key.properties-1.keyusage.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16152)*





___
<a id="kms.resources.key.properties-1.keyusage.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16153)*





___
<a id="kms.resources.key.properties-1.keyusage.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16154)*





___

___
<a id="kms.resources.key.properties-1.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:16156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16156)*




<a id="kms.resources.key.properties-1.tags.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kms-key.html#cfn-kms-key-tags"

*Defined in [spec/spec.ts:16157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16157)*





___
<a id="kms.resources.key.properties-1.tags.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16158)*





___
<a id="kms.resources.key.properties-1.tags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:16159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16159)*





___
<a id="kms.resources.key.properties-1.tags.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16160)*





___
<a id="kms.resources.key.properties-1.tags.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:16161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16161)*





___
<a id="kms.resources.key.properties-1.tags.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16162)*





___

___

___

___

___

<a id="kinesisanalytics"></a>

## Object literal: KinesisAnalytics


<a id="kinesisanalytics.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:16282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16282)*




<a id="kinesisanalytics.models.csvmappingparameters"></a>

###  CSVMappingParameters

** CSVMappingParameters**:  *`object`* 

*Defined in [spec/spec.ts:16283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16283)*




<a id="kinesisanalytics.models.csvmappingparameters.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html"

*Defined in [spec/spec.ts:16284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16284)*





___
<a id="kinesisanalytics.models.csvmappingparameters.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.CSVMappingParameters"

*Defined in [spec/spec.ts:16299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16299)*





___
<a id="kinesisanalytics.models.csvmappingparameters.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16285)*




<a id="kinesisanalytics.models.csvmappingparameters.properties.recordcolumndelimiter"></a>

###  RecordColumnDelimiter

** RecordColumnDelimiter**:  *`object`* 

*Defined in [spec/spec.ts:16292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16292)*




<a id="kinesisanalytics.models.csvmappingparameters.properties.recordcolumndelimiter.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordcolumndelimiter"

*Defined in [spec/spec.ts:16294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16294)*





___
<a id="kinesisanalytics.models.csvmappingparameters.properties.recordcolumndelimiter.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16295)*





___
<a id="kinesisanalytics.models.csvmappingparameters.properties.recordcolumndelimiter.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16293)*





___
<a id="kinesisanalytics.models.csvmappingparameters.properties.recordcolumndelimiter.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16296)*





___

___
<a id="kinesisanalytics.models.csvmappingparameters.properties.recordrowdelimiter"></a>

###  RecordRowDelimiter

** RecordRowDelimiter**:  *`object`* 

*Defined in [spec/spec.ts:16286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16286)*




<a id="kinesisanalytics.models.csvmappingparameters.properties.recordrowdelimiter.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-csvmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-csvmappingparameters-recordrowdelimiter"

*Defined in [spec/spec.ts:16288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16288)*





___
<a id="kinesisanalytics.models.csvmappingparameters.properties.recordrowdelimiter.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16289)*





___
<a id="kinesisanalytics.models.csvmappingparameters.properties.recordrowdelimiter.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16287)*





___
<a id="kinesisanalytics.models.csvmappingparameters.properties.recordrowdelimiter.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16290)*





___

___

___

___
<a id="kinesisanalytics.models.destinationschema"></a>

###  DestinationSchema

** DestinationSchema**:  *`object`* 

*Defined in [spec/spec.ts:16518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16518)*




<a id="kinesisanalytics.models.destinationschema.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html"

*Defined in [spec/spec.ts:16519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16519)*





___
<a id="kinesisanalytics.models.destinationschema.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationOutput.DestinationSchema"

*Defined in [spec/spec.ts:16528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16528)*





___
<a id="kinesisanalytics.models.destinationschema.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16520)*




<a id="kinesisanalytics.models.destinationschema.properties-1.recordformattype"></a>

###  RecordFormatType

** RecordFormatType**:  *`object`* 

*Defined in [spec/spec.ts:16521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16521)*




<a id="kinesisanalytics.models.destinationschema.properties-1.recordformattype.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-destinationschema.html#cfn-kinesisanalytics-applicationoutput-destinationschema-recordformattype"

*Defined in [spec/spec.ts:16523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16523)*





___
<a id="kinesisanalytics.models.destinationschema.properties-1.recordformattype.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16524)*





___
<a id="kinesisanalytics.models.destinationschema.properties-1.recordformattype.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16522)*





___
<a id="kinesisanalytics.models.destinationschema.properties-1.recordformattype.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16525)*





___

___

___

___
<a id="kinesisanalytics.models.input"></a>

###  Input

** Input**:  *`object`* 

*Defined in [spec/spec.ts:16301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16301)*




<a id="kinesisanalytics.models.input.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-input.html"

*Defined in [spec/spec.ts:16302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16302)*





___
<a id="kinesisanalytics.models.input.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application.Input"

*Defined in [spec/spec.ts:16341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16341)*





___
<a id="kinesisanalytics.models.input.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16303)*




<a id="kinesisanalytics.models.input.properties-2.inputparallelism"></a>

###  InputParallelism

** InputParallelism**:  *`object`* 

*Defined in [spec/spec.ts:16334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16334)*




<a id="kinesisanalytics.models.input.properties-2.inputparallelism.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-input.html#cfn-kinesisanalytics-application-input-inputparallelism"

*Defined in [spec/spec.ts:16337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16337)*





___
<a id="kinesisanalytics.models.input.properties-2.inputparallelism.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16336)*





___
<a id="kinesisanalytics.models.input.properties-2.inputparallelism.type"></a>

###  Type

**●  Type**:  *`string`*  = "InputParallelism"

*Defined in [spec/spec.ts:16335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16335)*





___
<a id="kinesisanalytics.models.input.properties-2.inputparallelism.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16338)*





___

___
<a id="kinesisanalytics.models.input.properties-2.inputprocessingconfiguration"></a>

###  InputProcessingConfiguration

** InputProcessingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16328)*




<a id="kinesisanalytics.models.input.properties-2.inputprocessingconfiguration.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-input.html#cfn-kinesisanalytics-application-input-inputprocessingconfiguration"

*Defined in [spec/spec.ts:16331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16331)*





___
<a id="kinesisanalytics.models.input.properties-2.inputprocessingconfiguration.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16330)*





___
<a id="kinesisanalytics.models.input.properties-2.inputprocessingconfiguration.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "InputProcessingConfiguration"

*Defined in [spec/spec.ts:16329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16329)*





___
<a id="kinesisanalytics.models.input.properties-2.inputprocessingconfiguration.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16332)*





___

___
<a id="kinesisanalytics.models.input.properties-2.inputschema"></a>

###  InputSchema

** InputSchema**:  *`object`* 

*Defined in [spec/spec.ts:16310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16310)*




<a id="kinesisanalytics.models.input.properties-2.inputschema.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-input.html#cfn-kinesisanalytics-application-input-inputschema"

*Defined in [spec/spec.ts:16313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16313)*





___
<a id="kinesisanalytics.models.input.properties-2.inputschema.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16312)*





___
<a id="kinesisanalytics.models.input.properties-2.inputschema.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "InputSchema"

*Defined in [spec/spec.ts:16311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16311)*





___
<a id="kinesisanalytics.models.input.properties-2.inputschema.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16314)*





___

___
<a id="kinesisanalytics.models.input.properties-2.kinesisfirehoseinput"></a>

###  KinesisFirehoseInput

** KinesisFirehoseInput**:  *`object`* 

*Defined in [spec/spec.ts:16322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16322)*




<a id="kinesisanalytics.models.input.properties-2.kinesisfirehoseinput.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-input.html#cfn-kinesisanalytics-application-input-kinesisfirehoseinput"

*Defined in [spec/spec.ts:16325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16325)*





___
<a id="kinesisanalytics.models.input.properties-2.kinesisfirehoseinput.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16324)*





___
<a id="kinesisanalytics.models.input.properties-2.kinesisfirehoseinput.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "KinesisFirehoseInput"

*Defined in [spec/spec.ts:16323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16323)*





___
<a id="kinesisanalytics.models.input.properties-2.kinesisfirehoseinput.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16326)*





___

___
<a id="kinesisanalytics.models.input.properties-2.kinesisstreamsinput"></a>

###  KinesisStreamsInput

** KinesisStreamsInput**:  *`object`* 

*Defined in [spec/spec.ts:16316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16316)*




<a id="kinesisanalytics.models.input.properties-2.kinesisstreamsinput.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-input.html#cfn-kinesisanalytics-application-input-kinesisstreamsinput"

*Defined in [spec/spec.ts:16319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16319)*





___
<a id="kinesisanalytics.models.input.properties-2.kinesisstreamsinput.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16318)*





___
<a id="kinesisanalytics.models.input.properties-2.kinesisstreamsinput.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "KinesisStreamsInput"

*Defined in [spec/spec.ts:16317](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16317)*





___
<a id="kinesisanalytics.models.input.properties-2.kinesisstreamsinput.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16320)*





___

___
<a id="kinesisanalytics.models.input.properties-2.nameprefix"></a>

###  NamePrefix

** NamePrefix**:  *`object`* 

*Defined in [spec/spec.ts:16304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16304)*




<a id="kinesisanalytics.models.input.properties-2.nameprefix.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-input.html#cfn-kinesisanalytics-application-input-nameprefix"

*Defined in [spec/spec.ts:16306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16306)*





___
<a id="kinesisanalytics.models.input.properties-2.nameprefix.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16307)*





___
<a id="kinesisanalytics.models.input.properties-2.nameprefix.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16305)*





___
<a id="kinesisanalytics.models.input.properties-2.nameprefix.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16308)*





___

___

___

___
<a id="kinesisanalytics.models.inputlambdaprocessor"></a>

###  InputLambdaProcessor

** InputLambdaProcessor**:  *`object`* 

*Defined in [spec/spec.ts:16343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16343)*




<a id="kinesisanalytics.models.inputlambdaprocessor.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputlambdaprocessor.html"

*Defined in [spec/spec.ts:16344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16344)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application.InputLambdaProcessor"

*Defined in [spec/spec.ts:16359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16359)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16345)*




<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.resourcearn"></a>

###  ResourceARN

** ResourceARN**:  *`object`* 

*Defined in [spec/spec.ts:16346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16346)*




<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.resourcearn.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputlambdaprocessor.html#cfn-kinesisanalytics-application-inputlambdaprocessor-resourcearn"

*Defined in [spec/spec.ts:16348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16348)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.resourcearn.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16349)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.resourcearn.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16347)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.resourcearn.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16350)*





___

___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.rolearn"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16352)*




<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.rolearn.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputlambdaprocessor.html#cfn-kinesisanalytics-application-inputlambdaprocessor-rolearn"

*Defined in [spec/spec.ts:16354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16354)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.rolearn.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16355)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.rolearn.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16353)*





___
<a id="kinesisanalytics.models.inputlambdaprocessor.properties-3.rolearn.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16356)*





___

___

___

___
<a id="kinesisanalytics.models.inputparallelism-1"></a>

###  InputParallelism

** InputParallelism**:  *`object`* 

*Defined in [spec/spec.ts:16361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16361)*




<a id="kinesisanalytics.models.inputparallelism-1.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputparallelism.html"

*Defined in [spec/spec.ts:16362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16362)*





___
<a id="kinesisanalytics.models.inputparallelism-1.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application.InputParallelism"

*Defined in [spec/spec.ts:16371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16371)*





___
<a id="kinesisanalytics.models.inputparallelism-1.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16363)*




<a id="kinesisanalytics.models.inputparallelism-1.properties-4.count"></a>

###  Count

** Count**:  *`object`* 

*Defined in [spec/spec.ts:16364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16364)*




<a id="kinesisanalytics.models.inputparallelism-1.properties-4.count.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputparallelism.html#cfn-kinesisanalytics-application-inputparallelism-count"

*Defined in [spec/spec.ts:16366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16366)*





___
<a id="kinesisanalytics.models.inputparallelism-1.properties-4.count.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:16367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16367)*





___
<a id="kinesisanalytics.models.inputparallelism-1.properties-4.count.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16365)*





___
<a id="kinesisanalytics.models.inputparallelism-1.properties-4.count.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16368)*





___

___

___

___
<a id="kinesisanalytics.models.inputprocessingconfiguration-1"></a>

###  InputProcessingConfiguration

** InputProcessingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16373)*




<a id="kinesisanalytics.models.inputprocessingconfiguration-1.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputprocessingconfiguration.html"

*Defined in [spec/spec.ts:16374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16374)*





___
<a id="kinesisanalytics.models.inputprocessingconfiguration-1.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application.InputProcessingConfiguration"

*Defined in [spec/spec.ts:16383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16383)*





___
<a id="kinesisanalytics.models.inputprocessingconfiguration-1.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16375)*




<a id="kinesisanalytics.models.inputprocessingconfiguration-1.properties-5.inputlambdaprocessor-1"></a>

###  InputLambdaProcessor

** InputLambdaProcessor**:  *`object`* 

*Defined in [spec/spec.ts:16376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16376)*




<a id="kinesisanalytics.models.inputprocessingconfiguration-1.properties-5.inputlambdaprocessor-1.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputprocessingconfiguration.html#cfn-kinesisanalytics-application-inputprocessingconfiguration-inputlambdaprocessor"

*Defined in [spec/spec.ts:16379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16379)*





___
<a id="kinesisanalytics.models.inputprocessingconfiguration-1.properties-5.inputlambdaprocessor-1.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16378)*





___
<a id="kinesisanalytics.models.inputprocessingconfiguration-1.properties-5.inputlambdaprocessor-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "InputLambdaProcessor"

*Defined in [spec/spec.ts:16377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16377)*





___
<a id="kinesisanalytics.models.inputprocessingconfiguration-1.properties-5.inputlambdaprocessor-1.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16380)*





___

___

___

___
<a id="kinesisanalytics.models.inputschema-1"></a>

###  InputSchema

** InputSchema**:  *`object`* 

*Defined in [spec/spec.ts:16385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16385)*




<a id="kinesisanalytics.models.inputschema-1.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputschema.html"

*Defined in [spec/spec.ts:16386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16386)*





___
<a id="kinesisanalytics.models.inputschema-1.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application.InputSchema"

*Defined in [spec/spec.ts:16408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16408)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16387)*




<a id="kinesisanalytics.models.inputschema-1.properties-6.recordcolumns"></a>

###  RecordColumns

** RecordColumns**:  *`object`* 

*Defined in [spec/spec.ts:16394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16394)*




<a id="kinesisanalytics.models.inputschema-1.properties-6.recordcolumns.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputschema.html#cfn-kinesisanalytics-application-inputschema-recordcolumns"

*Defined in [spec/spec.ts:16397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16397)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordcolumns.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "RecordColumn"

*Defined in [spec/spec.ts:16398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16398)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordcolumns.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16396)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordcolumns.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:16395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16395)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordcolumns.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16399)*





___

___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordencoding"></a>

###  RecordEncoding

** RecordEncoding**:  *`object`* 

*Defined in [spec/spec.ts:16388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16388)*




<a id="kinesisanalytics.models.inputschema-1.properties-6.recordencoding.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputschema.html#cfn-kinesisanalytics-application-inputschema-recordencoding"

*Defined in [spec/spec.ts:16390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16390)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordencoding.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16391)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordencoding.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16389)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordencoding.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16392)*





___

___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordformat"></a>

###  RecordFormat

** RecordFormat**:  *`object`* 

*Defined in [spec/spec.ts:16401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16401)*




<a id="kinesisanalytics.models.inputschema-1.properties-6.recordformat.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-inputschema.html#cfn-kinesisanalytics-application-inputschema-recordformat"

*Defined in [spec/spec.ts:16404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16404)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordformat.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16403)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordformat.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "RecordFormat"

*Defined in [spec/spec.ts:16402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16402)*





___
<a id="kinesisanalytics.models.inputschema-1.properties-6.recordformat.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16405)*





___

___

___

___
<a id="kinesisanalytics.models.jsonmappingparameters"></a>

###  JSONMappingParameters

** JSONMappingParameters**:  *`object`* 

*Defined in [spec/spec.ts:16410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16410)*




<a id="kinesisanalytics.models.jsonmappingparameters.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html"

*Defined in [spec/spec.ts:16411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16411)*





___
<a id="kinesisanalytics.models.jsonmappingparameters.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.JSONMappingParameters"

*Defined in [spec/spec.ts:16420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16420)*





___
<a id="kinesisanalytics.models.jsonmappingparameters.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16412)*




<a id="kinesisanalytics.models.jsonmappingparameters.properties-7.recordrowpath"></a>

###  RecordRowPath

** RecordRowPath**:  *`object`* 

*Defined in [spec/spec.ts:16413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16413)*




<a id="kinesisanalytics.models.jsonmappingparameters.properties-7.recordrowpath.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-jsonmappingparameters-recordrowpath"

*Defined in [spec/spec.ts:16415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16415)*





___
<a id="kinesisanalytics.models.jsonmappingparameters.properties-7.recordrowpath.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16416)*





___
<a id="kinesisanalytics.models.jsonmappingparameters.properties-7.recordrowpath.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16414)*





___
<a id="kinesisanalytics.models.jsonmappingparameters.properties-7.recordrowpath.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16417)*





___

___

___

___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1"></a>

###  KinesisFirehoseInput

** KinesisFirehoseInput**:  *`object`* 

*Defined in [spec/spec.ts:16422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16422)*




<a id="kinesisanalytics.models.kinesisfirehoseinput-1.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-kinesisfirehoseinput.html"

*Defined in [spec/spec.ts:16423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16423)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application.KinesisFirehoseInput"

*Defined in [spec/spec.ts:16438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16438)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16424)*




<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.resourcearn-1"></a>

###  ResourceARN

** ResourceARN**:  *`object`* 

*Defined in [spec/spec.ts:16425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16425)*




<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.resourcearn-1.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-kinesisfirehoseinput.html#cfn-kinesisanalytics-application-kinesisfirehoseinput-resourcearn"

*Defined in [spec/spec.ts:16427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16427)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.resourcearn-1.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16428)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.resourcearn-1.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16426)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.resourcearn-1.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16429)*





___

___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.rolearn-1"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16431)*




<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.rolearn-1.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-kinesisfirehoseinput.html#cfn-kinesisanalytics-application-kinesisfirehoseinput-rolearn"

*Defined in [spec/spec.ts:16433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16433)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.rolearn-1.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16434)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.rolearn-1.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16432)*





___
<a id="kinesisanalytics.models.kinesisfirehoseinput-1.properties-8.rolearn-1.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16435)*





___

___

___

___
<a id="kinesisanalytics.models.kinesisfirehoseoutput"></a>

###  KinesisFirehoseOutput

** KinesisFirehoseOutput**:  *`object`* 

*Defined in [spec/spec.ts:16530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16530)*




<a id="kinesisanalytics.models.kinesisfirehoseoutput.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html"

*Defined in [spec/spec.ts:16531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16531)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationOutput.KinesisFirehoseOutput"

*Defined in [spec/spec.ts:16546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16546)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16532)*




<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.resourcearn-2"></a>

###  ResourceARN

** ResourceARN**:  *`object`* 

*Defined in [spec/spec.ts:16533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16533)*




<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.resourcearn-2.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-resourcearn"

*Defined in [spec/spec.ts:16535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16535)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.resourcearn-2.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16536)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.resourcearn-2.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16534)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.resourcearn-2.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16537)*





___

___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.rolearn-2"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16539)*




<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.rolearn-2.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisfirehoseoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisfirehoseoutput-rolearn"

*Defined in [spec/spec.ts:16541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16541)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.rolearn-2.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16542)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.rolearn-2.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16540)*





___
<a id="kinesisanalytics.models.kinesisfirehoseoutput.properties-9.rolearn-2.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16543)*





___

___

___

___
<a id="kinesisanalytics.models.kinesisstreamsinput-1"></a>

###  KinesisStreamsInput

** KinesisStreamsInput**:  *`object`* 

*Defined in [spec/spec.ts:16440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16440)*




<a id="kinesisanalytics.models.kinesisstreamsinput-1.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-kinesisstreamsinput.html"

*Defined in [spec/spec.ts:16441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16441)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application.KinesisStreamsInput"

*Defined in [spec/spec.ts:16456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16456)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16442)*




<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.resourcearn-3"></a>

###  ResourceARN

** ResourceARN**:  *`object`* 

*Defined in [spec/spec.ts:16443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16443)*




<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.resourcearn-3.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-kinesisstreamsinput.html#cfn-kinesisanalytics-application-kinesisstreamsinput-resourcearn"

*Defined in [spec/spec.ts:16445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16445)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.resourcearn-3.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16446)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.resourcearn-3.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16444)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.resourcearn-3.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16447)*





___

___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.rolearn-3"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16449)*




<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.rolearn-3.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-application-kinesisstreamsinput.html#cfn-kinesisanalytics-application-kinesisstreamsinput-rolearn"

*Defined in [spec/spec.ts:16451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16451)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.rolearn-3.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16452)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.rolearn-3.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16450)*





___
<a id="kinesisanalytics.models.kinesisstreamsinput-1.properties-10.rolearn-3.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16453)*





___

___

___

___
<a id="kinesisanalytics.models.kinesisstreamsoutput"></a>

###  KinesisStreamsOutput

** KinesisStreamsOutput**:  *`object`* 

*Defined in [spec/spec.ts:16548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16548)*




<a id="kinesisanalytics.models.kinesisstreamsoutput.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html"

*Defined in [spec/spec.ts:16549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16549)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationOutput.KinesisStreamsOutput"

*Defined in [spec/spec.ts:16564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16564)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16550)*




<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.resourcearn-4"></a>

###  ResourceARN

** ResourceARN**:  *`object`* 

*Defined in [spec/spec.ts:16551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16551)*




<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.resourcearn-4.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-resourcearn"

*Defined in [spec/spec.ts:16553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16553)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.resourcearn-4.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16554)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.resourcearn-4.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16552)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.resourcearn-4.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16555)*





___

___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.rolearn-4"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16557)*




<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.rolearn-4.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-kinesisstreamsoutput.html#cfn-kinesisanalytics-applicationoutput-kinesisstreamsoutput-rolearn"

*Defined in [spec/spec.ts:16559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16559)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.rolearn-4.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16560)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.rolearn-4.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16558)*





___
<a id="kinesisanalytics.models.kinesisstreamsoutput.properties-11.rolearn-4.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16561)*





___

___

___

___
<a id="kinesisanalytics.models.mappingparameters"></a>

###  MappingParameters

** MappingParameters**:  *`object`* 

*Defined in [spec/spec.ts:16458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16458)*




<a id="kinesisanalytics.models.mappingparameters.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-mappingparameters.html"

*Defined in [spec/spec.ts:16459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16459)*





___
<a id="kinesisanalytics.models.mappingparameters.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.MappingParameters"

*Defined in [spec/spec.ts:16474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16474)*





___
<a id="kinesisanalytics.models.mappingparameters.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16460)*




<a id="kinesisanalytics.models.mappingparameters.properties-12.csvmappingparameters-1"></a>

###  CSVMappingParameters

** CSVMappingParameters**:  *`object`* 

*Defined in [spec/spec.ts:16467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16467)*




<a id="kinesisanalytics.models.mappingparameters.properties-12.csvmappingparameters-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-mappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-mappingparameters-csvmappingparameters"

*Defined in [spec/spec.ts:16470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16470)*





___
<a id="kinesisanalytics.models.mappingparameters.properties-12.csvmappingparameters-1.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16469)*





___
<a id="kinesisanalytics.models.mappingparameters.properties-12.csvmappingparameters-1.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "CSVMappingParameters"

*Defined in [spec/spec.ts:16468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16468)*





___
<a id="kinesisanalytics.models.mappingparameters.properties-12.csvmappingparameters-1.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16471)*





___

___
<a id="kinesisanalytics.models.mappingparameters.properties-12.jsonmappingparameters-1"></a>

###  JSONMappingParameters

** JSONMappingParameters**:  *`object`* 

*Defined in [spec/spec.ts:16461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16461)*




<a id="kinesisanalytics.models.mappingparameters.properties-12.jsonmappingparameters-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-mappingparameters.html#cfn-kinesisanalytics-applicationreferencedatasource-mappingparameters-jsonmappingparameters"

*Defined in [spec/spec.ts:16464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16464)*





___
<a id="kinesisanalytics.models.mappingparameters.properties-12.jsonmappingparameters-1.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16463)*





___
<a id="kinesisanalytics.models.mappingparameters.properties-12.jsonmappingparameters-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "JSONMappingParameters"

*Defined in [spec/spec.ts:16462](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16462)*





___
<a id="kinesisanalytics.models.mappingparameters.properties-12.jsonmappingparameters-1.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16465)*





___

___

___

___
<a id="kinesisanalytics.models.output"></a>

###  Output

** Output**:  *`object`* 

*Defined in [spec/spec.ts:16566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16566)*




<a id="kinesisanalytics.models.output.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html"

*Defined in [spec/spec.ts:16567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16567)*





___
<a id="kinesisanalytics.models.output.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationOutput.Output"

*Defined in [spec/spec.ts:16594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16594)*





___
<a id="kinesisanalytics.models.output.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16568)*




<a id="kinesisanalytics.models.output.properties-13.destinationschema-1"></a>

###  DestinationSchema

** DestinationSchema**:  *`object`* 

*Defined in [spec/spec.ts:16569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16569)*




<a id="kinesisanalytics.models.output.properties-13.destinationschema-1.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-destinationschema"

*Defined in [spec/spec.ts:16572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16572)*





___
<a id="kinesisanalytics.models.output.properties-13.destinationschema-1.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16571)*





___
<a id="kinesisanalytics.models.output.properties-13.destinationschema-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "DestinationSchema"

*Defined in [spec/spec.ts:16570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16570)*





___
<a id="kinesisanalytics.models.output.properties-13.destinationschema-1.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16573)*





___

___
<a id="kinesisanalytics.models.output.properties-13.kinesisfirehoseoutput-1"></a>

###  KinesisFirehoseOutput

** KinesisFirehoseOutput**:  *`object`* 

*Defined in [spec/spec.ts:16575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16575)*




<a id="kinesisanalytics.models.output.properties-13.kinesisfirehoseoutput-1.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-kinesisfirehoseoutput"

*Defined in [spec/spec.ts:16578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16578)*





___
<a id="kinesisanalytics.models.output.properties-13.kinesisfirehoseoutput-1.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16577)*





___
<a id="kinesisanalytics.models.output.properties-13.kinesisfirehoseoutput-1.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "KinesisFirehoseOutput"

*Defined in [spec/spec.ts:16576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16576)*





___
<a id="kinesisanalytics.models.output.properties-13.kinesisfirehoseoutput-1.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16579)*





___

___
<a id="kinesisanalytics.models.output.properties-13.kinesisstreamsoutput-1"></a>

###  KinesisStreamsOutput

** KinesisStreamsOutput**:  *`object`* 

*Defined in [spec/spec.ts:16581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16581)*




<a id="kinesisanalytics.models.output.properties-13.kinesisstreamsoutput-1.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-kinesisstreamsoutput"

*Defined in [spec/spec.ts:16584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16584)*





___
<a id="kinesisanalytics.models.output.properties-13.kinesisstreamsoutput-1.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16583)*





___
<a id="kinesisanalytics.models.output.properties-13.kinesisstreamsoutput-1.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "KinesisStreamsOutput"

*Defined in [spec/spec.ts:16582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16582)*





___
<a id="kinesisanalytics.models.output.properties-13.kinesisstreamsoutput-1.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16585)*





___

___
<a id="kinesisanalytics.models.output.properties-13.name-14"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:16587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16587)*




<a id="kinesisanalytics.models.output.properties-13.name-14.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationoutput-output.html#cfn-kinesisanalytics-applicationoutput-output-name"

*Defined in [spec/spec.ts:16589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16589)*





___
<a id="kinesisanalytics.models.output.properties-13.name-14.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16590)*





___
<a id="kinesisanalytics.models.output.properties-13.name-14.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16588)*





___
<a id="kinesisanalytics.models.output.properties-13.name-14.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16591)*





___

___

___

___
<a id="kinesisanalytics.models.recordcolumn"></a>

###  RecordColumn

** RecordColumn**:  *`object`* 

*Defined in [spec/spec.ts:16476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16476)*




<a id="kinesisanalytics.models.recordcolumn.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html"

*Defined in [spec/spec.ts:16477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16477)*





___
<a id="kinesisanalytics.models.recordcolumn.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.RecordColumn"

*Defined in [spec/spec.ts:16498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16498)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16478)*




<a id="kinesisanalytics.models.recordcolumn.properties-14.mapping"></a>

###  Mapping

** Mapping**:  *`object`* 

*Defined in [spec/spec.ts:16479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16479)*




<a id="kinesisanalytics.models.recordcolumn.properties-14.mapping.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html#cfn-kinesisanalytics-applicationreferencedatasource-recordcolumn-mapping"

*Defined in [spec/spec.ts:16481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16481)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.mapping.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16482)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.mapping.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16480)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.mapping.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16483)*





___

___
<a id="kinesisanalytics.models.recordcolumn.properties-14.name-16"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:16491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16491)*




<a id="kinesisanalytics.models.recordcolumn.properties-14.name-16.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html#cfn-kinesisanalytics-applicationreferencedatasource-recordcolumn-name"

*Defined in [spec/spec.ts:16493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16493)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.name-16.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16494)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.name-16.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16492)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.name-16.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16495)*





___

___
<a id="kinesisanalytics.models.recordcolumn.properties-14.sqltype"></a>

###  SqlType

** SqlType**:  *`object`* 

*Defined in [spec/spec.ts:16485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16485)*




<a id="kinesisanalytics.models.recordcolumn.properties-14.sqltype.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordcolumn.html#cfn-kinesisanalytics-applicationreferencedatasource-recordcolumn-sqltype"

*Defined in [spec/spec.ts:16487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16487)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.sqltype.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16488)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.sqltype.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16486)*





___
<a id="kinesisanalytics.models.recordcolumn.properties-14.sqltype.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16489)*





___

___

___

___
<a id="kinesisanalytics.models.recordformat-1"></a>

###  RecordFormat

** RecordFormat**:  *`object`* 

*Defined in [spec/spec.ts:16500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16500)*




<a id="kinesisanalytics.models.recordformat-1.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html"

*Defined in [spec/spec.ts:16501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16501)*





___
<a id="kinesisanalytics.models.recordformat-1.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.RecordFormat"

*Defined in [spec/spec.ts:16516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16516)*





___
<a id="kinesisanalytics.models.recordformat-1.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16502)*




<a id="kinesisanalytics.models.recordformat-1.properties-15.mappingparameters-1"></a>

###  MappingParameters

** MappingParameters**:  *`object`* 

*Defined in [spec/spec.ts:16503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16503)*




<a id="kinesisanalytics.models.recordformat-1.properties-15.mappingparameters-1.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-mappingparameters"

*Defined in [spec/spec.ts:16506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16506)*





___
<a id="kinesisanalytics.models.recordformat-1.properties-15.mappingparameters-1.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16505)*





___
<a id="kinesisanalytics.models.recordformat-1.properties-15.mappingparameters-1.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "MappingParameters"

*Defined in [spec/spec.ts:16504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16504)*





___
<a id="kinesisanalytics.models.recordformat-1.properties-15.mappingparameters-1.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16507)*





___

___
<a id="kinesisanalytics.models.recordformat-1.properties-15.recordformattype-1"></a>

###  RecordFormatType

** RecordFormatType**:  *`object`* 

*Defined in [spec/spec.ts:16509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16509)*




<a id="kinesisanalytics.models.recordformat-1.properties-15.recordformattype-1.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-recordformat.html#cfn-kinesisanalytics-applicationreferencedatasource-recordformat-recordformattype"

*Defined in [spec/spec.ts:16511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16511)*





___
<a id="kinesisanalytics.models.recordformat-1.properties-15.recordformattype-1.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16512)*





___
<a id="kinesisanalytics.models.recordformat-1.properties-15.recordformattype-1.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16510)*





___
<a id="kinesisanalytics.models.recordformat-1.properties-15.recordformattype-1.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16513)*





___

___

___

___
<a id="kinesisanalytics.models.referencedatasource"></a>

###  ReferenceDataSource

** ReferenceDataSource**:  *`object`* 

*Defined in [spec/spec.ts:16596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16596)*




<a id="kinesisanalytics.models.referencedatasource.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html"

*Defined in [spec/spec.ts:16597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16597)*





___
<a id="kinesisanalytics.models.referencedatasource.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.ReferenceDataSource"

*Defined in [spec/spec.ts:16618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16618)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16598)*




<a id="kinesisanalytics.models.referencedatasource.properties-16.referenceschema"></a>

###  ReferenceSchema

** ReferenceSchema**:  *`object`* 

*Defined in [spec/spec.ts:16599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16599)*




<a id="kinesisanalytics.models.referencedatasource.properties-16.referenceschema.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-referenceschema"

*Defined in [spec/spec.ts:16602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16602)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.referenceschema.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16601)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.referenceschema.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "ReferenceSchema"

*Defined in [spec/spec.ts:16600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16600)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.referenceschema.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16603)*





___

___
<a id="kinesisanalytics.models.referencedatasource.properties-16.s3referencedatasource"></a>

###  S3ReferenceDataSource

** S3ReferenceDataSource**:  *`object`* 

*Defined in [spec/spec.ts:16611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16611)*




<a id="kinesisanalytics.models.referencedatasource.properties-16.s3referencedatasource.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-s3referencedatasource"

*Defined in [spec/spec.ts:16614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16614)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.s3referencedatasource.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16613)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.s3referencedatasource.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "S3ReferenceDataSource"

*Defined in [spec/spec.ts:16612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16612)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.s3referencedatasource.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16615)*





___

___
<a id="kinesisanalytics.models.referencedatasource.properties-16.tablename"></a>

###  TableName

** TableName**:  *`object`* 

*Defined in [spec/spec.ts:16605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16605)*




<a id="kinesisanalytics.models.referencedatasource.properties-16.tablename.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource-tablename"

*Defined in [spec/spec.ts:16607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16607)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.tablename.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16608)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.tablename.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16606)*





___
<a id="kinesisanalytics.models.referencedatasource.properties-16.tablename.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16609)*





___

___

___

___
<a id="kinesisanalytics.models.referenceschema-1"></a>

###  ReferenceSchema

** ReferenceSchema**:  *`object`* 

*Defined in [spec/spec.ts:16620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16620)*




<a id="kinesisanalytics.models.referenceschema-1.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html"

*Defined in [spec/spec.ts:16621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16621)*





___
<a id="kinesisanalytics.models.referenceschema-1.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.ReferenceSchema"

*Defined in [spec/spec.ts:16643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16643)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16622)*




<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordcolumns-1"></a>

###  RecordColumns

** RecordColumns**:  *`object`* 

*Defined in [spec/spec.ts:16629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16629)*




<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordcolumns-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordcolumns"

*Defined in [spec/spec.ts:16632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16632)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordcolumns-1.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "RecordColumn"

*Defined in [spec/spec.ts:16633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16633)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordcolumns-1.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16631)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordcolumns-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:16630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16630)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordcolumns-1.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16634)*





___

___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordencoding-1"></a>

###  RecordEncoding

** RecordEncoding**:  *`object`* 

*Defined in [spec/spec.ts:16623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16623)*




<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordencoding-1.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordencoding"

*Defined in [spec/spec.ts:16625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16625)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordencoding-1.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16626)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordencoding-1.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16624)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordencoding-1.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16627)*





___

___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordformat-2"></a>

###  RecordFormat

** RecordFormat**:  *`object`* 

*Defined in [spec/spec.ts:16636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16636)*




<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordformat-2.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-referenceschema.html#cfn-kinesisanalytics-applicationreferencedatasource-referenceschema-recordformat"

*Defined in [spec/spec.ts:16639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16639)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordformat-2.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16638)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordformat-2.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "RecordFormat"

*Defined in [spec/spec.ts:16637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16637)*





___
<a id="kinesisanalytics.models.referenceschema-1.properties-17.recordformat-2.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16640)*





___

___

___

___
<a id="kinesisanalytics.models.s3referencedatasource-1"></a>

###  S3ReferenceDataSource

** S3ReferenceDataSource**:  *`object`* 

*Defined in [spec/spec.ts:16645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16645)*




<a id="kinesisanalytics.models.s3referencedatasource-1.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html"

*Defined in [spec/spec.ts:16646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16646)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.name-20"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource.S3ReferenceDataSource"

*Defined in [spec/spec.ts:16667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16667)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16647)*




<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.bucketarn"></a>

###  BucketARN

** BucketARN**:  *`object`* 

*Defined in [spec/spec.ts:16648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16648)*




<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.bucketarn.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-bucketarn"

*Defined in [spec/spec.ts:16650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16650)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.bucketarn.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16651)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.bucketarn.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16649)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.bucketarn.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16652)*





___

___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.filekey"></a>

###  FileKey

** FileKey**:  *`object`* 

*Defined in [spec/spec.ts:16654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16654)*




<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.filekey.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-filekey"

*Defined in [spec/spec.ts:16656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16656)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.filekey.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16657)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.filekey.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16655)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.filekey.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16658)*





___

___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.referencerolearn"></a>

###  ReferenceRoleARN

** ReferenceRoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16660)*




<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.referencerolearn.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalytics-applicationreferencedatasource-s3referencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-s3referencedatasource-referencerolearn"

*Defined in [spec/spec.ts:16662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16662)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.referencerolearn.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16663)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.referencerolearn.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16661)*





___
<a id="kinesisanalytics.models.s3referencedatasource-1.properties-18.referencerolearn.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16664)*





___

___

___

___

___
<a id="kinesisanalytics.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:16213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16213)*




<a id="kinesisanalytics.resources.application"></a>

###  Application

** Application**:  *`object`* 

*Defined in [spec/spec.ts:16214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16214)*




<a id="kinesisanalytics.resources.application.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html"

*Defined in [spec/spec.ts:16215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16215)*





___
<a id="kinesisanalytics.resources.application.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::Application"

*Defined in [spec/spec.ts:16243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16243)*





___
<a id="kinesisanalytics.resources.application.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16216)*




<a id="kinesisanalytics.resources.application.properties-19.applicationcode"></a>

###  ApplicationCode

** ApplicationCode**:  *`object`* 

*Defined in [spec/spec.ts:16236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16236)*




<a id="kinesisanalytics.resources.application.properties-19.applicationcode.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationcode"

*Defined in [spec/spec.ts:16238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16238)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationcode.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16239)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationcode.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16237)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationcode.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16240)*





___

___
<a id="kinesisanalytics.resources.application.properties-19.applicationdescription"></a>

###  ApplicationDescription

** ApplicationDescription**:  *`object`* 

*Defined in [spec/spec.ts:16230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16230)*




<a id="kinesisanalytics.resources.application.properties-19.applicationdescription.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationdescription"

*Defined in [spec/spec.ts:16232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16232)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationdescription.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16233)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationdescription.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16231)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationdescription.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16234)*





___

___
<a id="kinesisanalytics.resources.application.properties-19.applicationname"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:16217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16217)*




<a id="kinesisanalytics.resources.application.properties-19.applicationname.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-applicationname"

*Defined in [spec/spec.ts:16219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16219)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationname.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16220)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationname.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16218)*





___
<a id="kinesisanalytics.resources.application.properties-19.applicationname.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16221)*





___

___
<a id="kinesisanalytics.resources.application.properties-19.inputs"></a>

###  Inputs

** Inputs**:  *`object`* 

*Defined in [spec/spec.ts:16223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16223)*




<a id="kinesisanalytics.resources.application.properties-19.inputs.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-application.html#cfn-kinesisanalytics-application-inputs"

*Defined in [spec/spec.ts:16226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16226)*





___
<a id="kinesisanalytics.resources.application.properties-19.inputs.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Input"

*Defined in [spec/spec.ts:16227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16227)*





___
<a id="kinesisanalytics.resources.application.properties-19.inputs.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16225)*





___
<a id="kinesisanalytics.resources.application.properties-19.inputs.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:16224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16224)*





___
<a id="kinesisanalytics.resources.application.properties-19.inputs.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16228)*





___

___

___

___
<a id="kinesisanalytics.resources.applicationoutput"></a>

###  ApplicationOutput

** ApplicationOutput**:  *`object`* 

*Defined in [spec/spec.ts:16245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16245)*




<a id="kinesisanalytics.resources.applicationoutput.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html"

*Defined in [spec/spec.ts:16246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16246)*





___
<a id="kinesisanalytics.resources.applicationoutput.name-22"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationOutput"

*Defined in [spec/spec.ts:16261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16261)*





___
<a id="kinesisanalytics.resources.applicationoutput.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16247)*




<a id="kinesisanalytics.resources.applicationoutput.properties-20.applicationname-1"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:16248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16248)*




<a id="kinesisanalytics.resources.applicationoutput.properties-20.applicationname-1.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-applicationname"

*Defined in [spec/spec.ts:16250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16250)*





___
<a id="kinesisanalytics.resources.applicationoutput.properties-20.applicationname-1.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16251)*





___
<a id="kinesisanalytics.resources.applicationoutput.properties-20.applicationname-1.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16249)*





___
<a id="kinesisanalytics.resources.applicationoutput.properties-20.applicationname-1.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16252)*





___

___
<a id="kinesisanalytics.resources.applicationoutput.properties-20.output-1"></a>

###  Output

** Output**:  *`object`* 

*Defined in [spec/spec.ts:16254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16254)*




<a id="kinesisanalytics.resources.applicationoutput.properties-20.output-1.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationoutput.html#cfn-kinesisanalytics-applicationoutput-output"

*Defined in [spec/spec.ts:16257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16257)*





___
<a id="kinesisanalytics.resources.applicationoutput.properties-20.output-1.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16256)*





___
<a id="kinesisanalytics.resources.applicationoutput.properties-20.output-1.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "Output"

*Defined in [spec/spec.ts:16255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16255)*





___
<a id="kinesisanalytics.resources.applicationoutput.properties-20.output-1.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16258)*





___

___

___

___
<a id="kinesisanalytics.resources.applicationreferencedatasource"></a>

###  ApplicationReferenceDataSource

** ApplicationReferenceDataSource**:  *`object`* 

*Defined in [spec/spec.ts:16263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16263)*




<a id="kinesisanalytics.resources.applicationreferencedatasource.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html"

*Defined in [spec/spec.ts:16264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16264)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.name-23"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisAnalytics::ApplicationReferenceDataSource"

*Defined in [spec/spec.ts:16279](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16279)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16265)*




<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.applicationname-2"></a>

###  ApplicationName

** ApplicationName**:  *`object`* 

*Defined in [spec/spec.ts:16266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16266)*




<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.applicationname-2.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-applicationname"

*Defined in [spec/spec.ts:16268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16268)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.applicationname-2.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16269)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.applicationname-2.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16267)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.applicationname-2.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16270)*





___

___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.referencedatasource-1"></a>

###  ReferenceDataSource

** ReferenceDataSource**:  *`object`* 

*Defined in [spec/spec.ts:16272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16272)*




<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.referencedatasource-1.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisanalytics-applicationreferencedatasource.html#cfn-kinesisanalytics-applicationreferencedatasource-referencedatasource"

*Defined in [spec/spec.ts:16275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16275)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.referencedatasource-1.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16274)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.referencedatasource-1.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "ReferenceDataSource"

*Defined in [spec/spec.ts:16273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16273)*





___
<a id="kinesisanalytics.resources.applicationreferencedatasource.properties-21.referencedatasource-1.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16276)*





___

___

___

___

___

<a id="kinesisfirehose"></a>

## Object literal: KinesisFirehose


<a id="kinesisfirehose.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:16727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16727)*




<a id="kinesisfirehose.models.bufferinghints"></a>

###  BufferingHints

** BufferingHints**:  *`object`* 

*Defined in [spec/spec.ts:16728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16728)*




<a id="kinesisfirehose.models.bufferinghints.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html"

*Defined in [spec/spec.ts:16729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16729)*





___
<a id="kinesisfirehose.models.bufferinghints.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.BufferingHints"

*Defined in [spec/spec.ts:16744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16744)*





___
<a id="kinesisfirehose.models.bufferinghints.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16730)*




<a id="kinesisfirehose.models.bufferinghints.properties.intervalinseconds"></a>

###  IntervalInSeconds

** IntervalInSeconds**:  *`object`* 

*Defined in [spec/spec.ts:16731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16731)*




<a id="kinesisfirehose.models.bufferinghints.properties.intervalinseconds.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-intervalinseconds"

*Defined in [spec/spec.ts:16732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16732)*





___
<a id="kinesisfirehose.models.bufferinghints.properties.intervalinseconds.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:16733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16733)*





___
<a id="kinesisfirehose.models.bufferinghints.properties.intervalinseconds.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16734)*





___
<a id="kinesisfirehose.models.bufferinghints.properties.intervalinseconds.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16735)*





___

___
<a id="kinesisfirehose.models.bufferinghints.properties.sizeinmbs"></a>

###  SizeInMBs

** SizeInMBs**:  *`object`* 

*Defined in [spec/spec.ts:16737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16737)*




<a id="kinesisfirehose.models.bufferinghints.properties.sizeinmbs.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-bufferinghints.html#cfn-kinesisfirehose-deliverystream-bufferinghints-sizeinmbs"

*Defined in [spec/spec.ts:16738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16738)*





___
<a id="kinesisfirehose.models.bufferinghints.properties.sizeinmbs.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:16739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16739)*





___
<a id="kinesisfirehose.models.bufferinghints.properties.sizeinmbs.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16740)*





___
<a id="kinesisfirehose.models.bufferinghints.properties.sizeinmbs.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16741)*





___

___

___

___
<a id="kinesisfirehose.models.cloudwatchloggingoptions"></a>

###  CloudWatchLoggingOptions

** CloudWatchLoggingOptions**:  *`object`* 

*Defined in [spec/spec.ts:16746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16746)*




<a id="kinesisfirehose.models.cloudwatchloggingoptions.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html"

*Defined in [spec/spec.ts:16747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16747)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.CloudWatchLoggingOptions"

*Defined in [spec/spec.ts:16768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16768)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16748)*




<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:16749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16749)*




<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.enabled.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-enabled"

*Defined in [spec/spec.ts:16750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16750)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.enabled.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:16751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16751)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.enabled.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16752)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.enabled.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16753)*





___

___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.loggroupname"></a>

###  LogGroupName

** LogGroupName**:  *`object`* 

*Defined in [spec/spec.ts:16755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16755)*




<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.loggroupname.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-loggroupname"

*Defined in [spec/spec.ts:16756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16756)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.loggroupname.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16757)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.loggroupname.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16758)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.loggroupname.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16759)*





___

___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.logstreamname"></a>

###  LogStreamName

** LogStreamName**:  *`object`* 

*Defined in [spec/spec.ts:16761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16761)*




<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.logstreamname.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-cloudwatchloggingoptions.html#cfn-kinesisfirehose-deliverystream-cloudwatchloggingoptions-logstreamname"

*Defined in [spec/spec.ts:16762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16762)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.logstreamname.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16763)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.logstreamname.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16764)*





___
<a id="kinesisfirehose.models.cloudwatchloggingoptions.properties-1.logstreamname.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16765)*





___

___

___

___
<a id="kinesisfirehose.models.copycommand"></a>

###  CopyCommand

** CopyCommand**:  *`object`* 

*Defined in [spec/spec.ts:16770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16770)*




<a id="kinesisfirehose.models.copycommand.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html"

*Defined in [spec/spec.ts:16771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16771)*





___
<a id="kinesisfirehose.models.copycommand.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.CopyCommand"

*Defined in [spec/spec.ts:16792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16792)*





___
<a id="kinesisfirehose.models.copycommand.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16772)*




<a id="kinesisfirehose.models.copycommand.properties-2.copyoptions"></a>

###  CopyOptions

** CopyOptions**:  *`object`* 

*Defined in [spec/spec.ts:16773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16773)*




<a id="kinesisfirehose.models.copycommand.properties-2.copyoptions.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-copyoptions"

*Defined in [spec/spec.ts:16774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16774)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.copyoptions.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16775)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.copyoptions.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16776)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.copyoptions.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16777)*





___

___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablecolumns"></a>

###  DataTableColumns

** DataTableColumns**:  *`object`* 

*Defined in [spec/spec.ts:16779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16779)*




<a id="kinesisfirehose.models.copycommand.properties-2.datatablecolumns.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablecolumns"

*Defined in [spec/spec.ts:16780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16780)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablecolumns.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16781)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablecolumns.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16782)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablecolumns.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16783)*





___

___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablename"></a>

###  DataTableName

** DataTableName**:  *`object`* 

*Defined in [spec/spec.ts:16785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16785)*




<a id="kinesisfirehose.models.copycommand.properties-2.datatablename.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-copycommand.html#cfn-kinesisfirehose-deliverystream-copycommand-datatablename"

*Defined in [spec/spec.ts:16786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16786)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablename.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16787)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablename.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16788)*





___
<a id="kinesisfirehose.models.copycommand.properties-2.datatablename.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16789)*





___

___

___

___
<a id="kinesisfirehose.models.elasticsearchbufferinghints"></a>

###  ElasticsearchBufferingHints

** ElasticsearchBufferingHints**:  *`object`* 

*Defined in [spec/spec.ts:16794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16794)*




<a id="kinesisfirehose.models.elasticsearchbufferinghints.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html"

*Defined in [spec/spec.ts:16795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16795)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.ElasticsearchBufferingHints"

*Defined in [spec/spec.ts:16810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16810)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16796)*




<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.intervalinseconds-1"></a>

###  IntervalInSeconds

** IntervalInSeconds**:  *`object`* 

*Defined in [spec/spec.ts:16797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16797)*




<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.intervalinseconds-1.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-intervalinseconds"

*Defined in [spec/spec.ts:16798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16798)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.intervalinseconds-1.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:16799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16799)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.intervalinseconds-1.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16800)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.intervalinseconds-1.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16801)*





___

___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.sizeinmbs-1"></a>

###  SizeInMBs

** SizeInMBs**:  *`object`* 

*Defined in [spec/spec.ts:16803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16803)*




<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.sizeinmbs-1.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchbufferinghints.html#cfn-kinesisfirehose-deliverystream-elasticsearchbufferinghints-sizeinmbs"

*Defined in [spec/spec.ts:16804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16804)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.sizeinmbs-1.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:16805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16805)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.sizeinmbs-1.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16806)*





___
<a id="kinesisfirehose.models.elasticsearchbufferinghints.properties-3.sizeinmbs-1.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16807)*





___

___

___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration"></a>

###  ElasticsearchDestinationConfiguration

** ElasticsearchDestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16812)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html"

*Defined in [spec/spec.ts:16813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16813)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.ElasticsearchDestinationConfiguration"

*Defined in [spec/spec.ts:16882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16882)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16814)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.bufferinghints-1"></a>

###  BufferingHints

** BufferingHints**:  *`object`* 

*Defined in [spec/spec.ts:16815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16815)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.bufferinghints-1.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-bufferinghints"

*Defined in [spec/spec.ts:16816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16816)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.bufferinghints-1.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16817)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.bufferinghints-1.type"></a>

###  Type

**●  Type**:  *`string`*  = "ElasticsearchBufferingHints"

*Defined in [spec/spec.ts:16818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16818)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.bufferinghints-1.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16819)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.cloudwatchloggingoptions-1"></a>

###  CloudWatchLoggingOptions

** CloudWatchLoggingOptions**:  *`object`* 

*Defined in [spec/spec.ts:16821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16821)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.cloudwatchloggingoptions-1.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-cloudwatchloggingoptions"

*Defined in [spec/spec.ts:16822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16822)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.cloudwatchloggingoptions-1.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16823)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.cloudwatchloggingoptions-1.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "CloudWatchLoggingOptions"

*Defined in [spec/spec.ts:16824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16824)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.cloudwatchloggingoptions-1.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16825)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.domainarn"></a>

###  DomainARN

** DomainARN**:  *`object`* 

*Defined in [spec/spec.ts:16827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16827)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.domainarn.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-domainarn"

*Defined in [spec/spec.ts:16828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16828)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.domainarn.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16829)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.domainarn.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16830)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.domainarn.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16831)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexname"></a>

###  IndexName

** IndexName**:  *`object`* 

*Defined in [spec/spec.ts:16833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16833)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexname.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexname"

*Defined in [spec/spec.ts:16834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16834)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexname.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16835)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexname.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16836)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexname.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16837)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexrotationperiod"></a>

###  IndexRotationPeriod

** IndexRotationPeriod**:  *`object`* 

*Defined in [spec/spec.ts:16839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16839)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexrotationperiod.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-indexrotationperiod"

*Defined in [spec/spec.ts:16840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16840)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexrotationperiod.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16841)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexrotationperiod.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16842)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.indexrotationperiod.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16843)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.processingconfiguration"></a>

###  ProcessingConfiguration

** ProcessingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16845)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.processingconfiguration.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-processingconfiguration"

*Defined in [spec/spec.ts:16846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16846)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.processingconfiguration.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16847)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.processingconfiguration.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "ProcessingConfiguration"

*Defined in [spec/spec.ts:16848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16848)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.processingconfiguration.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16849)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.retryoptions"></a>

###  RetryOptions

** RetryOptions**:  *`object`* 

*Defined in [spec/spec.ts:16851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16851)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.retryoptions.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-retryoptions"

*Defined in [spec/spec.ts:16852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16852)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.retryoptions.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16853)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.retryoptions.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "ElasticsearchRetryOptions"

*Defined in [spec/spec.ts:16854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16854)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.retryoptions.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16855)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.rolearn"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16857)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.rolearn.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-rolearn"

*Defined in [spec/spec.ts:16858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16858)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.rolearn.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16859)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.rolearn.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16860)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.rolearn.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16861)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3backupmode"></a>

###  S3BackupMode

** S3BackupMode**:  *`object`* 

*Defined in [spec/spec.ts:16863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16863)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3backupmode.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3backupmode"

*Defined in [spec/spec.ts:16864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16864)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3backupmode.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16865)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3backupmode.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16866)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3backupmode.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16867)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3configuration"></a>

###  S3Configuration

** S3Configuration**:  *`object`* 

*Defined in [spec/spec.ts:16869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16869)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3configuration.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-s3configuration"

*Defined in [spec/spec.ts:16870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16870)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3configuration.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16871)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3configuration.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "S3DestinationConfiguration"

*Defined in [spec/spec.ts:16872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16872)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.s3configuration.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16873)*





___

___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.typename"></a>

###  TypeName

** TypeName**:  *`object`* 

*Defined in [spec/spec.ts:16875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16875)*




<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.typename.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration-typename"

*Defined in [spec/spec.ts:16876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16876)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.typename.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16877)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.typename.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16878)*





___
<a id="kinesisfirehose.models.elasticsearchdestinationconfiguration.properties-4.typename.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16879)*





___

___

___

___
<a id="kinesisfirehose.models.elasticsearchretryoptions"></a>

###  ElasticsearchRetryOptions

** ElasticsearchRetryOptions**:  *`object`* 

*Defined in [spec/spec.ts:16884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16884)*




<a id="kinesisfirehose.models.elasticsearchretryoptions.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html"

*Defined in [spec/spec.ts:16885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16885)*





___
<a id="kinesisfirehose.models.elasticsearchretryoptions.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.ElasticsearchRetryOptions"

*Defined in [spec/spec.ts:16894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16894)*





___
<a id="kinesisfirehose.models.elasticsearchretryoptions.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16886)*




<a id="kinesisfirehose.models.elasticsearchretryoptions.properties-5.durationinseconds"></a>

###  DurationInSeconds

** DurationInSeconds**:  *`object`* 

*Defined in [spec/spec.ts:16887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16887)*




<a id="kinesisfirehose.models.elasticsearchretryoptions.properties-5.durationinseconds.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-elasticsearchretryoptions.html#cfn-kinesisfirehose-deliverystream-elasticsearchretryoptions-durationinseconds"

*Defined in [spec/spec.ts:16888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16888)*





___
<a id="kinesisfirehose.models.elasticsearchretryoptions.properties-5.durationinseconds.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:16889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16889)*





___
<a id="kinesisfirehose.models.elasticsearchretryoptions.properties-5.durationinseconds.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16890)*





___
<a id="kinesisfirehose.models.elasticsearchretryoptions.properties-5.durationinseconds.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16891)*





___

___

___

___
<a id="kinesisfirehose.models.encryptionconfiguration"></a>

###  EncryptionConfiguration

** EncryptionConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16896)*




<a id="kinesisfirehose.models.encryptionconfiguration.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html"

*Defined in [spec/spec.ts:16897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16897)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.EncryptionConfiguration"

*Defined in [spec/spec.ts:16912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16912)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16898)*




<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.kmsencryptionconfig"></a>

###  KMSEncryptionConfig

** KMSEncryptionConfig**:  *`object`* 

*Defined in [spec/spec.ts:16899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16899)*




<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.kmsencryptionconfig.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-kmsencryptionconfig"

*Defined in [spec/spec.ts:16900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16900)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.kmsencryptionconfig.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16901)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.kmsencryptionconfig.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "KMSEncryptionConfig"

*Defined in [spec/spec.ts:16902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16902)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.kmsencryptionconfig.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16903)*





___

___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.noencryptionconfig"></a>

###  NoEncryptionConfig

** NoEncryptionConfig**:  *`object`* 

*Defined in [spec/spec.ts:16905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16905)*




<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.noencryptionconfig.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-encryptionconfiguration.html#cfn-kinesisfirehose-deliverystream-encryptionconfiguration-noencryptionconfig"

*Defined in [spec/spec.ts:16906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16906)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.noencryptionconfig.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16907)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.noencryptionconfig.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16908)*





___
<a id="kinesisfirehose.models.encryptionconfiguration.properties-6.noencryptionconfig.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16909)*





___

___

___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration"></a>

###  ExtendedS3DestinationConfiguration

** ExtendedS3DestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16914)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html"

*Defined in [spec/spec.ts:16915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16915)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.ExtendedS3DestinationConfiguration"

*Defined in [spec/spec.ts:16978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16978)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16916)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bucketarn"></a>

###  BucketARN

** BucketARN**:  *`object`* 

*Defined in [spec/spec.ts:16917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16917)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bucketarn.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bucketarn"

*Defined in [spec/spec.ts:16918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16918)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bucketarn.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16919)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bucketarn.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16920)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bucketarn.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16921)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bufferinghints-2"></a>

###  BufferingHints

** BufferingHints**:  *`object`* 

*Defined in [spec/spec.ts:16923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16923)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bufferinghints-2.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-bufferinghints"

*Defined in [spec/spec.ts:16924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16924)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bufferinghints-2.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16925)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bufferinghints-2.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "BufferingHints"

*Defined in [spec/spec.ts:16926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16926)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.bufferinghints-2.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16927)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.cloudwatchloggingoptions-2"></a>

###  CloudWatchLoggingOptions

** CloudWatchLoggingOptions**:  *`object`* 

*Defined in [spec/spec.ts:16929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16929)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.cloudwatchloggingoptions-2.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-cloudwatchloggingoptions"

*Defined in [spec/spec.ts:16930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16930)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.cloudwatchloggingoptions-2.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16931)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.cloudwatchloggingoptions-2.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "CloudWatchLoggingOptions"

*Defined in [spec/spec.ts:16932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16932)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.cloudwatchloggingoptions-2.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16933)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.compressionformat"></a>

###  CompressionFormat

** CompressionFormat**:  *`object`* 

*Defined in [spec/spec.ts:16935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16935)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.compressionformat.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-compressionformat"

*Defined in [spec/spec.ts:16936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16936)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.compressionformat.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16937)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.compressionformat.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16938)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.compressionformat.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16939)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.encryptionconfiguration-1"></a>

###  EncryptionConfiguration

** EncryptionConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16941)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.encryptionconfiguration-1.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-encryptionconfiguration"

*Defined in [spec/spec.ts:16942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16942)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.encryptionconfiguration-1.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16943)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.encryptionconfiguration-1.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "EncryptionConfiguration"

*Defined in [spec/spec.ts:16944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16944)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.encryptionconfiguration-1.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16945)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.prefix"></a>

###  Prefix

** Prefix**:  *`object`* 

*Defined in [spec/spec.ts:16947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16947)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.prefix.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-prefix"

*Defined in [spec/spec.ts:16948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16948)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.prefix.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16949)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.prefix.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16950)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.prefix.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16951)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.processingconfiguration-1"></a>

###  ProcessingConfiguration

** ProcessingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16953)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.processingconfiguration-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-processingconfiguration"

*Defined in [spec/spec.ts:16954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16954)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.processingconfiguration-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16955)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.processingconfiguration-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "ProcessingConfiguration"

*Defined in [spec/spec.ts:16956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16956)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.processingconfiguration-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16957)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.rolearn-1"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:16959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16959)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.rolearn-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-rolearn"

*Defined in [spec/spec.ts:16960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16960)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.rolearn-1.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16961)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.rolearn-1.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16962)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.rolearn-1.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16963)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupconfiguration"></a>

###  S3BackupConfiguration

** S3BackupConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16965)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupconfiguration.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupconfiguration"

*Defined in [spec/spec.ts:16966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16966)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupconfiguration.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16967)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupconfiguration.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "S3DestinationConfiguration"

*Defined in [spec/spec.ts:16968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16968)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupconfiguration.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16969)*





___

___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupmode-1"></a>

###  S3BackupMode

** S3BackupMode**:  *`object`* 

*Defined in [spec/spec.ts:16971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16971)*




<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupmode-1.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-extendeds3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration-s3backupmode"

*Defined in [spec/spec.ts:16972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16972)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupmode-1.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16973)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupmode-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16974)*





___
<a id="kinesisfirehose.models.extendeds3destinationconfiguration.properties-7.s3backupmode-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16975)*





___

___

___

___
<a id="kinesisfirehose.models.kmsencryptionconfig-1"></a>

###  KMSEncryptionConfig

** KMSEncryptionConfig**:  *`object`* 

*Defined in [spec/spec.ts:16980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16980)*




<a id="kinesisfirehose.models.kmsencryptionconfig-1.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html"

*Defined in [spec/spec.ts:16981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16981)*





___
<a id="kinesisfirehose.models.kmsencryptionconfig-1.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.KMSEncryptionConfig"

*Defined in [spec/spec.ts:16990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16990)*





___
<a id="kinesisfirehose.models.kmsencryptionconfig-1.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16982)*




<a id="kinesisfirehose.models.kmsencryptionconfig-1.properties-8.awskmskeyarn"></a>

###  AWSKMSKeyARN

** AWSKMSKeyARN**:  *`object`* 

*Defined in [spec/spec.ts:16983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16983)*




<a id="kinesisfirehose.models.kmsencryptionconfig-1.properties-8.awskmskeyarn.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kmsencryptionconfig.html#cfn-kinesisfirehose-deliverystream-kmsencryptionconfig-awskmskeyarn"

*Defined in [spec/spec.ts:16984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16984)*





___
<a id="kinesisfirehose.models.kmsencryptionconfig-1.properties-8.awskmskeyarn.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16985)*





___
<a id="kinesisfirehose.models.kmsencryptionconfig-1.properties-8.awskmskeyarn.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16986)*





___
<a id="kinesisfirehose.models.kmsencryptionconfig-1.properties-8.awskmskeyarn.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16987)*





___

___

___

___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration"></a>

###  KinesisStreamSourceConfiguration

** KinesisStreamSourceConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16992)*




<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html"

*Defined in [spec/spec.ts:16993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16993)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.KinesisStreamSourceConfiguration"

*Defined in [spec/spec.ts:17008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17008)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16994)*




<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.kinesisstreamarn"></a>

###  KinesisStreamARN

** KinesisStreamARN**:  *`object`* 

*Defined in [spec/spec.ts:16995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16995)*




<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.kinesisstreamarn.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-kinesisstreamarn"

*Defined in [spec/spec.ts:16996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16996)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.kinesisstreamarn.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16997)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.kinesisstreamarn.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:16998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16998)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.kinesisstreamarn.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16999)*





___

___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.rolearn-2"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:17001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17001)*




<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.rolearn-2.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration-rolearn"

*Defined in [spec/spec.ts:17002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17002)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.rolearn-2.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17003)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.rolearn-2.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17004)*





___
<a id="kinesisfirehose.models.kinesisstreamsourceconfiguration.properties-9.rolearn-2.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17005)*





___

___

___

___
<a id="kinesisfirehose.models.processingconfiguration-2"></a>

###  ProcessingConfiguration

** ProcessingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:17010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17010)*




<a id="kinesisfirehose.models.processingconfiguration-2.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html"

*Defined in [spec/spec.ts:17011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17011)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.ProcessingConfiguration"

*Defined in [spec/spec.ts:17028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17028)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17012)*




<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.enabled-1"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:17013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17013)*




<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.enabled-1.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-enabled"

*Defined in [spec/spec.ts:17014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17014)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.enabled-1.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:17015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17015)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.enabled-1.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17016)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.enabled-1.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17017)*





___

___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.processors"></a>

###  Processors

** Processors**:  *`object`* 

*Defined in [spec/spec.ts:17019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17019)*




<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.processors.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processingconfiguration.html#cfn-kinesisfirehose-deliverystream-processingconfiguration-processors"

*Defined in [spec/spec.ts:17020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17020)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.processors.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17021)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.processors.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Processor"

*Defined in [spec/spec.ts:17022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17022)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.processors.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17023)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.processors.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17024)*





___
<a id="kinesisfirehose.models.processingconfiguration-2.properties-10.processors.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17025)*





___

___

___

___
<a id="kinesisfirehose.models.processor"></a>

###  Processor

** Processor**:  *`object`* 

*Defined in [spec/spec.ts:17030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17030)*




<a id="kinesisfirehose.models.processor.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processor.html"

*Defined in [spec/spec.ts:17031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17031)*





___
<a id="kinesisfirehose.models.processor.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.Processor"

*Defined in [spec/spec.ts:17048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17048)*





___
<a id="kinesisfirehose.models.processor.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17032)*




<a id="kinesisfirehose.models.processor.properties-11.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:17033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17033)*




<a id="kinesisfirehose.models.processor.properties-11.parameters.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processor.html#cfn-kinesisfirehose-deliverystream-processor-parameters"

*Defined in [spec/spec.ts:17034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17034)*





___
<a id="kinesisfirehose.models.processor.properties-11.parameters.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17035)*





___
<a id="kinesisfirehose.models.processor.properties-11.parameters.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ProcessorParameter"

*Defined in [spec/spec.ts:17036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17036)*





___
<a id="kinesisfirehose.models.processor.properties-11.parameters.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17037)*





___
<a id="kinesisfirehose.models.processor.properties-11.parameters.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17038)*





___
<a id="kinesisfirehose.models.processor.properties-11.parameters.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17039)*





___

___
<a id="kinesisfirehose.models.processor.properties-11.type-13"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:17041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17041)*




<a id="kinesisfirehose.models.processor.properties-11.type-13.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processor.html#cfn-kinesisfirehose-deliverystream-processor-type"

*Defined in [spec/spec.ts:17042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17042)*





___
<a id="kinesisfirehose.models.processor.properties-11.type-13.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17043)*





___
<a id="kinesisfirehose.models.processor.properties-11.type-13.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17044)*





___
<a id="kinesisfirehose.models.processor.properties-11.type-13.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17045)*





___

___

___

___
<a id="kinesisfirehose.models.processorparameter"></a>

###  ProcessorParameter

** ProcessorParameter**:  *`object`* 

*Defined in [spec/spec.ts:17050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17050)*




<a id="kinesisfirehose.models.processorparameter.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processorparameter.html"

*Defined in [spec/spec.ts:17051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17051)*





___
<a id="kinesisfirehose.models.processorparameter.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.ProcessorParameter"

*Defined in [spec/spec.ts:17066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17066)*





___
<a id="kinesisfirehose.models.processorparameter.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17052)*




<a id="kinesisfirehose.models.processorparameter.properties-12.parametername"></a>

###  ParameterName

** ParameterName**:  *`object`* 

*Defined in [spec/spec.ts:17053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17053)*




<a id="kinesisfirehose.models.processorparameter.properties-12.parametername.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processorparameter.html#cfn-kinesisfirehose-deliverystream-processorparameter-parametername"

*Defined in [spec/spec.ts:17054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17054)*





___
<a id="kinesisfirehose.models.processorparameter.properties-12.parametername.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17055)*





___
<a id="kinesisfirehose.models.processorparameter.properties-12.parametername.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17056)*





___
<a id="kinesisfirehose.models.processorparameter.properties-12.parametername.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17057)*





___

___
<a id="kinesisfirehose.models.processorparameter.properties-12.parametervalue"></a>

###  ParameterValue

** ParameterValue**:  *`object`* 

*Defined in [spec/spec.ts:17059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17059)*




<a id="kinesisfirehose.models.processorparameter.properties-12.parametervalue.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processorparameter.html#cfn-kinesisfirehose-deliverystream-processorparameter-parametervalue"

*Defined in [spec/spec.ts:17060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17060)*





___
<a id="kinesisfirehose.models.processorparameter.properties-12.parametervalue.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17061)*





___
<a id="kinesisfirehose.models.processorparameter.properties-12.parametervalue.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17062)*





___
<a id="kinesisfirehose.models.processorparameter.properties-12.parametervalue.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17063)*





___

___

___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration"></a>

###  RedshiftDestinationConfiguration

** RedshiftDestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:17068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17068)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html"

*Defined in [spec/spec.ts:17069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17069)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.RedshiftDestinationConfiguration"

*Defined in [spec/spec.ts:17120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17120)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17070)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.cloudwatchloggingoptions-3"></a>

###  CloudWatchLoggingOptions

** CloudWatchLoggingOptions**:  *`object`* 

*Defined in [spec/spec.ts:17071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17071)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.cloudwatchloggingoptions-3.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-cloudwatchloggingoptions"

*Defined in [spec/spec.ts:17072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17072)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.cloudwatchloggingoptions-3.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17073)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.cloudwatchloggingoptions-3.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "CloudWatchLoggingOptions"

*Defined in [spec/spec.ts:17074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17074)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.cloudwatchloggingoptions-3.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17075)*





___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.clusterjdbcurl"></a>

###  ClusterJDBCURL

** ClusterJDBCURL**:  *`object`* 

*Defined in [spec/spec.ts:17077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17077)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.clusterjdbcurl.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-clusterjdbcurl"

*Defined in [spec/spec.ts:17078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17078)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.clusterjdbcurl.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17079)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.clusterjdbcurl.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17080)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.clusterjdbcurl.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17081)*





___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.copycommand-1"></a>

###  CopyCommand

** CopyCommand**:  *`object`* 

*Defined in [spec/spec.ts:17083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17083)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.copycommand-1.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-copycommand"

*Defined in [spec/spec.ts:17084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17084)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.copycommand-1.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17085)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.copycommand-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "CopyCommand"

*Defined in [spec/spec.ts:17086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17086)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.copycommand-1.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17087)*





___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.password"></a>

###  Password

** Password**:  *`object`* 

*Defined in [spec/spec.ts:17089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17089)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.password.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-password"

*Defined in [spec/spec.ts:17090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17090)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.password.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17091)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.password.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17092)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.password.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17093)*





___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.processingconfiguration-3"></a>

###  ProcessingConfiguration

** ProcessingConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:17095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17095)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.processingconfiguration-3.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-processingconfiguration"

*Defined in [spec/spec.ts:17096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17096)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.processingconfiguration-3.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17097)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.processingconfiguration-3.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "ProcessingConfiguration"

*Defined in [spec/spec.ts:17098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17098)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.processingconfiguration-3.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17099)*





___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.rolearn-3"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:17101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17101)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.rolearn-3.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-rolearn"

*Defined in [spec/spec.ts:17102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17102)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.rolearn-3.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17103)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.rolearn-3.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17104)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.rolearn-3.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17105)*





___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.s3configuration-1"></a>

###  S3Configuration

** S3Configuration**:  *`object`* 

*Defined in [spec/spec.ts:17107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17107)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.s3configuration-1.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-s3configuration"

*Defined in [spec/spec.ts:17108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17108)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.s3configuration-1.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17109)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.s3configuration-1.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "S3DestinationConfiguration"

*Defined in [spec/spec.ts:17110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17110)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.s3configuration-1.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17111)*





___

___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.username"></a>

###  Username

** Username**:  *`object`* 

*Defined in [spec/spec.ts:17113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17113)*




<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.username.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-redshiftdestinationconfiguration.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration-username"

*Defined in [spec/spec.ts:17114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17114)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.username.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17115)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.username.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17116)*





___
<a id="kinesisfirehose.models.redshiftdestinationconfiguration.properties-13.username.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17117)*





___

___

___

___
<a id="kinesisfirehose.models.s3destinationconfiguration"></a>

###  S3DestinationConfiguration

** S3DestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:17122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17122)*




<a id="kinesisfirehose.models.s3destinationconfiguration.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html"

*Defined in [spec/spec.ts:17123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17123)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream.S3DestinationConfiguration"

*Defined in [spec/spec.ts:17168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17168)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17124)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bucketarn-1"></a>

###  BucketARN

** BucketARN**:  *`object`* 

*Defined in [spec/spec.ts:17125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17125)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bucketarn-1.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bucketarn"

*Defined in [spec/spec.ts:17126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17126)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bucketarn-1.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17127)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bucketarn-1.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17128)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bucketarn-1.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17129)*





___

___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bufferinghints-3"></a>

###  BufferingHints

** BufferingHints**:  *`object`* 

*Defined in [spec/spec.ts:17131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17131)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bufferinghints-3.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-bufferinghints"

*Defined in [spec/spec.ts:17132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17132)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bufferinghints-3.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17133)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bufferinghints-3.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "BufferingHints"

*Defined in [spec/spec.ts:17134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17134)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.bufferinghints-3.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17135)*





___

___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.cloudwatchloggingoptions-4"></a>

###  CloudWatchLoggingOptions

** CloudWatchLoggingOptions**:  *`object`* 

*Defined in [spec/spec.ts:17137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17137)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.cloudwatchloggingoptions-4.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-cloudwatchloggingoptions"

*Defined in [spec/spec.ts:17138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17138)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.cloudwatchloggingoptions-4.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17139)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.cloudwatchloggingoptions-4.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "CloudWatchLoggingOptions"

*Defined in [spec/spec.ts:17140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17140)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.cloudwatchloggingoptions-4.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17141)*





___

___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.compressionformat-1"></a>

###  CompressionFormat

** CompressionFormat**:  *`object`* 

*Defined in [spec/spec.ts:17143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17143)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.compressionformat-1.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-compressionformat"

*Defined in [spec/spec.ts:17144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17144)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.compressionformat-1.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17145)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.compressionformat-1.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17146)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.compressionformat-1.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17147)*





___

___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.encryptionconfiguration-2"></a>

###  EncryptionConfiguration

** EncryptionConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:17149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17149)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.encryptionconfiguration-2.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-encryptionconfiguration"

*Defined in [spec/spec.ts:17150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17150)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.encryptionconfiguration-2.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17151)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.encryptionconfiguration-2.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "EncryptionConfiguration"

*Defined in [spec/spec.ts:17152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17152)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.encryptionconfiguration-2.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17153)*





___

___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.prefix-1"></a>

###  Prefix

** Prefix**:  *`object`* 

*Defined in [spec/spec.ts:17155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17155)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.prefix-1.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-prefix"

*Defined in [spec/spec.ts:17156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17156)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.prefix-1.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17157)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.prefix-1.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17158)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.prefix-1.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17159)*





___

___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.rolearn-4"></a>

###  RoleARN

** RoleARN**:  *`object`* 

*Defined in [spec/spec.ts:17161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17161)*




<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.rolearn-4.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-s3destinationconfiguration.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration-rolearn"

*Defined in [spec/spec.ts:17162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17162)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.rolearn-4.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17163)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.rolearn-4.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17164)*





___
<a id="kinesisfirehose.models.s3destinationconfiguration.properties-14.rolearn-4.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17165)*





___

___

___

___

___
<a id="kinesisfirehose.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:16672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16672)*




<a id="kinesisfirehose.resources.deliverystream"></a>

###  DeliveryStream

** DeliveryStream**:  *`object`* 

*Defined in [spec/spec.ts:16673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16673)*




<a id="kinesisfirehose.resources.deliverystream.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html"

*Defined in [spec/spec.ts:16679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16679)*





___
<a id="kinesisfirehose.resources.deliverystream.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::KinesisFirehose::DeliveryStream"

*Defined in [spec/spec.ts:16724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16724)*





___
<a id="kinesisfirehose.resources.deliverystream.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:16674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16674)*




<a id="kinesisfirehose.resources.deliverystream.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:16675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16675)*




<a id="kinesisfirehose.resources.deliverystream.attributes.arn.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16676)*





___

___

___
<a id="kinesisfirehose.resources.deliverystream.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:16680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16680)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamname"></a>

###  DeliveryStreamName

** DeliveryStreamName**:  *`object`* 

*Defined in [spec/spec.ts:16681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16681)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamname.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamname"

*Defined in [spec/spec.ts:16682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16682)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamname.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16683)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamname.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16684)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamname.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16685)*





___

___
<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamtype"></a>

###  DeliveryStreamType

** DeliveryStreamType**:  *`object`* 

*Defined in [spec/spec.ts:16687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16687)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamtype.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-deliverystreamtype"

*Defined in [spec/spec.ts:16688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16688)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamtype.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:16689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16689)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamtype.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16690)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.deliverystreamtype.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:16691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16691)*





___

___
<a id="kinesisfirehose.resources.deliverystream.properties-15.elasticsearchdestinationconfiguration-1"></a>

###  ElasticsearchDestinationConfiguration

** ElasticsearchDestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16693)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.elasticsearchdestinationconfiguration-1.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-elasticsearchdestinationconfiguration"

*Defined in [spec/spec.ts:16694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16694)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.elasticsearchdestinationconfiguration-1.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16695)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.elasticsearchdestinationconfiguration-1.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "ElasticsearchDestinationConfiguration"

*Defined in [spec/spec.ts:16696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16696)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.elasticsearchdestinationconfiguration-1.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16697)*





___

___
<a id="kinesisfirehose.resources.deliverystream.properties-15.extendeds3destinationconfiguration-1"></a>

###  ExtendedS3DestinationConfiguration

** ExtendedS3DestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16699)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.extendeds3destinationconfiguration-1.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-extendeds3destinationconfiguration"

*Defined in [spec/spec.ts:16700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16700)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.extendeds3destinationconfiguration-1.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16701)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.extendeds3destinationconfiguration-1.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "ExtendedS3DestinationConfiguration"

*Defined in [spec/spec.ts:16702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16702)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.extendeds3destinationconfiguration-1.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16703)*





___

___
<a id="kinesisfirehose.resources.deliverystream.properties-15.kinesisstreamsourceconfiguration-1"></a>

###  KinesisStreamSourceConfiguration

** KinesisStreamSourceConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16705)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.kinesisstreamsourceconfiguration-1.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-kinesisstreamsourceconfiguration"

*Defined in [spec/spec.ts:16706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16706)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.kinesisstreamsourceconfiguration-1.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16707)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.kinesisstreamsourceconfiguration-1.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "KinesisStreamSourceConfiguration"

*Defined in [spec/spec.ts:16708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16708)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.kinesisstreamsourceconfiguration-1.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16709)*





___

___
<a id="kinesisfirehose.resources.deliverystream.properties-15.redshiftdestinationconfiguration-1"></a>

###  RedshiftDestinationConfiguration

** RedshiftDestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16711)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.redshiftdestinationconfiguration-1.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-redshiftdestinationconfiguration"

*Defined in [spec/spec.ts:16712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16712)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.redshiftdestinationconfiguration-1.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16713)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.redshiftdestinationconfiguration-1.type-24"></a>

###  Type

**●  Type**:  *`string`*  = "RedshiftDestinationConfiguration"

*Defined in [spec/spec.ts:16714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16714)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.redshiftdestinationconfiguration-1.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16715)*





___

___
<a id="kinesisfirehose.resources.deliverystream.properties-15.s3destinationconfiguration-1"></a>

###  S3DestinationConfiguration

** S3DestinationConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:16717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16717)*




<a id="kinesisfirehose.resources.deliverystream.properties-15.s3destinationconfiguration-1.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kinesisfirehose-deliverystream.html#cfn-kinesisfirehose-deliverystream-s3destinationconfiguration"

*Defined in [spec/spec.ts:16718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16718)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.s3destinationconfiguration-1.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:16719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16719)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.s3destinationconfiguration-1.type-25"></a>

###  Type

**●  Type**:  *`string`*  = "S3DestinationConfiguration"

*Defined in [spec/spec.ts:16720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16720)*





___
<a id="kinesisfirehose.resources.deliverystream.properties-15.s3destinationconfiguration-1.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:16721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L16721)*





___

___

___

___

___

<a id="logs"></a>

## Object literal: Logs


<a id="logs.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:17675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17675)*




<a id="logs.models.metrictransformation"></a>

###  MetricTransformation

** MetricTransformation**:  *`object`* 

*Defined in [spec/spec.ts:17676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17676)*




<a id="logs.models.metrictransformation.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-metricfilter-metrictransformation.html"

*Defined in [spec/spec.ts:17677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17677)*





___
<a id="logs.models.metrictransformation.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Logs::MetricFilter.MetricTransformation"

*Defined in [spec/spec.ts:17698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17698)*





___
<a id="logs.models.metrictransformation.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17678)*




<a id="logs.models.metrictransformation.properties.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:17679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17679)*




<a id="logs.models.metrictransformation.properties.metricname.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-metricfilter-metrictransformation.html#cfn-cwl-metricfilter-metrictransformation-metricname"

*Defined in [spec/spec.ts:17680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17680)*





___
<a id="logs.models.metrictransformation.properties.metricname.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17681)*





___
<a id="logs.models.metrictransformation.properties.metricname.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17682)*





___
<a id="logs.models.metrictransformation.properties.metricname.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17683)*





___

___
<a id="logs.models.metrictransformation.properties.metricnamespace"></a>

###  MetricNamespace

** MetricNamespace**:  *`object`* 

*Defined in [spec/spec.ts:17685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17685)*




<a id="logs.models.metrictransformation.properties.metricnamespace.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-metricfilter-metrictransformation.html#cfn-cwl-metricfilter-metrictransformation-metricnamespace"

*Defined in [spec/spec.ts:17686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17686)*





___
<a id="logs.models.metrictransformation.properties.metricnamespace.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17687)*





___
<a id="logs.models.metrictransformation.properties.metricnamespace.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17688)*





___
<a id="logs.models.metrictransformation.properties.metricnamespace.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17689)*





___

___
<a id="logs.models.metrictransformation.properties.metricvalue"></a>

###  MetricValue

** MetricValue**:  *`object`* 

*Defined in [spec/spec.ts:17691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17691)*




<a id="logs.models.metrictransformation.properties.metricvalue.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-metricfilter-metrictransformation.html#cfn-cwl-metricfilter-metrictransformation-metricvalue"

*Defined in [spec/spec.ts:17692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17692)*





___
<a id="logs.models.metrictransformation.properties.metricvalue.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17693)*





___
<a id="logs.models.metrictransformation.properties.metricvalue.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17694)*





___
<a id="logs.models.metrictransformation.properties.metricvalue.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17695)*





___

___

___

___

___
<a id="logs.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:17541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17541)*




<a id="logs.resources.destination"></a>

###  Destination

** Destination**:  *`object`* 

*Defined in [spec/spec.ts:17542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17542)*




<a id="logs.resources.destination.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html"

*Defined in [spec/spec.ts:17548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17548)*





___
<a id="logs.resources.destination.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Logs::Destination"

*Defined in [spec/spec.ts:17575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17575)*





___
<a id="logs.resources.destination.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:17543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17543)*




<a id="logs.resources.destination.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:17544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17544)*




<a id="logs.resources.destination.attributes.arn.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17545)*





___

___

___
<a id="logs.resources.destination.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17549)*




<a id="logs.resources.destination.properties-1.destinationname"></a>

###  DestinationName

** DestinationName**:  *`object`* 

*Defined in [spec/spec.ts:17550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17550)*




<a id="logs.resources.destination.properties-1.destinationname.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationname"

*Defined in [spec/spec.ts:17551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17551)*





___
<a id="logs.resources.destination.properties-1.destinationname.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17552)*





___
<a id="logs.resources.destination.properties-1.destinationname.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17553)*





___
<a id="logs.resources.destination.properties-1.destinationname.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17554)*





___

___
<a id="logs.resources.destination.properties-1.destinationpolicy"></a>

###  DestinationPolicy

** DestinationPolicy**:  *`object`* 

*Defined in [spec/spec.ts:17556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17556)*




<a id="logs.resources.destination.properties-1.destinationpolicy.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-destinationpolicy"

*Defined in [spec/spec.ts:17557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17557)*





___
<a id="logs.resources.destination.properties-1.destinationpolicy.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17558)*





___
<a id="logs.resources.destination.properties-1.destinationpolicy.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17559)*





___
<a id="logs.resources.destination.properties-1.destinationpolicy.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17560)*





___

___
<a id="logs.resources.destination.properties-1.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:17562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17562)*




<a id="logs.resources.destination.properties-1.rolearn.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-rolearn"

*Defined in [spec/spec.ts:17563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17563)*





___
<a id="logs.resources.destination.properties-1.rolearn.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17564)*





___
<a id="logs.resources.destination.properties-1.rolearn.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17565)*





___
<a id="logs.resources.destination.properties-1.rolearn.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17566)*





___

___
<a id="logs.resources.destination.properties-1.targetarn"></a>

###  TargetArn

** TargetArn**:  *`object`* 

*Defined in [spec/spec.ts:17568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17568)*




<a id="logs.resources.destination.properties-1.targetarn.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-destination.html#cfn-logs-destination-targetarn"

*Defined in [spec/spec.ts:17569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17569)*





___
<a id="logs.resources.destination.properties-1.targetarn.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17570)*





___
<a id="logs.resources.destination.properties-1.targetarn.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17571)*





___
<a id="logs.resources.destination.properties-1.targetarn.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17572)*





___

___

___

___
<a id="logs.resources.loggroup"></a>

###  LogGroup

** LogGroup**:  *`object`* 

*Defined in [spec/spec.ts:17577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17577)*




<a id="logs.resources.loggroup.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html"

*Defined in [spec/spec.ts:17583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17583)*





___
<a id="logs.resources.loggroup.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Logs::LogGroup"

*Defined in [spec/spec.ts:17598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17598)*





___
<a id="logs.resources.loggroup.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:17578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17578)*




<a id="logs.resources.loggroup.attributes-1.arn-1"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:17579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17579)*




<a id="logs.resources.loggroup.attributes-1.arn-1.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17580)*





___

___

___
<a id="logs.resources.loggroup.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17584)*




<a id="logs.resources.loggroup.properties-2.loggroupname"></a>

###  LogGroupName

** LogGroupName**:  *`object`* 

*Defined in [spec/spec.ts:17585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17585)*




<a id="logs.resources.loggroup.properties-2.loggroupname.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-loggroupname"

*Defined in [spec/spec.ts:17586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17586)*





___
<a id="logs.resources.loggroup.properties-2.loggroupname.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17587)*





___
<a id="logs.resources.loggroup.properties-2.loggroupname.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17588)*





___
<a id="logs.resources.loggroup.properties-2.loggroupname.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17589)*





___

___
<a id="logs.resources.loggroup.properties-2.retentionindays"></a>

###  RetentionInDays

** RetentionInDays**:  *`object`* 

*Defined in [spec/spec.ts:17591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17591)*




<a id="logs.resources.loggroup.properties-2.retentionindays.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-cwl-loggroup-retentionindays"

*Defined in [spec/spec.ts:17592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17592)*





___
<a id="logs.resources.loggroup.properties-2.retentionindays.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:17593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17593)*





___
<a id="logs.resources.loggroup.properties-2.retentionindays.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17594)*





___
<a id="logs.resources.loggroup.properties-2.retentionindays.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17595)*





___

___

___

___
<a id="logs.resources.logstream"></a>

###  LogStream

** LogStream**:  *`object`* 

*Defined in [spec/spec.ts:17600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17600)*




<a id="logs.resources.logstream.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html"

*Defined in [spec/spec.ts:17601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17601)*





___
<a id="logs.resources.logstream.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Logs::LogStream"

*Defined in [spec/spec.ts:17616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17616)*





___
<a id="logs.resources.logstream.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17602)*




<a id="logs.resources.logstream.properties-3.loggroupname-1"></a>

###  LogGroupName

** LogGroupName**:  *`object`* 

*Defined in [spec/spec.ts:17603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17603)*




<a id="logs.resources.logstream.properties-3.loggroupname-1.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-loggroupname"

*Defined in [spec/spec.ts:17604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17604)*





___
<a id="logs.resources.logstream.properties-3.loggroupname-1.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17605)*





___
<a id="logs.resources.logstream.properties-3.loggroupname-1.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17606)*





___
<a id="logs.resources.logstream.properties-3.loggroupname-1.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17607)*





___

___
<a id="logs.resources.logstream.properties-3.logstreamname"></a>

###  LogStreamName

** LogStreamName**:  *`object`* 

*Defined in [spec/spec.ts:17609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17609)*




<a id="logs.resources.logstream.properties-3.logstreamname.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-logstream.html#cfn-logs-logstream-logstreamname"

*Defined in [spec/spec.ts:17610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17610)*





___
<a id="logs.resources.logstream.properties-3.logstreamname.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17611)*





___
<a id="logs.resources.logstream.properties-3.logstreamname.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17612)*





___
<a id="logs.resources.logstream.properties-3.logstreamname.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17613)*





___

___

___

___
<a id="logs.resources.metricfilter"></a>

###  MetricFilter

** MetricFilter**:  *`object`* 

*Defined in [spec/spec.ts:17618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17618)*




<a id="logs.resources.metricfilter.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html"

*Defined in [spec/spec.ts:17619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17619)*





___
<a id="logs.resources.metricfilter.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Logs::MetricFilter"

*Defined in [spec/spec.ts:17642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17642)*





___
<a id="logs.resources.metricfilter.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17620)*




<a id="logs.resources.metricfilter.properties-4.filterpattern"></a>

###  FilterPattern

** FilterPattern**:  *`object`* 

*Defined in [spec/spec.ts:17621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17621)*




<a id="logs.resources.metricfilter.properties-4.filterpattern.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-filterpattern"

*Defined in [spec/spec.ts:17622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17622)*





___
<a id="logs.resources.metricfilter.properties-4.filterpattern.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17623)*





___
<a id="logs.resources.metricfilter.properties-4.filterpattern.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17624)*





___
<a id="logs.resources.metricfilter.properties-4.filterpattern.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17625)*





___

___
<a id="logs.resources.metricfilter.properties-4.loggroupname-2"></a>

###  LogGroupName

** LogGroupName**:  *`object`* 

*Defined in [spec/spec.ts:17627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17627)*




<a id="logs.resources.metricfilter.properties-4.loggroupname-2.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-loggroupname"

*Defined in [spec/spec.ts:17628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17628)*





___
<a id="logs.resources.metricfilter.properties-4.loggroupname-2.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17629)*





___
<a id="logs.resources.metricfilter.properties-4.loggroupname-2.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17630)*





___
<a id="logs.resources.metricfilter.properties-4.loggroupname-2.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17631)*





___

___
<a id="logs.resources.metricfilter.properties-4.metrictransformations"></a>

###  MetricTransformations

** MetricTransformations**:  *`object`* 

*Defined in [spec/spec.ts:17633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17633)*




<a id="logs.resources.metricfilter.properties-4.metrictransformations.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-metricfilter.html#cfn-cwl-metricfilter-metrictransformations"

*Defined in [spec/spec.ts:17634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17634)*





___
<a id="logs.resources.metricfilter.properties-4.metrictransformations.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17635)*





___
<a id="logs.resources.metricfilter.properties-4.metrictransformations.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "MetricTransformation"

*Defined in [spec/spec.ts:17636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17636)*





___
<a id="logs.resources.metricfilter.properties-4.metrictransformations.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17637)*





___
<a id="logs.resources.metricfilter.properties-4.metrictransformations.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17638)*





___
<a id="logs.resources.metricfilter.properties-4.metrictransformations.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17639)*





___

___

___

___
<a id="logs.resources.subscriptionfilter"></a>

###  SubscriptionFilter

** SubscriptionFilter**:  *`object`* 

*Defined in [spec/spec.ts:17644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17644)*




<a id="logs.resources.subscriptionfilter.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html"

*Defined in [spec/spec.ts:17645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17645)*





___
<a id="logs.resources.subscriptionfilter.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Logs::SubscriptionFilter"

*Defined in [spec/spec.ts:17672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17672)*





___
<a id="logs.resources.subscriptionfilter.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17646)*




<a id="logs.resources.subscriptionfilter.properties-5.destinationarn"></a>

###  DestinationArn

** DestinationArn**:  *`object`* 

*Defined in [spec/spec.ts:17647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17647)*




<a id="logs.resources.subscriptionfilter.properties-5.destinationarn.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-destinationarn"

*Defined in [spec/spec.ts:17648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17648)*





___
<a id="logs.resources.subscriptionfilter.properties-5.destinationarn.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17649)*





___
<a id="logs.resources.subscriptionfilter.properties-5.destinationarn.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17650)*





___
<a id="logs.resources.subscriptionfilter.properties-5.destinationarn.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17651)*





___

___
<a id="logs.resources.subscriptionfilter.properties-5.filterpattern-1"></a>

###  FilterPattern

** FilterPattern**:  *`object`* 

*Defined in [spec/spec.ts:17653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17653)*




<a id="logs.resources.subscriptionfilter.properties-5.filterpattern-1.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-filterpattern"

*Defined in [spec/spec.ts:17654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17654)*





___
<a id="logs.resources.subscriptionfilter.properties-5.filterpattern-1.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17655)*





___
<a id="logs.resources.subscriptionfilter.properties-5.filterpattern-1.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17656)*





___
<a id="logs.resources.subscriptionfilter.properties-5.filterpattern-1.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17657)*





___

___
<a id="logs.resources.subscriptionfilter.properties-5.loggroupname-3"></a>

###  LogGroupName

** LogGroupName**:  *`object`* 

*Defined in [spec/spec.ts:17659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17659)*




<a id="logs.resources.subscriptionfilter.properties-5.loggroupname-3.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-loggroupname"

*Defined in [spec/spec.ts:17660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17660)*





___
<a id="logs.resources.subscriptionfilter.properties-5.loggroupname-3.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17661)*





___
<a id="logs.resources.subscriptionfilter.properties-5.loggroupname-3.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17662)*





___
<a id="logs.resources.subscriptionfilter.properties-5.loggroupname-3.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17663)*





___

___
<a id="logs.resources.subscriptionfilter.properties-5.rolearn-1"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:17665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17665)*




<a id="logs.resources.subscriptionfilter.properties-5.rolearn-1.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-subscriptionfilter.html#cfn-cwl-subscriptionfilter-rolearn"

*Defined in [spec/spec.ts:17666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17666)*





___
<a id="logs.resources.subscriptionfilter.properties-5.rolearn-1.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17667)*





___
<a id="logs.resources.subscriptionfilter.properties-5.rolearn-1.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17668)*





___
<a id="logs.resources.subscriptionfilter.properties-5.rolearn-1.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17669)*





___

___

___

___

___

<a id="opsworks"></a>

## Object literal: OpsWorks


<a id="opsworks.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:18327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18327)*




<a id="opsworks.models.autoscalingthresholds"></a>

###  AutoScalingThresholds

** AutoScalingThresholds**:  *`object`* 

*Defined in [spec/spec.ts:18570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18570)*




<a id="opsworks.models.autoscalingthresholds.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html"

*Defined in [spec/spec.ts:18571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18571)*





___
<a id="opsworks.models.autoscalingthresholds.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Layer.AutoScalingThresholds"

*Defined in [spec/spec.ts:18610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18610)*





___
<a id="opsworks.models.autoscalingthresholds.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18572](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18572)*




<a id="opsworks.models.autoscalingthresholds.properties.cputhreshold"></a>

###  CpuThreshold

** CpuThreshold**:  *`object`* 

*Defined in [spec/spec.ts:18573](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18573)*




<a id="opsworks.models.autoscalingthresholds.properties.cputhreshold.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-cputhreshold"

*Defined in [spec/spec.ts:18574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18574)*





___
<a id="opsworks.models.autoscalingthresholds.properties.cputhreshold.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:18575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18575)*





___
<a id="opsworks.models.autoscalingthresholds.properties.cputhreshold.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18576)*





___
<a id="opsworks.models.autoscalingthresholds.properties.cputhreshold.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18577)*





___

___
<a id="opsworks.models.autoscalingthresholds.properties.ignoremetricstime"></a>

###  IgnoreMetricsTime

** IgnoreMetricsTime**:  *`object`* 

*Defined in [spec/spec.ts:18579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18579)*




<a id="opsworks.models.autoscalingthresholds.properties.ignoremetricstime.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-ignoremetricstime"

*Defined in [spec/spec.ts:18580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18580)*





___
<a id="opsworks.models.autoscalingthresholds.properties.ignoremetricstime.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18581)*





___
<a id="opsworks.models.autoscalingthresholds.properties.ignoremetricstime.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18582)*





___
<a id="opsworks.models.autoscalingthresholds.properties.ignoremetricstime.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18583)*





___

___
<a id="opsworks.models.autoscalingthresholds.properties.instancecount"></a>

###  InstanceCount

** InstanceCount**:  *`object`* 

*Defined in [spec/spec.ts:18585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18585)*




<a id="opsworks.models.autoscalingthresholds.properties.instancecount.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-instancecount"

*Defined in [spec/spec.ts:18586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18586)*





___
<a id="opsworks.models.autoscalingthresholds.properties.instancecount.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18587)*





___
<a id="opsworks.models.autoscalingthresholds.properties.instancecount.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18588)*





___
<a id="opsworks.models.autoscalingthresholds.properties.instancecount.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18589)*





___

___
<a id="opsworks.models.autoscalingthresholds.properties.loadthreshold"></a>

###  LoadThreshold

** LoadThreshold**:  *`object`* 

*Defined in [spec/spec.ts:18591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18591)*




<a id="opsworks.models.autoscalingthresholds.properties.loadthreshold.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-loadthreshold"

*Defined in [spec/spec.ts:18592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18592)*





___
<a id="opsworks.models.autoscalingthresholds.properties.loadthreshold.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:18593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18593)*





___
<a id="opsworks.models.autoscalingthresholds.properties.loadthreshold.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18594)*





___
<a id="opsworks.models.autoscalingthresholds.properties.loadthreshold.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18595)*





___

___
<a id="opsworks.models.autoscalingthresholds.properties.memorythreshold"></a>

###  MemoryThreshold

** MemoryThreshold**:  *`object`* 

*Defined in [spec/spec.ts:18597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18597)*




<a id="opsworks.models.autoscalingthresholds.properties.memorythreshold.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-memorythreshold"

*Defined in [spec/spec.ts:18598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18598)*





___
<a id="opsworks.models.autoscalingthresholds.properties.memorythreshold.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:18599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18599)*





___
<a id="opsworks.models.autoscalingthresholds.properties.memorythreshold.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18600)*





___
<a id="opsworks.models.autoscalingthresholds.properties.memorythreshold.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18601)*





___

___
<a id="opsworks.models.autoscalingthresholds.properties.thresholdswaittime"></a>

###  ThresholdsWaitTime

** ThresholdsWaitTime**:  *`object`* 

*Defined in [spec/spec.ts:18603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18603)*




<a id="opsworks.models.autoscalingthresholds.properties.thresholdswaittime.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling-autoscalingthresholds.html#cfn-opsworks-layer-loadbasedautoscaling-autoscalingthresholds-thresholdwaittime"

*Defined in [spec/spec.ts:18604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18604)*





___
<a id="opsworks.models.autoscalingthresholds.properties.thresholdswaittime.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18605)*





___
<a id="opsworks.models.autoscalingthresholds.properties.thresholdswaittime.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18606)*





___
<a id="opsworks.models.autoscalingthresholds.properties.thresholdswaittime.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18607)*





___

___

___

___
<a id="opsworks.models.blockdevicemapping"></a>

###  BlockDeviceMapping

** BlockDeviceMapping**:  *`object`* 

*Defined in [spec/spec.ts:18442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18442)*




<a id="opsworks.models.blockdevicemapping.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-blockdevicemapping.html"

*Defined in [spec/spec.ts:18443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18443)*





___
<a id="opsworks.models.blockdevicemapping.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Instance.BlockDeviceMapping"

*Defined in [spec/spec.ts:18470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18470)*





___
<a id="opsworks.models.blockdevicemapping.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18444)*




<a id="opsworks.models.blockdevicemapping.properties-1.devicename"></a>

###  DeviceName

** DeviceName**:  *`object`* 

*Defined in [spec/spec.ts:18445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18445)*




<a id="opsworks.models.blockdevicemapping.properties-1.devicename.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-blockdevicemapping.html#cfn-opsworks-instance-blockdevicemapping-devicename"

*Defined in [spec/spec.ts:18446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18446)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.devicename.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18447)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.devicename.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18448)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.devicename.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18449)*





___

___
<a id="opsworks.models.blockdevicemapping.properties-1.ebs"></a>

###  Ebs

** Ebs**:  *`object`* 

*Defined in [spec/spec.ts:18451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18451)*




<a id="opsworks.models.blockdevicemapping.properties-1.ebs.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-blockdevicemapping.html#cfn-opsworks-instance-blockdevicemapping-ebs"

*Defined in [spec/spec.ts:18452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18452)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.ebs.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18453)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.ebs.type"></a>

###  Type

**●  Type**:  *`string`*  = "EbsBlockDevice"

*Defined in [spec/spec.ts:18454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18454)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.ebs.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18455)*





___

___
<a id="opsworks.models.blockdevicemapping.properties-1.nodevice"></a>

###  NoDevice

** NoDevice**:  *`object`* 

*Defined in [spec/spec.ts:18457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18457)*




<a id="opsworks.models.blockdevicemapping.properties-1.nodevice.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-blockdevicemapping.html#cfn-opsworks-instance-blockdevicemapping-nodevice"

*Defined in [spec/spec.ts:18458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18458)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.nodevice.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18459)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.nodevice.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18460)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.nodevice.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18461)*





___

___
<a id="opsworks.models.blockdevicemapping.properties-1.virtualname"></a>

###  VirtualName

** VirtualName**:  *`object`* 

*Defined in [spec/spec.ts:18463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18463)*




<a id="opsworks.models.blockdevicemapping.properties-1.virtualname.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-blockdevicemapping.html#cfn-opsworks-instance-blockdevicemapping-virtualname"

*Defined in [spec/spec.ts:18464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18464)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.virtualname.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18465](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18465)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.virtualname.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18466)*





___
<a id="opsworks.models.blockdevicemapping.properties-1.virtualname.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18467)*





___

___

___

___
<a id="opsworks.models.chefconfiguration"></a>

###  ChefConfiguration

** ChefConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18754)*




<a id="opsworks.models.chefconfiguration.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html"

*Defined in [spec/spec.ts:18755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18755)*





___
<a id="opsworks.models.chefconfiguration.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Stack.ChefConfiguration"

*Defined in [spec/spec.ts:18770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18770)*





___
<a id="opsworks.models.chefconfiguration.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18756)*




<a id="opsworks.models.chefconfiguration.properties-2.berkshelfversion"></a>

###  BerkshelfVersion

** BerkshelfVersion**:  *`object`* 

*Defined in [spec/spec.ts:18757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18757)*




<a id="opsworks.models.chefconfiguration.properties-2.berkshelfversion.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion"

*Defined in [spec/spec.ts:18758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18758)*





___
<a id="opsworks.models.chefconfiguration.properties-2.berkshelfversion.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18759)*





___
<a id="opsworks.models.chefconfiguration.properties-2.berkshelfversion.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18760)*





___
<a id="opsworks.models.chefconfiguration.properties-2.berkshelfversion.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18761)*





___

___
<a id="opsworks.models.chefconfiguration.properties-2.manageberkshelf"></a>

###  ManageBerkshelf

** ManageBerkshelf**:  *`object`* 

*Defined in [spec/spec.ts:18763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18763)*




<a id="opsworks.models.chefconfiguration.properties-2.manageberkshelf.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-chefconfiguration.html#cfn-opsworks-chefconfiguration-berkshelfversion"

*Defined in [spec/spec.ts:18764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18764)*





___
<a id="opsworks.models.chefconfiguration.properties-2.manageberkshelf.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18765)*





___
<a id="opsworks.models.chefconfiguration.properties-2.manageberkshelf.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18766)*





___
<a id="opsworks.models.chefconfiguration.properties-2.manageberkshelf.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18767)*





___

___

___

___
<a id="opsworks.models.datasource"></a>

###  DataSource

** DataSource**:  *`object`* 

*Defined in [spec/spec.ts:18328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18328)*




<a id="opsworks.models.datasource.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-datasource.html"

*Defined in [spec/spec.ts:18329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18329)*





___
<a id="opsworks.models.datasource.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::App.DataSource"

*Defined in [spec/spec.ts:18350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18350)*





___
<a id="opsworks.models.datasource.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18330)*




<a id="opsworks.models.datasource.properties-3.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:18331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18331)*




<a id="opsworks.models.datasource.properties-3.arn.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-datasource.html#cfn-opsworks-app-datasource-arn"

*Defined in [spec/spec.ts:18332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18332)*





___
<a id="opsworks.models.datasource.properties-3.arn.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18333)*





___
<a id="opsworks.models.datasource.properties-3.arn.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18334)*





___
<a id="opsworks.models.datasource.properties-3.arn.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18335](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18335)*





___

___
<a id="opsworks.models.datasource.properties-3.databasename"></a>

###  DatabaseName

** DatabaseName**:  *`object`* 

*Defined in [spec/spec.ts:18337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18337)*




<a id="opsworks.models.datasource.properties-3.databasename.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-datasource.html#cfn-opsworks-app-datasource-databasename"

*Defined in [spec/spec.ts:18338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18338)*





___
<a id="opsworks.models.datasource.properties-3.databasename.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18339)*





___
<a id="opsworks.models.datasource.properties-3.databasename.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18340)*





___
<a id="opsworks.models.datasource.properties-3.databasename.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18341)*





___

___
<a id="opsworks.models.datasource.properties-3.type-1"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:18343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18343)*




<a id="opsworks.models.datasource.properties-3.type-1.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-datasource.html#cfn-opsworks-app-datasource-type"

*Defined in [spec/spec.ts:18344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18344)*





___
<a id="opsworks.models.datasource.properties-3.type-1.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18345)*





___
<a id="opsworks.models.datasource.properties-3.type-1.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18346)*





___
<a id="opsworks.models.datasource.properties-3.type-1.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18347)*





___

___

___

___
<a id="opsworks.models.ebsblockdevice"></a>

###  EbsBlockDevice

** EbsBlockDevice**:  *`object`* 

*Defined in [spec/spec.ts:18472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18472)*




<a id="opsworks.models.ebsblockdevice.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-ebsblockdevice.html"

*Defined in [spec/spec.ts:18473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18473)*





___
<a id="opsworks.models.ebsblockdevice.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Instance.EbsBlockDevice"

*Defined in [spec/spec.ts:18506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18506)*





___
<a id="opsworks.models.ebsblockdevice.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18474)*




<a id="opsworks.models.ebsblockdevice.properties-4.deleteontermination"></a>

###  DeleteOnTermination

** DeleteOnTermination**:  *`object`* 

*Defined in [spec/spec.ts:18475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18475)*




<a id="opsworks.models.ebsblockdevice.properties-4.deleteontermination.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-ebsblockdevice.html#cfn-opsworks-instance-ebsblockdevice-deleteontermination"

*Defined in [spec/spec.ts:18476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18476)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.deleteontermination.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18477)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.deleteontermination.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18478)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.deleteontermination.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18479)*





___

___
<a id="opsworks.models.ebsblockdevice.properties-4.iops"></a>

###  Iops

** Iops**:  *`object`* 

*Defined in [spec/spec.ts:18481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18481)*




<a id="opsworks.models.ebsblockdevice.properties-4.iops.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-ebsblockdevice.html#cfn-opsworks-instance-ebsblockdevice-iops"

*Defined in [spec/spec.ts:18482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18482)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.iops.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18483)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.iops.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18484)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.iops.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18485)*





___

___
<a id="opsworks.models.ebsblockdevice.properties-4.snapshotid"></a>

###  SnapshotId

** SnapshotId**:  *`object`* 

*Defined in [spec/spec.ts:18487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18487)*




<a id="opsworks.models.ebsblockdevice.properties-4.snapshotid.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-ebsblockdevice.html#cfn-opsworks-instance-ebsblockdevice-snapshotid"

*Defined in [spec/spec.ts:18488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18488)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.snapshotid.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18489)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.snapshotid.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18490)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.snapshotid.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18491)*





___

___
<a id="opsworks.models.ebsblockdevice.properties-4.volumesize"></a>

###  VolumeSize

** VolumeSize**:  *`object`* 

*Defined in [spec/spec.ts:18493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18493)*




<a id="opsworks.models.ebsblockdevice.properties-4.volumesize.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-ebsblockdevice.html#cfn-opsworks-instance-ebsblockdevice-volumesize"

*Defined in [spec/spec.ts:18494](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18494)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.volumesize.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18495)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.volumesize.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18496)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.volumesize.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18497)*





___

___
<a id="opsworks.models.ebsblockdevice.properties-4.volumetype"></a>

###  VolumeType

** VolumeType**:  *`object`* 

*Defined in [spec/spec.ts:18499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18499)*




<a id="opsworks.models.ebsblockdevice.properties-4.volumetype.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-ebsblockdevice.html#cfn-opsworks-instance-ebsblockdevice-volumetype"

*Defined in [spec/spec.ts:18500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18500)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.volumetype.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18501)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.volumetype.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18502)*





___
<a id="opsworks.models.ebsblockdevice.properties-4.volumetype.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18503)*





___

___

___

___
<a id="opsworks.models.elasticip"></a>

###  ElasticIp

** ElasticIp**:  *`object`* 

*Defined in [spec/spec.ts:18772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18772)*




<a id="opsworks.models.elasticip.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-elasticip.html"

*Defined in [spec/spec.ts:18773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18773)*





___
<a id="opsworks.models.elasticip.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Stack.ElasticIp"

*Defined in [spec/spec.ts:18788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18788)*





___
<a id="opsworks.models.elasticip.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18774)*




<a id="opsworks.models.elasticip.properties-5.ip"></a>

###  Ip

** Ip**:  *`object`* 

*Defined in [spec/spec.ts:18775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18775)*




<a id="opsworks.models.elasticip.properties-5.ip.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-elasticip.html#cfn-opsworks-stack-elasticip-ip"

*Defined in [spec/spec.ts:18776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18776)*





___
<a id="opsworks.models.elasticip.properties-5.ip.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18777)*





___
<a id="opsworks.models.elasticip.properties-5.ip.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18778)*





___
<a id="opsworks.models.elasticip.properties-5.ip.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18779)*





___

___
<a id="opsworks.models.elasticip.properties-5.name-6"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:18781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18781)*




<a id="opsworks.models.elasticip.properties-5.name-6.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-elasticip.html#cfn-opsworks-stack-elasticip-name"

*Defined in [spec/spec.ts:18782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18782)*





___
<a id="opsworks.models.elasticip.properties-5.name-6.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18783)*





___
<a id="opsworks.models.elasticip.properties-5.name-6.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18784)*





___
<a id="opsworks.models.elasticip.properties-5.name-6.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18785)*





___

___

___

___
<a id="opsworks.models.environmentvariable"></a>

###  EnvironmentVariable

** EnvironmentVariable**:  *`object`* 

*Defined in [spec/spec.ts:18352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18352)*




<a id="opsworks.models.environmentvariable.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-environment.html"

*Defined in [spec/spec.ts:18353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18353)*





___
<a id="opsworks.models.environmentvariable.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::App.EnvironmentVariable"

*Defined in [spec/spec.ts:18374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18374)*





___
<a id="opsworks.models.environmentvariable.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18354)*




<a id="opsworks.models.environmentvariable.properties-6.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:18355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18355)*




<a id="opsworks.models.environmentvariable.properties-6.key.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-environment.html#cfn-opsworks-app-environment-key"

*Defined in [spec/spec.ts:18356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18356)*





___
<a id="opsworks.models.environmentvariable.properties-6.key.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18357)*





___
<a id="opsworks.models.environmentvariable.properties-6.key.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18358)*





___
<a id="opsworks.models.environmentvariable.properties-6.key.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18359)*





___

___
<a id="opsworks.models.environmentvariable.properties-6.secure"></a>

###  Secure

** Secure**:  *`object`* 

*Defined in [spec/spec.ts:18361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18361)*




<a id="opsworks.models.environmentvariable.properties-6.secure.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-environment.html#cfn-opsworks-app-environment-secure"

*Defined in [spec/spec.ts:18362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18362)*





___
<a id="opsworks.models.environmentvariable.properties-6.secure.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18363)*





___
<a id="opsworks.models.environmentvariable.properties-6.secure.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18364)*





___
<a id="opsworks.models.environmentvariable.properties-6.secure.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18365)*





___

___
<a id="opsworks.models.environmentvariable.properties-6.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:18367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18367)*




<a id="opsworks.models.environmentvariable.properties-6.value.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-environment.html#value"

*Defined in [spec/spec.ts:18368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18368)*





___
<a id="opsworks.models.environmentvariable.properties-6.value.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18369)*





___
<a id="opsworks.models.environmentvariable.properties-6.value.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18370)*





___
<a id="opsworks.models.environmentvariable.properties-6.value.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18371)*





___

___

___

___
<a id="opsworks.models.lifecycleeventconfiguration"></a>

###  LifecycleEventConfiguration

** LifecycleEventConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18612)*




<a id="opsworks.models.lifecycleeventconfiguration.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration.html"

*Defined in [spec/spec.ts:18613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18613)*





___
<a id="opsworks.models.lifecycleeventconfiguration.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Layer.LifecycleEventConfiguration"

*Defined in [spec/spec.ts:18622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18622)*





___
<a id="opsworks.models.lifecycleeventconfiguration.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18614)*




<a id="opsworks.models.lifecycleeventconfiguration.properties-7.shutdowneventconfiguration"></a>

###  ShutdownEventConfiguration

** ShutdownEventConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18615)*




<a id="opsworks.models.lifecycleeventconfiguration.properties-7.shutdowneventconfiguration.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration"

*Defined in [spec/spec.ts:18616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18616)*





___
<a id="opsworks.models.lifecycleeventconfiguration.properties-7.shutdowneventconfiguration.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18617)*





___
<a id="opsworks.models.lifecycleeventconfiguration.properties-7.shutdowneventconfiguration.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "ShutdownEventConfiguration"

*Defined in [spec/spec.ts:18618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18618)*





___
<a id="opsworks.models.lifecycleeventconfiguration.properties-7.shutdowneventconfiguration.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18619)*





___

___

___

___
<a id="opsworks.models.loadbasedautoscaling"></a>

###  LoadBasedAutoScaling

** LoadBasedAutoScaling**:  *`object`* 

*Defined in [spec/spec.ts:18624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18624)*




<a id="opsworks.models.loadbasedautoscaling.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html"

*Defined in [spec/spec.ts:18625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18625)*





___
<a id="opsworks.models.loadbasedautoscaling.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Layer.LoadBasedAutoScaling"

*Defined in [spec/spec.ts:18646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18646)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18626)*




<a id="opsworks.models.loadbasedautoscaling.properties-8.downscaling"></a>

###  DownScaling

** DownScaling**:  *`object`* 

*Defined in [spec/spec.ts:18627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18627)*




<a id="opsworks.models.loadbasedautoscaling.properties-8.downscaling.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-downscaling"

*Defined in [spec/spec.ts:18628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18628)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.downscaling.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18629)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.downscaling.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "AutoScalingThresholds"

*Defined in [spec/spec.ts:18630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18630)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.downscaling.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18631)*





___

___
<a id="opsworks.models.loadbasedautoscaling.properties-8.enable"></a>

###  Enable

** Enable**:  *`object`* 

*Defined in [spec/spec.ts:18633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18633)*




<a id="opsworks.models.loadbasedautoscaling.properties-8.enable.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-enable"

*Defined in [spec/spec.ts:18634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18634)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.enable.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18635)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.enable.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18636)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.enable.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18637)*





___

___
<a id="opsworks.models.loadbasedautoscaling.properties-8.upscaling"></a>

###  UpScaling

** UpScaling**:  *`object`* 

*Defined in [spec/spec.ts:18639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18639)*




<a id="opsworks.models.loadbasedautoscaling.properties-8.upscaling.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-loadbasedautoscaling.html#cfn-opsworks-layer-loadbasedautoscaling-upscaling"

*Defined in [spec/spec.ts:18640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18640)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.upscaling.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18641)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.upscaling.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "AutoScalingThresholds"

*Defined in [spec/spec.ts:18642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18642)*





___
<a id="opsworks.models.loadbasedautoscaling.properties-8.upscaling.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18643)*





___

___

___

___
<a id="opsworks.models.rdsdbinstance"></a>

###  RdsDbInstance

** RdsDbInstance**:  *`object`* 

*Defined in [spec/spec.ts:18790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18790)*




<a id="opsworks.models.rdsdbinstance.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-rdsdbinstance.html"

*Defined in [spec/spec.ts:18791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18791)*





___
<a id="opsworks.models.rdsdbinstance.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Stack.RdsDbInstance"

*Defined in [spec/spec.ts:18812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18812)*





___
<a id="opsworks.models.rdsdbinstance.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18792)*




<a id="opsworks.models.rdsdbinstance.properties-9.dbpassword"></a>

###  DbPassword

** DbPassword**:  *`object`* 

*Defined in [spec/spec.ts:18793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18793)*




<a id="opsworks.models.rdsdbinstance.properties-9.dbpassword.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-rdsdbinstance.html#cfn-opsworks-stack-rdsdbinstance-dbpassword"

*Defined in [spec/spec.ts:18794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18794)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.dbpassword.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18795)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.dbpassword.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18796)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.dbpassword.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18797)*





___

___
<a id="opsworks.models.rdsdbinstance.properties-9.dbuser"></a>

###  DbUser

** DbUser**:  *`object`* 

*Defined in [spec/spec.ts:18799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18799)*




<a id="opsworks.models.rdsdbinstance.properties-9.dbuser.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-rdsdbinstance.html#cfn-opsworks-stack-rdsdbinstance-dbuser"

*Defined in [spec/spec.ts:18800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18800)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.dbuser.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18801)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.dbuser.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18802)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.dbuser.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18803)*





___

___
<a id="opsworks.models.rdsdbinstance.properties-9.rdsdbinstancearn"></a>

###  RdsDbInstanceArn

** RdsDbInstanceArn**:  *`object`* 

*Defined in [spec/spec.ts:18805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18805)*




<a id="opsworks.models.rdsdbinstance.properties-9.rdsdbinstancearn.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-rdsdbinstance.html#cfn-opsworks-stack-rdsdbinstance-rdsdbinstancearn"

*Defined in [spec/spec.ts:18806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18806)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.rdsdbinstancearn.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18807)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.rdsdbinstancearn.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18808)*





___
<a id="opsworks.models.rdsdbinstance.properties-9.rdsdbinstancearn.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18809)*





___

___

___

___
<a id="opsworks.models.recipes"></a>

###  Recipes

** Recipes**:  *`object`* 

*Defined in [spec/spec.ts:18648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18648)*




<a id="opsworks.models.recipes.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html"

*Defined in [spec/spec.ts:18649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18649)*





___
<a id="opsworks.models.recipes.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Layer.Recipes"

*Defined in [spec/spec.ts:18692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18692)*





___
<a id="opsworks.models.recipes.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18650)*




<a id="opsworks.models.recipes.properties-10.configure"></a>

###  Configure

** Configure**:  *`object`* 

*Defined in [spec/spec.ts:18651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18651)*




<a id="opsworks.models.recipes.properties-10.configure.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-configure"

*Defined in [spec/spec.ts:18652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18652)*





___
<a id="opsworks.models.recipes.properties-10.configure.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18653)*





___
<a id="opsworks.models.recipes.properties-10.configure.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18654)*





___
<a id="opsworks.models.recipes.properties-10.configure.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18655)*





___
<a id="opsworks.models.recipes.properties-10.configure.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18656)*





___
<a id="opsworks.models.recipes.properties-10.configure.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18657)*





___

___
<a id="opsworks.models.recipes.properties-10.deploy"></a>

###  Deploy

** Deploy**:  *`object`* 

*Defined in [spec/spec.ts:18659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18659)*




<a id="opsworks.models.recipes.properties-10.deploy.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-deploy"

*Defined in [spec/spec.ts:18660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18660)*





___
<a id="opsworks.models.recipes.properties-10.deploy.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18661)*





___
<a id="opsworks.models.recipes.properties-10.deploy.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18662)*





___
<a id="opsworks.models.recipes.properties-10.deploy.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18663)*





___
<a id="opsworks.models.recipes.properties-10.deploy.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18664)*





___
<a id="opsworks.models.recipes.properties-10.deploy.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18665)*





___

___
<a id="opsworks.models.recipes.properties-10.setup"></a>

###  Setup

** Setup**:  *`object`* 

*Defined in [spec/spec.ts:18667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18667)*




<a id="opsworks.models.recipes.properties-10.setup.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-setup"

*Defined in [spec/spec.ts:18668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18668)*





___
<a id="opsworks.models.recipes.properties-10.setup.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18669)*





___
<a id="opsworks.models.recipes.properties-10.setup.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18670)*





___
<a id="opsworks.models.recipes.properties-10.setup.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18671)*





___
<a id="opsworks.models.recipes.properties-10.setup.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18672)*





___
<a id="opsworks.models.recipes.properties-10.setup.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18673)*





___

___
<a id="opsworks.models.recipes.properties-10.shutdown"></a>

###  Shutdown

** Shutdown**:  *`object`* 

*Defined in [spec/spec.ts:18675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18675)*




<a id="opsworks.models.recipes.properties-10.shutdown.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-shutdown"

*Defined in [spec/spec.ts:18676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18676)*





___
<a id="opsworks.models.recipes.properties-10.shutdown.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18677)*





___
<a id="opsworks.models.recipes.properties-10.shutdown.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18678)*





___
<a id="opsworks.models.recipes.properties-10.shutdown.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18679)*





___
<a id="opsworks.models.recipes.properties-10.shutdown.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18680)*





___
<a id="opsworks.models.recipes.properties-10.shutdown.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18681)*





___

___
<a id="opsworks.models.recipes.properties-10.undeploy"></a>

###  Undeploy

** Undeploy**:  *`object`* 

*Defined in [spec/spec.ts:18683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18683)*




<a id="opsworks.models.recipes.properties-10.undeploy.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-recipes.html#cfn-opsworks-layer-customrecipes-undeploy"

*Defined in [spec/spec.ts:18684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18684)*





___
<a id="opsworks.models.recipes.properties-10.undeploy.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18685)*





___
<a id="opsworks.models.recipes.properties-10.undeploy.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18686)*





___
<a id="opsworks.models.recipes.properties-10.undeploy.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18687)*





___
<a id="opsworks.models.recipes.properties-10.undeploy.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18688)*





___
<a id="opsworks.models.recipes.properties-10.undeploy.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18689)*





___

___

___

___
<a id="opsworks.models.shutdowneventconfiguration-1"></a>

###  ShutdownEventConfiguration

** ShutdownEventConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18694)*




<a id="opsworks.models.shutdowneventconfiguration-1.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html"

*Defined in [spec/spec.ts:18695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18695)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Layer.ShutdownEventConfiguration"

*Defined in [spec/spec.ts:18710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18710)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18696)*




<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.delayuntilelbconnectionsdrained"></a>

###  DelayUntilElbConnectionsDrained

** DelayUntilElbConnectionsDrained**:  *`object`* 

*Defined in [spec/spec.ts:18697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18697)*




<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.delayuntilelbconnectionsdrained.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-delayuntilelbconnectionsdrained"

*Defined in [spec/spec.ts:18698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18698)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.delayuntilelbconnectionsdrained.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18699)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.delayuntilelbconnectionsdrained.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18700)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.delayuntilelbconnectionsdrained.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18701)*





___

___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.executiontimeout"></a>

###  ExecutionTimeout

** ExecutionTimeout**:  *`object`* 

*Defined in [spec/spec.ts:18703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18703)*




<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.executiontimeout.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-lifecycleeventconfiguration-shutdowneventconfiguration.html#cfn-opsworks-layer-lifecycleconfiguration-shutdowneventconfiguration-executiontimeout"

*Defined in [spec/spec.ts:18704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18704)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.executiontimeout.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18705)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.executiontimeout.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18706)*





___
<a id="opsworks.models.shutdowneventconfiguration-1.properties-11.executiontimeout.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18707)*





___

___

___

___
<a id="opsworks.models.source"></a>

###  Source

** Source**:  *`object`* 

*Defined in [spec/spec.ts:18376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18376)*




<a id="opsworks.models.source.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html"

*Defined in [spec/spec.ts:18377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18377)*





___
<a id="opsworks.models.source.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Stack.Source"

*Defined in [spec/spec.ts:18416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18416)*





___
<a id="opsworks.models.source.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18378)*




<a id="opsworks.models.source.properties-12.password"></a>

###  Password

** Password**:  *`object`* 

*Defined in [spec/spec.ts:18379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18379)*




<a id="opsworks.models.source.properties-12.password.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-password"

*Defined in [spec/spec.ts:18380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18380)*





___
<a id="opsworks.models.source.properties-12.password.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18381)*





___
<a id="opsworks.models.source.properties-12.password.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18382)*





___
<a id="opsworks.models.source.properties-12.password.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18383)*





___

___
<a id="opsworks.models.source.properties-12.revision"></a>

###  Revision

** Revision**:  *`object`* 

*Defined in [spec/spec.ts:18385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18385)*




<a id="opsworks.models.source.properties-12.revision.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-revision"

*Defined in [spec/spec.ts:18386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18386)*





___
<a id="opsworks.models.source.properties-12.revision.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18387)*





___
<a id="opsworks.models.source.properties-12.revision.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18388)*





___
<a id="opsworks.models.source.properties-12.revision.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18389)*





___

___
<a id="opsworks.models.source.properties-12.sshkey"></a>

###  SshKey

** SshKey**:  *`object`* 

*Defined in [spec/spec.ts:18391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18391)*




<a id="opsworks.models.source.properties-12.sshkey.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-sshkey"

*Defined in [spec/spec.ts:18392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18392)*





___
<a id="opsworks.models.source.properties-12.sshkey.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18393)*





___
<a id="opsworks.models.source.properties-12.sshkey.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18394)*





___
<a id="opsworks.models.source.properties-12.sshkey.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18395)*





___

___
<a id="opsworks.models.source.properties-12.type-10"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:18397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18397)*




<a id="opsworks.models.source.properties-12.type-10.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-type"

*Defined in [spec/spec.ts:18398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18398)*





___
<a id="opsworks.models.source.properties-12.type-10.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18399)*





___
<a id="opsworks.models.source.properties-12.type-10.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18400)*





___
<a id="opsworks.models.source.properties-12.type-10.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18401)*





___

___
<a id="opsworks.models.source.properties-12.url"></a>

###  Url

** Url**:  *`object`* 

*Defined in [spec/spec.ts:18403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18403)*




<a id="opsworks.models.source.properties-12.url.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-url"

*Defined in [spec/spec.ts:18404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18404)*





___
<a id="opsworks.models.source.properties-12.url.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18405)*





___
<a id="opsworks.models.source.properties-12.url.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18406)*





___
<a id="opsworks.models.source.properties-12.url.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18407)*





___

___
<a id="opsworks.models.source.properties-12.username"></a>

###  Username

** Username**:  *`object`* 

*Defined in [spec/spec.ts:18409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18409)*




<a id="opsworks.models.source.properties-12.username.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-source.html#cfn-opsworks-custcookbooksource-username"

*Defined in [spec/spec.ts:18410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18410)*





___
<a id="opsworks.models.source.properties-12.username.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18411)*





___
<a id="opsworks.models.source.properties-12.username.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18412)*





___
<a id="opsworks.models.source.properties-12.username.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18413)*





___

___

___

___
<a id="opsworks.models.sslconfiguration"></a>

###  SslConfiguration

** SslConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18418)*




<a id="opsworks.models.sslconfiguration.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html"

*Defined in [spec/spec.ts:18419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18419)*





___
<a id="opsworks.models.sslconfiguration.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::App.SslConfiguration"

*Defined in [spec/spec.ts:18440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18440)*





___
<a id="opsworks.models.sslconfiguration.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18420)*




<a id="opsworks.models.sslconfiguration.properties-13.certificate"></a>

###  Certificate

** Certificate**:  *`object`* 

*Defined in [spec/spec.ts:18421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18421)*




<a id="opsworks.models.sslconfiguration.properties-13.certificate.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-certificate"

*Defined in [spec/spec.ts:18422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18422)*





___
<a id="opsworks.models.sslconfiguration.properties-13.certificate.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18423)*





___
<a id="opsworks.models.sslconfiguration.properties-13.certificate.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18424)*





___
<a id="opsworks.models.sslconfiguration.properties-13.certificate.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18425)*





___

___
<a id="opsworks.models.sslconfiguration.properties-13.chain"></a>

###  Chain

** Chain**:  *`object`* 

*Defined in [spec/spec.ts:18427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18427)*




<a id="opsworks.models.sslconfiguration.properties-13.chain.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-chain"

*Defined in [spec/spec.ts:18428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18428)*





___
<a id="opsworks.models.sslconfiguration.properties-13.chain.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18429)*





___
<a id="opsworks.models.sslconfiguration.properties-13.chain.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18430)*





___
<a id="opsworks.models.sslconfiguration.properties-13.chain.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18431)*





___

___
<a id="opsworks.models.sslconfiguration.properties-13.privatekey"></a>

###  PrivateKey

** PrivateKey**:  *`object`* 

*Defined in [spec/spec.ts:18433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18433)*




<a id="opsworks.models.sslconfiguration.properties-13.privatekey.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfig-privatekey"

*Defined in [spec/spec.ts:18434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18434)*





___
<a id="opsworks.models.sslconfiguration.properties-13.privatekey.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18435)*





___
<a id="opsworks.models.sslconfiguration.properties-13.privatekey.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18436)*





___
<a id="opsworks.models.sslconfiguration.properties-13.privatekey.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18437)*





___

___

___

___
<a id="opsworks.models.stackconfigurationmanager"></a>

###  StackConfigurationManager

** StackConfigurationManager**:  *`object`* 

*Defined in [spec/spec.ts:18814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18814)*




<a id="opsworks.models.stackconfigurationmanager.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html"

*Defined in [spec/spec.ts:18815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18815)*





___
<a id="opsworks.models.stackconfigurationmanager.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Stack.StackConfigurationManager"

*Defined in [spec/spec.ts:18830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18830)*





___
<a id="opsworks.models.stackconfigurationmanager.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18816)*




<a id="opsworks.models.stackconfigurationmanager.properties-14.name-16"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:18817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18817)*




<a id="opsworks.models.stackconfigurationmanager.properties-14.name-16.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-name"

*Defined in [spec/spec.ts:18818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18818)*





___
<a id="opsworks.models.stackconfigurationmanager.properties-14.name-16.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18819)*





___
<a id="opsworks.models.stackconfigurationmanager.properties-14.name-16.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18820)*





___
<a id="opsworks.models.stackconfigurationmanager.properties-14.name-16.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18821)*





___

___
<a id="opsworks.models.stackconfigurationmanager.properties-14.version"></a>

###  Version

** Version**:  *`object`* 

*Defined in [spec/spec.ts:18823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18823)*




<a id="opsworks.models.stackconfigurationmanager.properties-14.version.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-stackconfigmanager.html#cfn-opsworks-configmanager-version"

*Defined in [spec/spec.ts:18824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18824)*





___
<a id="opsworks.models.stackconfigurationmanager.properties-14.version.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18825)*





___
<a id="opsworks.models.stackconfigurationmanager.properties-14.version.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18826)*





___
<a id="opsworks.models.stackconfigurationmanager.properties-14.version.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18827)*





___

___

___

___
<a id="opsworks.models.timebasedautoscaling"></a>

###  TimeBasedAutoScaling

** TimeBasedAutoScaling**:  *`object`* 

*Defined in [spec/spec.ts:18508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18508)*




<a id="opsworks.models.timebasedautoscaling.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html"

*Defined in [spec/spec.ts:18509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18509)*





___
<a id="opsworks.models.timebasedautoscaling.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Instance.TimeBasedAutoScaling"

*Defined in [spec/spec.ts:18568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18568)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18510)*




<a id="opsworks.models.timebasedautoscaling.properties-15.friday"></a>

###  Friday

** Friday**:  *`object`* 

*Defined in [spec/spec.ts:18511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18511)*




<a id="opsworks.models.timebasedautoscaling.properties-15.friday.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html#cfn-opsworks-instance-timebasedautoscaling-friday"

*Defined in [spec/spec.ts:18512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18512)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.friday.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18513)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.friday.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18514)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.friday.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18515)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.friday.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18516)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.friday.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18517)*





___

___
<a id="opsworks.models.timebasedautoscaling.properties-15.monday"></a>

###  Monday

** Monday**:  *`object`* 

*Defined in [spec/spec.ts:18519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18519)*




<a id="opsworks.models.timebasedautoscaling.properties-15.monday.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html#cfn-opsworks-instance-timebasedautoscaling-monday"

*Defined in [spec/spec.ts:18520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18520)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.monday.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18521)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.monday.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18522)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.monday.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18523)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.monday.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18524)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.monday.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18525)*





___

___
<a id="opsworks.models.timebasedautoscaling.properties-15.saturday"></a>

###  Saturday

** Saturday**:  *`object`* 

*Defined in [spec/spec.ts:18527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18527)*




<a id="opsworks.models.timebasedautoscaling.properties-15.saturday.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html#cfn-opsworks-instance-timebasedautoscaling-saturday"

*Defined in [spec/spec.ts:18528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18528)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.saturday.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18529)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.saturday.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18530)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.saturday.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18531)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.saturday.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18532)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.saturday.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18533)*





___

___
<a id="opsworks.models.timebasedautoscaling.properties-15.sunday"></a>

###  Sunday

** Sunday**:  *`object`* 

*Defined in [spec/spec.ts:18535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18535)*




<a id="opsworks.models.timebasedautoscaling.properties-15.sunday.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html#cfn-opsworks-instance-timebasedautoscaling-sunday"

*Defined in [spec/spec.ts:18536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18536)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.sunday.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18537)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.sunday.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18538)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.sunday.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18539)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.sunday.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18540)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.sunday.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18541)*





___

___
<a id="opsworks.models.timebasedautoscaling.properties-15.thursday"></a>

###  Thursday

** Thursday**:  *`object`* 

*Defined in [spec/spec.ts:18543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18543)*




<a id="opsworks.models.timebasedautoscaling.properties-15.thursday.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html#cfn-opsworks-instance-timebasedautoscaling-thursday"

*Defined in [spec/spec.ts:18544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18544)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.thursday.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18545)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.thursday.primitiveitemtype-9"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18546)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.thursday.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18547)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.thursday.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18548)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.thursday.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18549)*





___

___
<a id="opsworks.models.timebasedautoscaling.properties-15.tuesday"></a>

###  Tuesday

** Tuesday**:  *`object`* 

*Defined in [spec/spec.ts:18551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18551)*




<a id="opsworks.models.timebasedautoscaling.properties-15.tuesday.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html#cfn-opsworks-instance-timebasedautoscaling-tuesday"

*Defined in [spec/spec.ts:18552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18552)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.tuesday.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18553)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.tuesday.primitiveitemtype-10"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18554)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.tuesday.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18555)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.tuesday.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18556)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.tuesday.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18557)*





___

___
<a id="opsworks.models.timebasedautoscaling.properties-15.wednesday"></a>

###  Wednesday

** Wednesday**:  *`object`* 

*Defined in [spec/spec.ts:18559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18559)*




<a id="opsworks.models.timebasedautoscaling.properties-15.wednesday.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-instance-timebasedautoscaling.html#cfn-opsworks-instance-timebasedautoscaling-wednesday"

*Defined in [spec/spec.ts:18560](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18560)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.wednesday.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18561)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.wednesday.primitiveitemtype-11"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18562)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.wednesday.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18563)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.wednesday.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18564)*





___
<a id="opsworks.models.timebasedautoscaling.properties-15.wednesday.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18565)*





___

___

___

___
<a id="opsworks.models.volumeconfiguration"></a>

###  VolumeConfiguration

** VolumeConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18712)*




<a id="opsworks.models.volumeconfiguration.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html"

*Defined in [spec/spec.ts:18713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18713)*





___
<a id="opsworks.models.volumeconfiguration.name-18"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Layer.VolumeConfiguration"

*Defined in [spec/spec.ts:18752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18752)*





___
<a id="opsworks.models.volumeconfiguration.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18714)*




<a id="opsworks.models.volumeconfiguration.properties-16.iops-1"></a>

###  Iops

** Iops**:  *`object`* 

*Defined in [spec/spec.ts:18715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18715)*




<a id="opsworks.models.volumeconfiguration.properties-16.iops-1.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volconfig-iops"

*Defined in [spec/spec.ts:18716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18716)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.iops-1.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18717)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.iops-1.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18718)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.iops-1.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18719)*





___

___
<a id="opsworks.models.volumeconfiguration.properties-16.mountpoint"></a>

###  MountPoint

** MountPoint**:  *`object`* 

*Defined in [spec/spec.ts:18721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18721)*




<a id="opsworks.models.volumeconfiguration.properties-16.mountpoint.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volconfig-mountpoint"

*Defined in [spec/spec.ts:18722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18722)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.mountpoint.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18723)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.mountpoint.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18724)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.mountpoint.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18725)*





___

___
<a id="opsworks.models.volumeconfiguration.properties-16.numberofdisks"></a>

###  NumberOfDisks

** NumberOfDisks**:  *`object`* 

*Defined in [spec/spec.ts:18727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18727)*




<a id="opsworks.models.volumeconfiguration.properties-16.numberofdisks.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volconfig-numberofdisks"

*Defined in [spec/spec.ts:18728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18728)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.numberofdisks.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18729)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.numberofdisks.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18730)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.numberofdisks.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18731)*





___

___
<a id="opsworks.models.volumeconfiguration.properties-16.raidlevel"></a>

###  RaidLevel

** RaidLevel**:  *`object`* 

*Defined in [spec/spec.ts:18733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18733)*




<a id="opsworks.models.volumeconfiguration.properties-16.raidlevel.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volconfig-raidlevel"

*Defined in [spec/spec.ts:18734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18734)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.raidlevel.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18735)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.raidlevel.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18736)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.raidlevel.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18737)*





___

___
<a id="opsworks.models.volumeconfiguration.properties-16.size"></a>

###  Size

** Size**:  *`object`* 

*Defined in [spec/spec.ts:18739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18739)*




<a id="opsworks.models.volumeconfiguration.properties-16.size.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volconfig-size"

*Defined in [spec/spec.ts:18740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18740)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.size.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18741)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.size.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18742)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.size.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18743)*





___

___
<a id="opsworks.models.volumeconfiguration.properties-16.volumetype-1"></a>

###  VolumeType

** VolumeType**:  *`object`* 

*Defined in [spec/spec.ts:18745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18745)*




<a id="opsworks.models.volumeconfiguration.properties-16.volumetype-1.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-layer-volumeconfiguration.html#cfn-opsworks-layer-volconfig-volumetype"

*Defined in [spec/spec.ts:18746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18746)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.volumetype-1.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18747)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.volumetype-1.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18748)*





___
<a id="opsworks.models.volumeconfiguration.properties-16.volumetype-1.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18749)*





___

___

___

___

___
<a id="opsworks.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:17703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17703)*




<a id="opsworks.resources.app"></a>

###  App

** App**:  *`object`* 

*Defined in [spec/spec.ts:17704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17704)*




<a id="opsworks.resources.app.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html"

*Defined in [spec/spec.ts:17705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17705)*





___
<a id="opsworks.resources.app.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::App"

*Defined in [spec/spec.ts:17788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17788)*





___
<a id="opsworks.resources.app.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17706)*




<a id="opsworks.resources.app.properties-17.appsource"></a>

###  AppSource

** AppSource**:  *`object`* 

*Defined in [spec/spec.ts:17707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17707)*




<a id="opsworks.resources.app.properties-17.appsource.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-appsource"

*Defined in [spec/spec.ts:17708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17708)*





___
<a id="opsworks.resources.app.properties-17.appsource.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17709)*





___
<a id="opsworks.resources.app.properties-17.appsource.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "Source"

*Defined in [spec/spec.ts:17710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17710)*





___
<a id="opsworks.resources.app.properties-17.appsource.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17711)*





___

___
<a id="opsworks.resources.app.properties-17.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:17713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17713)*




<a id="opsworks.resources.app.properties-17.attributes.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-attributes"

*Defined in [spec/spec.ts:17714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17714)*





___
<a id="opsworks.resources.app.properties-17.attributes.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17715)*





___
<a id="opsworks.resources.app.properties-17.attributes.primitiveitemtype-12"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17716)*





___
<a id="opsworks.resources.app.properties-17.attributes.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17717)*





___
<a id="opsworks.resources.app.properties-17.attributes.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:17718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17718)*





___
<a id="opsworks.resources.app.properties-17.attributes.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17719)*





___

___
<a id="opsworks.resources.app.properties-17.datasources"></a>

###  DataSources

** DataSources**:  *`object`* 

*Defined in [spec/spec.ts:17721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17721)*




<a id="opsworks.resources.app.properties-17.datasources.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-datasources"

*Defined in [spec/spec.ts:17722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17722)*





___
<a id="opsworks.resources.app.properties-17.datasources.duplicatesallowed-13"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17723)*





___
<a id="opsworks.resources.app.properties-17.datasources.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "DataSource"

*Defined in [spec/spec.ts:17724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17724)*





___
<a id="opsworks.resources.app.properties-17.datasources.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17725)*





___
<a id="opsworks.resources.app.properties-17.datasources.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17726)*





___
<a id="opsworks.resources.app.properties-17.datasources.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17727)*





___

___
<a id="opsworks.resources.app.properties-17.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:17729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17729)*




<a id="opsworks.resources.app.properties-17.description.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-description"

*Defined in [spec/spec.ts:17730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17730)*





___
<a id="opsworks.resources.app.properties-17.description.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17731)*





___
<a id="opsworks.resources.app.properties-17.description.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17732)*





___
<a id="opsworks.resources.app.properties-17.description.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17733)*





___

___
<a id="opsworks.resources.app.properties-17.domains"></a>

###  Domains

** Domains**:  *`object`* 

*Defined in [spec/spec.ts:17735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17735)*




<a id="opsworks.resources.app.properties-17.domains.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-domains"

*Defined in [spec/spec.ts:17736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17736)*





___
<a id="opsworks.resources.app.properties-17.domains.duplicatesallowed-14"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17737)*





___
<a id="opsworks.resources.app.properties-17.domains.primitiveitemtype-13"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17738)*





___
<a id="opsworks.resources.app.properties-17.domains.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17739)*





___
<a id="opsworks.resources.app.properties-17.domains.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17740)*





___
<a id="opsworks.resources.app.properties-17.domains.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17741)*





___

___
<a id="opsworks.resources.app.properties-17.enablessl"></a>

###  EnableSsl

** EnableSsl**:  *`object`* 

*Defined in [spec/spec.ts:17743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17743)*




<a id="opsworks.resources.app.properties-17.enablessl.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-enablessl"

*Defined in [spec/spec.ts:17744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17744)*





___
<a id="opsworks.resources.app.properties-17.enablessl.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:17745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17745)*





___
<a id="opsworks.resources.app.properties-17.enablessl.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17746)*





___
<a id="opsworks.resources.app.properties-17.enablessl.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17747)*





___

___
<a id="opsworks.resources.app.properties-17.environment"></a>

###  Environment

** Environment**:  *`object`* 

*Defined in [spec/spec.ts:17749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17749)*




<a id="opsworks.resources.app.properties-17.environment.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-environment"

*Defined in [spec/spec.ts:17750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17750)*





___
<a id="opsworks.resources.app.properties-17.environment.duplicatesallowed-15"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17751)*





___
<a id="opsworks.resources.app.properties-17.environment.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "EnvironmentVariable"

*Defined in [spec/spec.ts:17752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17752)*





___
<a id="opsworks.resources.app.properties-17.environment.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17753)*





___
<a id="opsworks.resources.app.properties-17.environment.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17754)*





___
<a id="opsworks.resources.app.properties-17.environment.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17755)*





___

___
<a id="opsworks.resources.app.properties-17.name-20"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:17757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17757)*




<a id="opsworks.resources.app.properties-17.name-20.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-name"

*Defined in [spec/spec.ts:17758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17758)*





___
<a id="opsworks.resources.app.properties-17.name-20.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17759)*





___
<a id="opsworks.resources.app.properties-17.name-20.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17760)*





___
<a id="opsworks.resources.app.properties-17.name-20.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17761)*





___

___
<a id="opsworks.resources.app.properties-17.shortname"></a>

###  Shortname

** Shortname**:  *`object`* 

*Defined in [spec/spec.ts:17763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17763)*




<a id="opsworks.resources.app.properties-17.shortname.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-shortname"

*Defined in [spec/spec.ts:17764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17764)*





___
<a id="opsworks.resources.app.properties-17.shortname.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17765)*





___
<a id="opsworks.resources.app.properties-17.shortname.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17766)*





___
<a id="opsworks.resources.app.properties-17.shortname.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17767)*





___

___
<a id="opsworks.resources.app.properties-17.sslconfiguration-1"></a>

###  SslConfiguration

** SslConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:17769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17769)*




<a id="opsworks.resources.app.properties-17.sslconfiguration-1.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-sslconfiguration"

*Defined in [spec/spec.ts:17770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17770)*





___
<a id="opsworks.resources.app.properties-17.sslconfiguration-1.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17771)*





___
<a id="opsworks.resources.app.properties-17.sslconfiguration-1.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "SslConfiguration"

*Defined in [spec/spec.ts:17772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17772)*





___
<a id="opsworks.resources.app.properties-17.sslconfiguration-1.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17773)*





___

___
<a id="opsworks.resources.app.properties-17.stackid"></a>

###  StackId

** StackId**:  *`object`* 

*Defined in [spec/spec.ts:17775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17775)*




<a id="opsworks.resources.app.properties-17.stackid.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-stackid"

*Defined in [spec/spec.ts:17776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17776)*





___
<a id="opsworks.resources.app.properties-17.stackid.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17777](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17777)*





___
<a id="opsworks.resources.app.properties-17.stackid.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17778)*





___
<a id="opsworks.resources.app.properties-17.stackid.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17779)*





___

___
<a id="opsworks.resources.app.properties-17.type-24"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:17781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17781)*




<a id="opsworks.resources.app.properties-17.type-24.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-app.html#cfn-opsworks-app-type"

*Defined in [spec/spec.ts:17782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17782)*





___
<a id="opsworks.resources.app.properties-17.type-24.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17783)*





___
<a id="opsworks.resources.app.properties-17.type-24.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17784)*





___
<a id="opsworks.resources.app.properties-17.type-24.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17785)*





___

___

___

___
<a id="opsworks.resources.elasticloadbalancerattachment"></a>

###  ElasticLoadBalancerAttachment

** ElasticLoadBalancerAttachment**:  *`object`* 

*Defined in [spec/spec.ts:17790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17790)*




<a id="opsworks.resources.elasticloadbalancerattachment.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html"

*Defined in [spec/spec.ts:17791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17791)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::ElasticLoadBalancerAttachment"

*Defined in [spec/spec.ts:17806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17806)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17792)*




<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.elasticloadbalancername"></a>

###  ElasticLoadBalancerName

** ElasticLoadBalancerName**:  *`object`* 

*Defined in [spec/spec.ts:17793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17793)*




<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.elasticloadbalancername.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-elbname"

*Defined in [spec/spec.ts:17794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17794)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.elasticloadbalancername.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17795)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.elasticloadbalancername.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17796)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.elasticloadbalancername.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17797)*





___

___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.layerid"></a>

###  LayerId

** LayerId**:  *`object`* 

*Defined in [spec/spec.ts:17799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17799)*




<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.layerid.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-elbattachment.html#cfn-opsworks-elbattachment-layerid"

*Defined in [spec/spec.ts:17800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17800)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.layerid.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17801)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.layerid.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17802)*





___
<a id="opsworks.resources.elasticloadbalancerattachment.properties-18.layerid.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17803)*





___

___

___

___
<a id="opsworks.resources.instance"></a>

###  Instance

** Instance**:  *`object`* 

*Defined in [spec/spec.ts:17808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17808)*




<a id="opsworks.resources.instance.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html"

*Defined in [spec/spec.ts:17826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17826)*





___
<a id="opsworks.resources.instance.name-22"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Instance"

*Defined in [spec/spec.ts:17963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17963)*





___
<a id="opsworks.resources.instance.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:17809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17809)*




<a id="opsworks.resources.instance.attributes-1.availabilityzone"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:17810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17810)*




<a id="opsworks.resources.instance.attributes-1.availabilityzone.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17811)*





___

___
<a id="opsworks.resources.instance.attributes-1.privatednsname"></a>

###  PrivateDnsName

** PrivateDnsName**:  *`object`* 

*Defined in [spec/spec.ts:17813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17813)*




<a id="opsworks.resources.instance.attributes-1.privatednsname.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17814)*





___

___
<a id="opsworks.resources.instance.attributes-1.privateip"></a>

###  PrivateIp

** PrivateIp**:  *`object`* 

*Defined in [spec/spec.ts:17816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17816)*




<a id="opsworks.resources.instance.attributes-1.privateip.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17817)*





___

___
<a id="opsworks.resources.instance.attributes-1.publicdnsname"></a>

###  PublicDnsName

** PublicDnsName**:  *`object`* 

*Defined in [spec/spec.ts:17819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17819)*




<a id="opsworks.resources.instance.attributes-1.publicdnsname.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17820)*





___

___
<a id="opsworks.resources.instance.attributes-1.publicip"></a>

###  PublicIp

** PublicIp**:  *`object`* 

*Defined in [spec/spec.ts:17822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17822)*




<a id="opsworks.resources.instance.attributes-1.publicip.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17823)*





___

___

___
<a id="opsworks.resources.instance.properties-19"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17827)*




<a id="opsworks.resources.instance.properties-19.agentversion"></a>

###  AgentVersion

** AgentVersion**:  *`object`* 

*Defined in [spec/spec.ts:17828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17828)*




<a id="opsworks.resources.instance.properties-19.agentversion.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-agentversion"

*Defined in [spec/spec.ts:17829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17829)*





___
<a id="opsworks.resources.instance.properties-19.agentversion.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17830)*





___
<a id="opsworks.resources.instance.properties-19.agentversion.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17831)*





___
<a id="opsworks.resources.instance.properties-19.agentversion.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17832)*





___

___
<a id="opsworks.resources.instance.properties-19.amiid"></a>

###  AmiId

** AmiId**:  *`object`* 

*Defined in [spec/spec.ts:17834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17834)*




<a id="opsworks.resources.instance.properties-19.amiid.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-amiid"

*Defined in [spec/spec.ts:17835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17835)*





___
<a id="opsworks.resources.instance.properties-19.amiid.primitivetype-61"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17836)*





___
<a id="opsworks.resources.instance.properties-19.amiid.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17837)*





___
<a id="opsworks.resources.instance.properties-19.amiid.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17838)*





___

___
<a id="opsworks.resources.instance.properties-19.architecture"></a>

###  Architecture

** Architecture**:  *`object`* 

*Defined in [spec/spec.ts:17840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17840)*




<a id="opsworks.resources.instance.properties-19.architecture.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-architecture"

*Defined in [spec/spec.ts:17841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17841)*





___
<a id="opsworks.resources.instance.properties-19.architecture.primitivetype-62"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17842)*





___
<a id="opsworks.resources.instance.properties-19.architecture.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17843)*





___
<a id="opsworks.resources.instance.properties-19.architecture.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17844)*





___

___
<a id="opsworks.resources.instance.properties-19.autoscalingtype"></a>

###  AutoScalingType

** AutoScalingType**:  *`object`* 

*Defined in [spec/spec.ts:17846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17846)*




<a id="opsworks.resources.instance.properties-19.autoscalingtype.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-autoscalingtype"

*Defined in [spec/spec.ts:17847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17847)*





___
<a id="opsworks.resources.instance.properties-19.autoscalingtype.primitivetype-63"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17848)*





___
<a id="opsworks.resources.instance.properties-19.autoscalingtype.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17849)*





___
<a id="opsworks.resources.instance.properties-19.autoscalingtype.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17850)*





___

___
<a id="opsworks.resources.instance.properties-19.availabilityzone-1"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:17852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17852)*




<a id="opsworks.resources.instance.properties-19.availabilityzone-1.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-availabilityzone"

*Defined in [spec/spec.ts:17853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17853)*





___
<a id="opsworks.resources.instance.properties-19.availabilityzone-1.primitivetype-64"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17854)*





___
<a id="opsworks.resources.instance.properties-19.availabilityzone-1.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17855)*





___
<a id="opsworks.resources.instance.properties-19.availabilityzone-1.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17856)*





___

___
<a id="opsworks.resources.instance.properties-19.blockdevicemappings"></a>

###  BlockDeviceMappings

** BlockDeviceMappings**:  *`object`* 

*Defined in [spec/spec.ts:17858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17858)*




<a id="opsworks.resources.instance.properties-19.blockdevicemappings.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-blockdevicemappings"

*Defined in [spec/spec.ts:17859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17859)*





___
<a id="opsworks.resources.instance.properties-19.blockdevicemappings.duplicatesallowed-16"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17860)*





___
<a id="opsworks.resources.instance.properties-19.blockdevicemappings.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "BlockDeviceMapping"

*Defined in [spec/spec.ts:17861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17861)*





___
<a id="opsworks.resources.instance.properties-19.blockdevicemappings.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17862)*





___
<a id="opsworks.resources.instance.properties-19.blockdevicemappings.type-25"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17863)*





___
<a id="opsworks.resources.instance.properties-19.blockdevicemappings.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17864)*





___

___
<a id="opsworks.resources.instance.properties-19.ebsoptimized"></a>

###  EbsOptimized

** EbsOptimized**:  *`object`* 

*Defined in [spec/spec.ts:17866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17866)*




<a id="opsworks.resources.instance.properties-19.ebsoptimized.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-ebsoptimized"

*Defined in [spec/spec.ts:17867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17867)*





___
<a id="opsworks.resources.instance.properties-19.ebsoptimized.primitivetype-65"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:17868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17868)*





___
<a id="opsworks.resources.instance.properties-19.ebsoptimized.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17869)*





___
<a id="opsworks.resources.instance.properties-19.ebsoptimized.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17870)*





___

___
<a id="opsworks.resources.instance.properties-19.elasticips"></a>

###  ElasticIps

** ElasticIps**:  *`object`* 

*Defined in [spec/spec.ts:17872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17872)*




<a id="opsworks.resources.instance.properties-19.elasticips.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-elasticips"

*Defined in [spec/spec.ts:17873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17873)*





___
<a id="opsworks.resources.instance.properties-19.elasticips.duplicatesallowed-17"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17874)*





___
<a id="opsworks.resources.instance.properties-19.elasticips.primitiveitemtype-14"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17875)*





___
<a id="opsworks.resources.instance.properties-19.elasticips.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17876)*





___
<a id="opsworks.resources.instance.properties-19.elasticips.type-26"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17877)*





___
<a id="opsworks.resources.instance.properties-19.elasticips.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17878)*





___

___
<a id="opsworks.resources.instance.properties-19.hostname"></a>

###  Hostname

** Hostname**:  *`object`* 

*Defined in [spec/spec.ts:17880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17880)*




<a id="opsworks.resources.instance.properties-19.hostname.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-hostname"

*Defined in [spec/spec.ts:17881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17881)*





___
<a id="opsworks.resources.instance.properties-19.hostname.primitivetype-66"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17882)*





___
<a id="opsworks.resources.instance.properties-19.hostname.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17883)*





___
<a id="opsworks.resources.instance.properties-19.hostname.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17884)*





___

___
<a id="opsworks.resources.instance.properties-19.installupdatesonboot"></a>

###  InstallUpdatesOnBoot

** InstallUpdatesOnBoot**:  *`object`* 

*Defined in [spec/spec.ts:17886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17886)*




<a id="opsworks.resources.instance.properties-19.installupdatesonboot.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-installupdatesonboot"

*Defined in [spec/spec.ts:17887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17887)*





___
<a id="opsworks.resources.instance.properties-19.installupdatesonboot.primitivetype-67"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:17888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17888)*





___
<a id="opsworks.resources.instance.properties-19.installupdatesonboot.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17889)*





___
<a id="opsworks.resources.instance.properties-19.installupdatesonboot.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17890)*





___

___
<a id="opsworks.resources.instance.properties-19.instancetype"></a>

###  InstanceType

** InstanceType**:  *`object`* 

*Defined in [spec/spec.ts:17892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17892)*




<a id="opsworks.resources.instance.properties-19.instancetype.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-instancetype"

*Defined in [spec/spec.ts:17893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17893)*





___
<a id="opsworks.resources.instance.properties-19.instancetype.primitivetype-68"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17894)*





___
<a id="opsworks.resources.instance.properties-19.instancetype.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17895)*





___
<a id="opsworks.resources.instance.properties-19.instancetype.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17896)*





___

___
<a id="opsworks.resources.instance.properties-19.layerids"></a>

###  LayerIds

** LayerIds**:  *`object`* 

*Defined in [spec/spec.ts:17898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17898)*




<a id="opsworks.resources.instance.properties-19.layerids.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-layerids"

*Defined in [spec/spec.ts:17899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17899)*





___
<a id="opsworks.resources.instance.properties-19.layerids.duplicatesallowed-18"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17900)*





___
<a id="opsworks.resources.instance.properties-19.layerids.primitiveitemtype-15"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17901)*





___
<a id="opsworks.resources.instance.properties-19.layerids.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17902)*





___
<a id="opsworks.resources.instance.properties-19.layerids.type-27"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17903)*





___
<a id="opsworks.resources.instance.properties-19.layerids.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17904)*





___

___
<a id="opsworks.resources.instance.properties-19.os"></a>

###  Os

** Os**:  *`object`* 

*Defined in [spec/spec.ts:17906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17906)*




<a id="opsworks.resources.instance.properties-19.os.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-os"

*Defined in [spec/spec.ts:17907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17907)*





___
<a id="opsworks.resources.instance.properties-19.os.primitivetype-69"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17908)*





___
<a id="opsworks.resources.instance.properties-19.os.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17909)*





___
<a id="opsworks.resources.instance.properties-19.os.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17910)*





___

___
<a id="opsworks.resources.instance.properties-19.rootdevicetype"></a>

###  RootDeviceType

** RootDeviceType**:  *`object`* 

*Defined in [spec/spec.ts:17912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17912)*




<a id="opsworks.resources.instance.properties-19.rootdevicetype.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-rootdevicetype"

*Defined in [spec/spec.ts:17913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17913)*





___
<a id="opsworks.resources.instance.properties-19.rootdevicetype.primitivetype-70"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17914)*





___
<a id="opsworks.resources.instance.properties-19.rootdevicetype.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17915)*





___
<a id="opsworks.resources.instance.properties-19.rootdevicetype.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17916)*





___

___
<a id="opsworks.resources.instance.properties-19.sshkeyname"></a>

###  SshKeyName

** SshKeyName**:  *`object`* 

*Defined in [spec/spec.ts:17918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17918)*




<a id="opsworks.resources.instance.properties-19.sshkeyname.documentation-111"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-sshkeyname"

*Defined in [spec/spec.ts:17919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17919)*





___
<a id="opsworks.resources.instance.properties-19.sshkeyname.primitivetype-71"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17920)*





___
<a id="opsworks.resources.instance.properties-19.sshkeyname.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17921)*





___
<a id="opsworks.resources.instance.properties-19.sshkeyname.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17922)*





___

___
<a id="opsworks.resources.instance.properties-19.stackid-1"></a>

###  StackId

** StackId**:  *`object`* 

*Defined in [spec/spec.ts:17924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17924)*




<a id="opsworks.resources.instance.properties-19.stackid-1.documentation-112"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-stackid"

*Defined in [spec/spec.ts:17925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17925)*





___
<a id="opsworks.resources.instance.properties-19.stackid-1.primitivetype-72"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17926)*





___
<a id="opsworks.resources.instance.properties-19.stackid-1.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17927)*





___
<a id="opsworks.resources.instance.properties-19.stackid-1.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17928)*





___

___
<a id="opsworks.resources.instance.properties-19.subnetid"></a>

###  SubnetId

** SubnetId**:  *`object`* 

*Defined in [spec/spec.ts:17930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17930)*




<a id="opsworks.resources.instance.properties-19.subnetid.documentation-113"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-subnetid"

*Defined in [spec/spec.ts:17931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17931)*





___
<a id="opsworks.resources.instance.properties-19.subnetid.primitivetype-73"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17932)*





___
<a id="opsworks.resources.instance.properties-19.subnetid.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17933)*





___
<a id="opsworks.resources.instance.properties-19.subnetid.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17934)*





___

___
<a id="opsworks.resources.instance.properties-19.tenancy"></a>

###  Tenancy

** Tenancy**:  *`object`* 

*Defined in [spec/spec.ts:17936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17936)*




<a id="opsworks.resources.instance.properties-19.tenancy.documentation-114"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-tenancy"

*Defined in [spec/spec.ts:17937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17937)*





___
<a id="opsworks.resources.instance.properties-19.tenancy.primitivetype-74"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17938)*





___
<a id="opsworks.resources.instance.properties-19.tenancy.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17939)*





___
<a id="opsworks.resources.instance.properties-19.tenancy.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17940)*





___

___
<a id="opsworks.resources.instance.properties-19.timebasedautoscaling-1"></a>

###  TimeBasedAutoScaling

** TimeBasedAutoScaling**:  *`object`* 

*Defined in [spec/spec.ts:17942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17942)*




<a id="opsworks.resources.instance.properties-19.timebasedautoscaling-1.documentation-115"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-timebasedautoscaling"

*Defined in [spec/spec.ts:17943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17943)*





___
<a id="opsworks.resources.instance.properties-19.timebasedautoscaling-1.required-95"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17944)*





___
<a id="opsworks.resources.instance.properties-19.timebasedautoscaling-1.type-28"></a>

###  Type

**●  Type**:  *`string`*  = "TimeBasedAutoScaling"

*Defined in [spec/spec.ts:17945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17945)*





___
<a id="opsworks.resources.instance.properties-19.timebasedautoscaling-1.updatetype-95"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17946)*





___

___
<a id="opsworks.resources.instance.properties-19.virtualizationtype"></a>

###  VirtualizationType

** VirtualizationType**:  *`object`* 

*Defined in [spec/spec.ts:17948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17948)*




<a id="opsworks.resources.instance.properties-19.virtualizationtype.documentation-116"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-virtualizationtype"

*Defined in [spec/spec.ts:17949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17949)*





___
<a id="opsworks.resources.instance.properties-19.virtualizationtype.primitivetype-75"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17950)*





___
<a id="opsworks.resources.instance.properties-19.virtualizationtype.required-96"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17951)*





___
<a id="opsworks.resources.instance.properties-19.virtualizationtype.updatetype-96"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:17952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17952)*





___

___
<a id="opsworks.resources.instance.properties-19.volumes"></a>

###  Volumes

** Volumes**:  *`object`* 

*Defined in [spec/spec.ts:17954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17954)*




<a id="opsworks.resources.instance.properties-19.volumes.documentation-117"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-instance.html#cfn-opsworks-instance-volumes"

*Defined in [spec/spec.ts:17955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17955)*





___
<a id="opsworks.resources.instance.properties-19.volumes.duplicatesallowed-19"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17956)*





___
<a id="opsworks.resources.instance.properties-19.volumes.primitiveitemtype-16"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17957)*





___
<a id="opsworks.resources.instance.properties-19.volumes.required-97"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17958)*





___
<a id="opsworks.resources.instance.properties-19.volumes.type-29"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:17959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17959)*





___
<a id="opsworks.resources.instance.properties-19.volumes.updatetype-97"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17960)*





___

___

___

___
<a id="opsworks.resources.layer"></a>

###  Layer

** Layer**:  *`object`* 

*Defined in [spec/spec.ts:17965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17965)*




<a id="opsworks.resources.layer.documentation-118"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html"

*Defined in [spec/spec.ts:17966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17966)*





___
<a id="opsworks.resources.layer.name-23"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Layer"

*Defined in [spec/spec.ts:18093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18093)*





___
<a id="opsworks.resources.layer.properties-20"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:17967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17967)*




<a id="opsworks.resources.layer.properties-20.attributes-2"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:17968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17968)*




<a id="opsworks.resources.layer.properties-20.attributes-2.documentation-119"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-attributes"

*Defined in [spec/spec.ts:17969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17969)*





___
<a id="opsworks.resources.layer.properties-20.attributes-2.duplicatesallowed-20"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17970)*





___
<a id="opsworks.resources.layer.properties-20.attributes-2.primitiveitemtype-17"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17971)*





___
<a id="opsworks.resources.layer.properties-20.attributes-2.required-98"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17972)*





___
<a id="opsworks.resources.layer.properties-20.attributes-2.type-30"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:17973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17973)*





___
<a id="opsworks.resources.layer.properties-20.attributes-2.updatetype-98"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17974)*





___

___
<a id="opsworks.resources.layer.properties-20.autoassignelasticips"></a>

###  AutoAssignElasticIps

** AutoAssignElasticIps**:  *`object`* 

*Defined in [spec/spec.ts:17976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17976)*




<a id="opsworks.resources.layer.properties-20.autoassignelasticips.documentation-120"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignelasticips"

*Defined in [spec/spec.ts:17977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17977)*





___
<a id="opsworks.resources.layer.properties-20.autoassignelasticips.primitivetype-76"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:17978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17978)*





___
<a id="opsworks.resources.layer.properties-20.autoassignelasticips.required-99"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17979)*





___
<a id="opsworks.resources.layer.properties-20.autoassignelasticips.updatetype-99"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17980)*





___

___
<a id="opsworks.resources.layer.properties-20.autoassignpublicips"></a>

###  AutoAssignPublicIps

** AutoAssignPublicIps**:  *`object`* 

*Defined in [spec/spec.ts:17982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17982)*




<a id="opsworks.resources.layer.properties-20.autoassignpublicips.documentation-121"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-autoassignpublicips"

*Defined in [spec/spec.ts:17983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17983)*





___
<a id="opsworks.resources.layer.properties-20.autoassignpublicips.primitivetype-77"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:17984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17984)*





___
<a id="opsworks.resources.layer.properties-20.autoassignpublicips.required-100"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:17985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17985)*





___
<a id="opsworks.resources.layer.properties-20.autoassignpublicips.updatetype-100"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17986)*





___

___
<a id="opsworks.resources.layer.properties-20.custominstanceprofilearn"></a>

###  CustomInstanceProfileArn

** CustomInstanceProfileArn**:  *`object`* 

*Defined in [spec/spec.ts:17988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17988)*




<a id="opsworks.resources.layer.properties-20.custominstanceprofilearn.documentation-122"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-custominstanceprofilearn"

*Defined in [spec/spec.ts:17989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17989)*





___
<a id="opsworks.resources.layer.properties-20.custominstanceprofilearn.primitivetype-78"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:17990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17990)*





___
<a id="opsworks.resources.layer.properties-20.custominstanceprofilearn.required-101"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17991)*





___
<a id="opsworks.resources.layer.properties-20.custominstanceprofilearn.updatetype-101"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17992)*





___

___
<a id="opsworks.resources.layer.properties-20.customjson"></a>

###  CustomJson

** CustomJson**:  *`object`* 

*Defined in [spec/spec.ts:17994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17994)*




<a id="opsworks.resources.layer.properties-20.customjson.documentation-123"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customjson"

*Defined in [spec/spec.ts:17995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17995)*





___
<a id="opsworks.resources.layer.properties-20.customjson.primitivetype-79"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:17996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17996)*





___
<a id="opsworks.resources.layer.properties-20.customjson.required-102"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:17997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17997)*





___
<a id="opsworks.resources.layer.properties-20.customjson.updatetype-102"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:17998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L17998)*





___

___
<a id="opsworks.resources.layer.properties-20.customrecipes"></a>

###  CustomRecipes

** CustomRecipes**:  *`object`* 

*Defined in [spec/spec.ts:18000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18000)*




<a id="opsworks.resources.layer.properties-20.customrecipes.documentation-124"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customrecipes"

*Defined in [spec/spec.ts:18001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18001)*





___
<a id="opsworks.resources.layer.properties-20.customrecipes.required-103"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18002)*





___
<a id="opsworks.resources.layer.properties-20.customrecipes.type-31"></a>

###  Type

**●  Type**:  *`string`*  = "Recipes"

*Defined in [spec/spec.ts:18003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18003)*





___
<a id="opsworks.resources.layer.properties-20.customrecipes.updatetype-103"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18004)*





___

___
<a id="opsworks.resources.layer.properties-20.customsecuritygroupids"></a>

###  CustomSecurityGroupIds

** CustomSecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:18006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18006)*




<a id="opsworks.resources.layer.properties-20.customsecuritygroupids.documentation-125"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-customsecuritygroupids"

*Defined in [spec/spec.ts:18007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18007)*





___
<a id="opsworks.resources.layer.properties-20.customsecuritygroupids.duplicatesallowed-21"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18008)*





___
<a id="opsworks.resources.layer.properties-20.customsecuritygroupids.primitiveitemtype-18"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18009)*





___
<a id="opsworks.resources.layer.properties-20.customsecuritygroupids.required-104"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18010)*





___
<a id="opsworks.resources.layer.properties-20.customsecuritygroupids.type-32"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18011)*





___
<a id="opsworks.resources.layer.properties-20.customsecuritygroupids.updatetype-104"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18012)*





___

___
<a id="opsworks.resources.layer.properties-20.enableautohealing"></a>

###  EnableAutoHealing

** EnableAutoHealing**:  *`object`* 

*Defined in [spec/spec.ts:18014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18014)*




<a id="opsworks.resources.layer.properties-20.enableautohealing.documentation-126"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-enableautohealing"

*Defined in [spec/spec.ts:18015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18015)*





___
<a id="opsworks.resources.layer.properties-20.enableautohealing.primitivetype-80"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18016)*





___
<a id="opsworks.resources.layer.properties-20.enableautohealing.required-105"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18017)*





___
<a id="opsworks.resources.layer.properties-20.enableautohealing.updatetype-105"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18018)*





___

___
<a id="opsworks.resources.layer.properties-20.installupdatesonboot-1"></a>

###  InstallUpdatesOnBoot

** InstallUpdatesOnBoot**:  *`object`* 

*Defined in [spec/spec.ts:18020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18020)*




<a id="opsworks.resources.layer.properties-20.installupdatesonboot-1.documentation-127"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-installupdatesonboot"

*Defined in [spec/spec.ts:18021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18021)*





___
<a id="opsworks.resources.layer.properties-20.installupdatesonboot-1.primitivetype-81"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18022)*





___
<a id="opsworks.resources.layer.properties-20.installupdatesonboot-1.required-106"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18023)*





___
<a id="opsworks.resources.layer.properties-20.installupdatesonboot-1.updatetype-106"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18024)*





___

___
<a id="opsworks.resources.layer.properties-20.lifecycleeventconfiguration-1"></a>

###  LifecycleEventConfiguration

** LifecycleEventConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18026)*




<a id="opsworks.resources.layer.properties-20.lifecycleeventconfiguration-1.documentation-128"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-lifecycleeventconfiguration"

*Defined in [spec/spec.ts:18027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18027)*





___
<a id="opsworks.resources.layer.properties-20.lifecycleeventconfiguration-1.required-107"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18028)*





___
<a id="opsworks.resources.layer.properties-20.lifecycleeventconfiguration-1.type-33"></a>

###  Type

**●  Type**:  *`string`*  = "LifecycleEventConfiguration"

*Defined in [spec/spec.ts:18029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18029)*





___
<a id="opsworks.resources.layer.properties-20.lifecycleeventconfiguration-1.updatetype-107"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18030)*





___

___
<a id="opsworks.resources.layer.properties-20.loadbasedautoscaling-1"></a>

###  LoadBasedAutoScaling

** LoadBasedAutoScaling**:  *`object`* 

*Defined in [spec/spec.ts:18032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18032)*




<a id="opsworks.resources.layer.properties-20.loadbasedautoscaling-1.documentation-129"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-loadbasedautoscaling"

*Defined in [spec/spec.ts:18033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18033)*





___
<a id="opsworks.resources.layer.properties-20.loadbasedautoscaling-1.required-108"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18034)*





___
<a id="opsworks.resources.layer.properties-20.loadbasedautoscaling-1.type-34"></a>

###  Type

**●  Type**:  *`string`*  = "LoadBasedAutoScaling"

*Defined in [spec/spec.ts:18035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18035)*





___
<a id="opsworks.resources.layer.properties-20.loadbasedautoscaling-1.updatetype-108"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18036)*





___

___
<a id="opsworks.resources.layer.properties-20.name-24"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:18038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18038)*




<a id="opsworks.resources.layer.properties-20.name-24.documentation-130"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-name"

*Defined in [spec/spec.ts:18039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18039)*





___
<a id="opsworks.resources.layer.properties-20.name-24.primitivetype-82"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18040)*





___
<a id="opsworks.resources.layer.properties-20.name-24.required-109"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18041)*





___
<a id="opsworks.resources.layer.properties-20.name-24.updatetype-109"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18042)*





___

___
<a id="opsworks.resources.layer.properties-20.packages"></a>

###  Packages

** Packages**:  *`object`* 

*Defined in [spec/spec.ts:18044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18044)*




<a id="opsworks.resources.layer.properties-20.packages.documentation-131"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-packages"

*Defined in [spec/spec.ts:18045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18045)*





___
<a id="opsworks.resources.layer.properties-20.packages.duplicatesallowed-22"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18046)*





___
<a id="opsworks.resources.layer.properties-20.packages.primitiveitemtype-19"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18047)*





___
<a id="opsworks.resources.layer.properties-20.packages.required-110"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18048)*





___
<a id="opsworks.resources.layer.properties-20.packages.type-35"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18049)*





___
<a id="opsworks.resources.layer.properties-20.packages.updatetype-110"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18050)*





___

___
<a id="opsworks.resources.layer.properties-20.shortname-1"></a>

###  Shortname

** Shortname**:  *`object`* 

*Defined in [spec/spec.ts:18052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18052)*




<a id="opsworks.resources.layer.properties-20.shortname-1.documentation-132"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-shortname"

*Defined in [spec/spec.ts:18053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18053)*





___
<a id="opsworks.resources.layer.properties-20.shortname-1.primitivetype-83"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18054)*





___
<a id="opsworks.resources.layer.properties-20.shortname-1.required-111"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18055)*





___
<a id="opsworks.resources.layer.properties-20.shortname-1.updatetype-111"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18056)*





___

___
<a id="opsworks.resources.layer.properties-20.stackid-2"></a>

###  StackId

** StackId**:  *`object`* 

*Defined in [spec/spec.ts:18058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18058)*




<a id="opsworks.resources.layer.properties-20.stackid-2.documentation-133"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-stackid"

*Defined in [spec/spec.ts:18059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18059)*





___
<a id="opsworks.resources.layer.properties-20.stackid-2.primitivetype-84"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18060)*





___
<a id="opsworks.resources.layer.properties-20.stackid-2.required-112"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18061)*





___
<a id="opsworks.resources.layer.properties-20.stackid-2.updatetype-112"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18062)*





___

___
<a id="opsworks.resources.layer.properties-20.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:18064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18064)*




<a id="opsworks.resources.layer.properties-20.tags.documentation-134"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-tags"

*Defined in [spec/spec.ts:18065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18065)*





___
<a id="opsworks.resources.layer.properties-20.tags.duplicatesallowed-23"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18066)*





___
<a id="opsworks.resources.layer.properties-20.tags.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:18067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18067)*





___
<a id="opsworks.resources.layer.properties-20.tags.required-113"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18068)*





___
<a id="opsworks.resources.layer.properties-20.tags.type-36"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18069)*





___
<a id="opsworks.resources.layer.properties-20.tags.updatetype-113"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18070)*





___

___
<a id="opsworks.resources.layer.properties-20.type-37"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:18072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18072)*




<a id="opsworks.resources.layer.properties-20.type-37.documentation-135"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-type"

*Defined in [spec/spec.ts:18073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18073)*





___
<a id="opsworks.resources.layer.properties-20.type-37.primitivetype-85"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18074)*





___
<a id="opsworks.resources.layer.properties-20.type-37.required-114"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18075)*





___
<a id="opsworks.resources.layer.properties-20.type-37.updatetype-114"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18076)*





___

___
<a id="opsworks.resources.layer.properties-20.useebsoptimizedinstances"></a>

###  UseEbsOptimizedInstances

** UseEbsOptimizedInstances**:  *`object`* 

*Defined in [spec/spec.ts:18078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18078)*




<a id="opsworks.resources.layer.properties-20.useebsoptimizedinstances.documentation-136"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-useebsoptimizedinstances"

*Defined in [spec/spec.ts:18079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18079)*





___
<a id="opsworks.resources.layer.properties-20.useebsoptimizedinstances.primitivetype-86"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18080)*





___
<a id="opsworks.resources.layer.properties-20.useebsoptimizedinstances.required-115"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18081)*





___
<a id="opsworks.resources.layer.properties-20.useebsoptimizedinstances.updatetype-115"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18082)*





___

___
<a id="opsworks.resources.layer.properties-20.volumeconfigurations"></a>

###  VolumeConfigurations

** VolumeConfigurations**:  *`object`* 

*Defined in [spec/spec.ts:18084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18084)*




<a id="opsworks.resources.layer.properties-20.volumeconfigurations.documentation-137"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-layer.html#cfn-opsworks-layer-volumeconfigurations"

*Defined in [spec/spec.ts:18085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18085)*





___
<a id="opsworks.resources.layer.properties-20.volumeconfigurations.duplicatesallowed-24"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18086)*





___
<a id="opsworks.resources.layer.properties-20.volumeconfigurations.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "VolumeConfiguration"

*Defined in [spec/spec.ts:18087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18087)*





___
<a id="opsworks.resources.layer.properties-20.volumeconfigurations.required-116"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18088)*





___
<a id="opsworks.resources.layer.properties-20.volumeconfigurations.type-38"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18089)*





___
<a id="opsworks.resources.layer.properties-20.volumeconfigurations.updatetype-116"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18090)*





___

___

___

___
<a id="opsworks.resources.stack"></a>

###  Stack

** Stack**:  *`object`* 

*Defined in [spec/spec.ts:18095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18095)*




<a id="opsworks.resources.stack.documentation-138"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html"

*Defined in [spec/spec.ts:18096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18096)*





___
<a id="opsworks.resources.stack.name-25"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Stack"

*Defined in [spec/spec.ts:18259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18259)*





___
<a id="opsworks.resources.stack.properties-21"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18097)*




<a id="opsworks.resources.stack.properties-21.agentversion-1"></a>

###  AgentVersion

** AgentVersion**:  *`object`* 

*Defined in [spec/spec.ts:18098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18098)*




<a id="opsworks.resources.stack.properties-21.agentversion-1.documentation-139"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-agentversion"

*Defined in [spec/spec.ts:18099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18099)*





___
<a id="opsworks.resources.stack.properties-21.agentversion-1.primitivetype-87"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18100)*





___
<a id="opsworks.resources.stack.properties-21.agentversion-1.required-117"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18101)*





___
<a id="opsworks.resources.stack.properties-21.agentversion-1.updatetype-117"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18102)*





___

___
<a id="opsworks.resources.stack.properties-21.attributes-3"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:18104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18104)*




<a id="opsworks.resources.stack.properties-21.attributes-3.documentation-140"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-attributes"

*Defined in [spec/spec.ts:18105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18105)*





___
<a id="opsworks.resources.stack.properties-21.attributes-3.duplicatesallowed-25"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18106)*





___
<a id="opsworks.resources.stack.properties-21.attributes-3.primitiveitemtype-20"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18107)*





___
<a id="opsworks.resources.stack.properties-21.attributes-3.required-118"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18108)*





___
<a id="opsworks.resources.stack.properties-21.attributes-3.type-39"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:18109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18109)*





___
<a id="opsworks.resources.stack.properties-21.attributes-3.updatetype-118"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18110)*





___

___
<a id="opsworks.resources.stack.properties-21.chefconfiguration-1"></a>

###  ChefConfiguration

** ChefConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:18112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18112)*




<a id="opsworks.resources.stack.properties-21.chefconfiguration-1.documentation-141"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-chefconfiguration"

*Defined in [spec/spec.ts:18113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18113)*





___
<a id="opsworks.resources.stack.properties-21.chefconfiguration-1.required-119"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18114)*





___
<a id="opsworks.resources.stack.properties-21.chefconfiguration-1.type-40"></a>

###  Type

**●  Type**:  *`string`*  = "ChefConfiguration"

*Defined in [spec/spec.ts:18115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18115)*





___
<a id="opsworks.resources.stack.properties-21.chefconfiguration-1.updatetype-119"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18116)*





___

___
<a id="opsworks.resources.stack.properties-21.cloneappids"></a>

###  CloneAppIds

** CloneAppIds**:  *`object`* 

*Defined in [spec/spec.ts:18118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18118)*




<a id="opsworks.resources.stack.properties-21.cloneappids.documentation-142"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-cloneappids"

*Defined in [spec/spec.ts:18119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18119)*





___
<a id="opsworks.resources.stack.properties-21.cloneappids.duplicatesallowed-26"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18120)*





___
<a id="opsworks.resources.stack.properties-21.cloneappids.primitiveitemtype-21"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18121)*





___
<a id="opsworks.resources.stack.properties-21.cloneappids.required-120"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18122)*





___
<a id="opsworks.resources.stack.properties-21.cloneappids.type-41"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18123)*





___
<a id="opsworks.resources.stack.properties-21.cloneappids.updatetype-120"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18124)*





___

___
<a id="opsworks.resources.stack.properties-21.clonepermissions"></a>

###  ClonePermissions

** ClonePermissions**:  *`object`* 

*Defined in [spec/spec.ts:18126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18126)*




<a id="opsworks.resources.stack.properties-21.clonepermissions.documentation-143"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-clonepermissions"

*Defined in [spec/spec.ts:18127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18127)*





___
<a id="opsworks.resources.stack.properties-21.clonepermissions.primitivetype-88"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18128)*





___
<a id="opsworks.resources.stack.properties-21.clonepermissions.required-121"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18129)*





___
<a id="opsworks.resources.stack.properties-21.clonepermissions.updatetype-121"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18130)*





___

___
<a id="opsworks.resources.stack.properties-21.configurationmanager"></a>

###  ConfigurationManager

** ConfigurationManager**:  *`object`* 

*Defined in [spec/spec.ts:18132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18132)*




<a id="opsworks.resources.stack.properties-21.configurationmanager.documentation-144"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-configmanager"

*Defined in [spec/spec.ts:18133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18133)*





___
<a id="opsworks.resources.stack.properties-21.configurationmanager.required-122"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18134)*





___
<a id="opsworks.resources.stack.properties-21.configurationmanager.type-42"></a>

###  Type

**●  Type**:  *`string`*  = "StackConfigurationManager"

*Defined in [spec/spec.ts:18135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18135)*





___
<a id="opsworks.resources.stack.properties-21.configurationmanager.updatetype-122"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18136)*





___

___
<a id="opsworks.resources.stack.properties-21.customcookbookssource"></a>

###  CustomCookbooksSource

** CustomCookbooksSource**:  *`object`* 

*Defined in [spec/spec.ts:18138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18138)*




<a id="opsworks.resources.stack.properties-21.customcookbookssource.documentation-145"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custcookbooksource"

*Defined in [spec/spec.ts:18139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18139)*





___
<a id="opsworks.resources.stack.properties-21.customcookbookssource.required-123"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18140)*





___
<a id="opsworks.resources.stack.properties-21.customcookbookssource.type-43"></a>

###  Type

**●  Type**:  *`string`*  = "Source"

*Defined in [spec/spec.ts:18141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18141)*





___
<a id="opsworks.resources.stack.properties-21.customcookbookssource.updatetype-123"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18142)*





___

___
<a id="opsworks.resources.stack.properties-21.customjson-1"></a>

###  CustomJson

** CustomJson**:  *`object`* 

*Defined in [spec/spec.ts:18144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18144)*




<a id="opsworks.resources.stack.properties-21.customjson-1.documentation-146"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-custjson"

*Defined in [spec/spec.ts:18145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18145)*





___
<a id="opsworks.resources.stack.properties-21.customjson-1.primitivetype-89"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:18146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18146)*





___
<a id="opsworks.resources.stack.properties-21.customjson-1.required-124"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18147)*





___
<a id="opsworks.resources.stack.properties-21.customjson-1.updatetype-124"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18148)*





___

___
<a id="opsworks.resources.stack.properties-21.defaultavailabilityzone"></a>

###  DefaultAvailabilityZone

** DefaultAvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:18150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18150)*




<a id="opsworks.resources.stack.properties-21.defaultavailabilityzone.documentation-147"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultaz"

*Defined in [spec/spec.ts:18151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18151)*





___
<a id="opsworks.resources.stack.properties-21.defaultavailabilityzone.primitivetype-90"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18152)*





___
<a id="opsworks.resources.stack.properties-21.defaultavailabilityzone.required-125"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18153)*





___
<a id="opsworks.resources.stack.properties-21.defaultavailabilityzone.updatetype-125"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18154)*





___

___
<a id="opsworks.resources.stack.properties-21.defaultinstanceprofilearn"></a>

###  DefaultInstanceProfileArn

** DefaultInstanceProfileArn**:  *`object`* 

*Defined in [spec/spec.ts:18156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18156)*




<a id="opsworks.resources.stack.properties-21.defaultinstanceprofilearn.documentation-148"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultinstanceprof"

*Defined in [spec/spec.ts:18157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18157)*





___
<a id="opsworks.resources.stack.properties-21.defaultinstanceprofilearn.primitivetype-91"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18158)*





___
<a id="opsworks.resources.stack.properties-21.defaultinstanceprofilearn.required-126"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18159)*





___
<a id="opsworks.resources.stack.properties-21.defaultinstanceprofilearn.updatetype-126"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18160)*





___

___
<a id="opsworks.resources.stack.properties-21.defaultos"></a>

###  DefaultOs

** DefaultOs**:  *`object`* 

*Defined in [spec/spec.ts:18162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18162)*




<a id="opsworks.resources.stack.properties-21.defaultos.documentation-149"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultos"

*Defined in [spec/spec.ts:18163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18163)*





___
<a id="opsworks.resources.stack.properties-21.defaultos.primitivetype-92"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18164)*





___
<a id="opsworks.resources.stack.properties-21.defaultos.required-127"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18165)*





___
<a id="opsworks.resources.stack.properties-21.defaultos.updatetype-127"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18166)*





___

___
<a id="opsworks.resources.stack.properties-21.defaultrootdevicetype"></a>

###  DefaultRootDeviceType

** DefaultRootDeviceType**:  *`object`* 

*Defined in [spec/spec.ts:18168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18168)*




<a id="opsworks.resources.stack.properties-21.defaultrootdevicetype.documentation-150"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultrootdevicetype"

*Defined in [spec/spec.ts:18169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18169)*





___
<a id="opsworks.resources.stack.properties-21.defaultrootdevicetype.primitivetype-93"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18170)*





___
<a id="opsworks.resources.stack.properties-21.defaultrootdevicetype.required-128"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18171)*





___
<a id="opsworks.resources.stack.properties-21.defaultrootdevicetype.updatetype-128"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18172)*





___

___
<a id="opsworks.resources.stack.properties-21.defaultsshkeyname"></a>

###  DefaultSshKeyName

** DefaultSshKeyName**:  *`object`* 

*Defined in [spec/spec.ts:18174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18174)*




<a id="opsworks.resources.stack.properties-21.defaultsshkeyname.documentation-151"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-defaultsshkeyname"

*Defined in [spec/spec.ts:18175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18175)*





___
<a id="opsworks.resources.stack.properties-21.defaultsshkeyname.primitivetype-94"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18176)*





___
<a id="opsworks.resources.stack.properties-21.defaultsshkeyname.required-129"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18177)*





___
<a id="opsworks.resources.stack.properties-21.defaultsshkeyname.updatetype-129"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18178)*





___

___
<a id="opsworks.resources.stack.properties-21.defaultsubnetid"></a>

###  DefaultSubnetId

** DefaultSubnetId**:  *`object`* 

*Defined in [spec/spec.ts:18180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18180)*




<a id="opsworks.resources.stack.properties-21.defaultsubnetid.documentation-152"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#defaultsubnet"

*Defined in [spec/spec.ts:18181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18181)*





___
<a id="opsworks.resources.stack.properties-21.defaultsubnetid.primitivetype-95"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18182)*





___
<a id="opsworks.resources.stack.properties-21.defaultsubnetid.required-130"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18183)*





___
<a id="opsworks.resources.stack.properties-21.defaultsubnetid.updatetype-130"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18184)*





___

___
<a id="opsworks.resources.stack.properties-21.ecsclusterarn"></a>

###  EcsClusterArn

** EcsClusterArn**:  *`object`* 

*Defined in [spec/spec.ts:18186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18186)*




<a id="opsworks.resources.stack.properties-21.ecsclusterarn.documentation-153"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-ecsclusterarn"

*Defined in [spec/spec.ts:18187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18187)*





___
<a id="opsworks.resources.stack.properties-21.ecsclusterarn.primitivetype-96"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18188)*





___
<a id="opsworks.resources.stack.properties-21.ecsclusterarn.required-131"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18189)*





___
<a id="opsworks.resources.stack.properties-21.ecsclusterarn.updatetype-131"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18190)*





___

___
<a id="opsworks.resources.stack.properties-21.elasticips-1"></a>

###  ElasticIps

** ElasticIps**:  *`object`* 

*Defined in [spec/spec.ts:18192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18192)*




<a id="opsworks.resources.stack.properties-21.elasticips-1.documentation-154"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-elasticips"

*Defined in [spec/spec.ts:18193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18193)*





___
<a id="opsworks.resources.stack.properties-21.elasticips-1.duplicatesallowed-27"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18194)*





___
<a id="opsworks.resources.stack.properties-21.elasticips-1.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ElasticIp"

*Defined in [spec/spec.ts:18195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18195)*





___
<a id="opsworks.resources.stack.properties-21.elasticips-1.required-132"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18196)*





___
<a id="opsworks.resources.stack.properties-21.elasticips-1.type-44"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18197)*





___
<a id="opsworks.resources.stack.properties-21.elasticips-1.updatetype-132"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18198)*





___

___
<a id="opsworks.resources.stack.properties-21.hostnametheme"></a>

###  HostnameTheme

** HostnameTheme**:  *`object`* 

*Defined in [spec/spec.ts:18200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18200)*




<a id="opsworks.resources.stack.properties-21.hostnametheme.documentation-155"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-hostnametheme"

*Defined in [spec/spec.ts:18201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18201)*





___
<a id="opsworks.resources.stack.properties-21.hostnametheme.primitivetype-97"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18202)*





___
<a id="opsworks.resources.stack.properties-21.hostnametheme.required-133"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18203](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18203)*





___
<a id="opsworks.resources.stack.properties-21.hostnametheme.updatetype-133"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18204)*





___

___
<a id="opsworks.resources.stack.properties-21.name-26"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:18206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18206)*




<a id="opsworks.resources.stack.properties-21.name-26.documentation-156"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-name"

*Defined in [spec/spec.ts:18207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18207)*





___
<a id="opsworks.resources.stack.properties-21.name-26.primitivetype-98"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18208)*





___
<a id="opsworks.resources.stack.properties-21.name-26.required-134"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18209)*





___
<a id="opsworks.resources.stack.properties-21.name-26.updatetype-134"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18210)*





___

___
<a id="opsworks.resources.stack.properties-21.rdsdbinstances"></a>

###  RdsDbInstances

** RdsDbInstances**:  *`object`* 

*Defined in [spec/spec.ts:18212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18212)*




<a id="opsworks.resources.stack.properties-21.rdsdbinstances.documentation-157"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-rdsdbinstances"

*Defined in [spec/spec.ts:18213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18213)*





___
<a id="opsworks.resources.stack.properties-21.rdsdbinstances.duplicatesallowed-28"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18214)*





___
<a id="opsworks.resources.stack.properties-21.rdsdbinstances.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "RdsDbInstance"

*Defined in [spec/spec.ts:18215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18215)*





___
<a id="opsworks.resources.stack.properties-21.rdsdbinstances.required-135"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18216)*





___
<a id="opsworks.resources.stack.properties-21.rdsdbinstances.type-45"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18217)*





___
<a id="opsworks.resources.stack.properties-21.rdsdbinstances.updatetype-135"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18218)*





___

___
<a id="opsworks.resources.stack.properties-21.servicerolearn"></a>

###  ServiceRoleArn

** ServiceRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:18220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18220)*




<a id="opsworks.resources.stack.properties-21.servicerolearn.documentation-158"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-servicerolearn"

*Defined in [spec/spec.ts:18221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18221)*





___
<a id="opsworks.resources.stack.properties-21.servicerolearn.primitivetype-99"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18222)*





___
<a id="opsworks.resources.stack.properties-21.servicerolearn.required-136"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18223)*





___
<a id="opsworks.resources.stack.properties-21.servicerolearn.updatetype-136"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18224)*





___

___
<a id="opsworks.resources.stack.properties-21.sourcestackid"></a>

###  SourceStackId

** SourceStackId**:  *`object`* 

*Defined in [spec/spec.ts:18226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18226)*




<a id="opsworks.resources.stack.properties-21.sourcestackid.documentation-159"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-sourcestackid"

*Defined in [spec/spec.ts:18227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18227)*





___
<a id="opsworks.resources.stack.properties-21.sourcestackid.primitivetype-100"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18228)*





___
<a id="opsworks.resources.stack.properties-21.sourcestackid.required-137"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18229)*





___
<a id="opsworks.resources.stack.properties-21.sourcestackid.updatetype-137"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18230)*





___

___
<a id="opsworks.resources.stack.properties-21.tags-1"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:18232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18232)*




<a id="opsworks.resources.stack.properties-21.tags-1.documentation-160"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-tags"

*Defined in [spec/spec.ts:18233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18233)*





___
<a id="opsworks.resources.stack.properties-21.tags-1.duplicatesallowed-29"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18234)*





___
<a id="opsworks.resources.stack.properties-21.tags-1.itemtype-7"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:18235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18235)*





___
<a id="opsworks.resources.stack.properties-21.tags-1.required-138"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18236)*





___
<a id="opsworks.resources.stack.properties-21.tags-1.type-46"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18237)*





___
<a id="opsworks.resources.stack.properties-21.tags-1.updatetype-138"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18238)*





___

___
<a id="opsworks.resources.stack.properties-21.usecustomcookbooks"></a>

###  UseCustomCookbooks

** UseCustomCookbooks**:  *`object`* 

*Defined in [spec/spec.ts:18240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18240)*




<a id="opsworks.resources.stack.properties-21.usecustomcookbooks.documentation-161"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#usecustcookbooks"

*Defined in [spec/spec.ts:18241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18241)*





___
<a id="opsworks.resources.stack.properties-21.usecustomcookbooks.primitivetype-101"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18242)*





___
<a id="opsworks.resources.stack.properties-21.usecustomcookbooks.required-139"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18243)*





___
<a id="opsworks.resources.stack.properties-21.usecustomcookbooks.updatetype-139"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18244)*





___

___
<a id="opsworks.resources.stack.properties-21.useopsworkssecuritygroups"></a>

###  UseOpsworksSecurityGroups

** UseOpsworksSecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:18246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18246)*




<a id="opsworks.resources.stack.properties-21.useopsworkssecuritygroups.documentation-162"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-useopsworkssecuritygroups"

*Defined in [spec/spec.ts:18247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18247)*





___
<a id="opsworks.resources.stack.properties-21.useopsworkssecuritygroups.primitivetype-102"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18248)*





___
<a id="opsworks.resources.stack.properties-21.useopsworkssecuritygroups.required-140"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18249)*





___
<a id="opsworks.resources.stack.properties-21.useopsworkssecuritygroups.updatetype-140"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18250)*





___

___
<a id="opsworks.resources.stack.properties-21.vpcid"></a>

###  VpcId

** VpcId**:  *`object`* 

*Defined in [spec/spec.ts:18252](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18252)*




<a id="opsworks.resources.stack.properties-21.vpcid.documentation-163"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-stack.html#cfn-opsworks-stack-vpcid"

*Defined in [spec/spec.ts:18253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18253)*





___
<a id="opsworks.resources.stack.properties-21.vpcid.primitivetype-103"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18254)*





___
<a id="opsworks.resources.stack.properties-21.vpcid.required-141"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18255)*





___
<a id="opsworks.resources.stack.properties-21.vpcid.updatetype-141"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18256)*





___

___

___

___
<a id="opsworks.resources.userprofile"></a>

###  UserProfile

** UserProfile**:  *`object`* 

*Defined in [spec/spec.ts:18261](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18261)*




<a id="opsworks.resources.userprofile.documentation-164"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html"

*Defined in [spec/spec.ts:18267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18267)*





___
<a id="opsworks.resources.userprofile.name-27"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::UserProfile"

*Defined in [spec/spec.ts:18294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18294)*





___
<a id="opsworks.resources.userprofile.attributes-4"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:18262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18262)*




<a id="opsworks.resources.userprofile.attributes-4.sshusername"></a>

###  SshUsername

** SshUsername**:  *`object`* 

*Defined in [spec/spec.ts:18263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18263)*




<a id="opsworks.resources.userprofile.attributes-4.sshusername.primitivetype-104"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18264)*





___

___

___
<a id="opsworks.resources.userprofile.properties-22"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18268)*




<a id="opsworks.resources.userprofile.properties-22.allowselfmanagement"></a>

###  AllowSelfManagement

** AllowSelfManagement**:  *`object`* 

*Defined in [spec/spec.ts:18269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18269)*




<a id="opsworks.resources.userprofile.properties-22.allowselfmanagement.documentation-165"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-allowselfmanagement"

*Defined in [spec/spec.ts:18270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18270)*





___
<a id="opsworks.resources.userprofile.properties-22.allowselfmanagement.primitivetype-105"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18271)*





___
<a id="opsworks.resources.userprofile.properties-22.allowselfmanagement.required-142"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18272)*





___
<a id="opsworks.resources.userprofile.properties-22.allowselfmanagement.updatetype-142"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18273)*





___

___
<a id="opsworks.resources.userprofile.properties-22.iamuserarn"></a>

###  IamUserArn

** IamUserArn**:  *`object`* 

*Defined in [spec/spec.ts:18275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18275)*




<a id="opsworks.resources.userprofile.properties-22.iamuserarn.documentation-166"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-iamuserarn"

*Defined in [spec/spec.ts:18276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18276)*





___
<a id="opsworks.resources.userprofile.properties-22.iamuserarn.primitivetype-106"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18277)*





___
<a id="opsworks.resources.userprofile.properties-22.iamuserarn.required-143"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18278)*





___
<a id="opsworks.resources.userprofile.properties-22.iamuserarn.updatetype-143"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18279](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18279)*





___

___
<a id="opsworks.resources.userprofile.properties-22.sshpublickey"></a>

###  SshPublicKey

** SshPublicKey**:  *`object`* 

*Defined in [spec/spec.ts:18281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18281)*




<a id="opsworks.resources.userprofile.properties-22.sshpublickey.documentation-167"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshpublickey"

*Defined in [spec/spec.ts:18282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18282)*





___
<a id="opsworks.resources.userprofile.properties-22.sshpublickey.primitivetype-107"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18283)*





___
<a id="opsworks.resources.userprofile.properties-22.sshpublickey.required-144"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18284)*





___
<a id="opsworks.resources.userprofile.properties-22.sshpublickey.updatetype-144"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18285)*





___

___
<a id="opsworks.resources.userprofile.properties-22.sshusername-1"></a>

###  SshUsername

** SshUsername**:  *`object`* 

*Defined in [spec/spec.ts:18287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18287)*




<a id="opsworks.resources.userprofile.properties-22.sshusername-1.documentation-168"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-userprofile.html#cfn-opsworks-userprofile-sshusername"

*Defined in [spec/spec.ts:18288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18288)*





___
<a id="opsworks.resources.userprofile.properties-22.sshusername-1.primitivetype-108"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18289)*





___
<a id="opsworks.resources.userprofile.properties-22.sshusername-1.required-145"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18290)*





___
<a id="opsworks.resources.userprofile.properties-22.sshusername-1.updatetype-145"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18291)*





___

___

___

___
<a id="opsworks.resources.volume"></a>

###  Volume

** Volume**:  *`object`* 

*Defined in [spec/spec.ts:18296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18296)*




<a id="opsworks.resources.volume.documentation-169"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html"

*Defined in [spec/spec.ts:18297](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18297)*





___
<a id="opsworks.resources.volume.name-28"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::OpsWorks::Volume"

*Defined in [spec/spec.ts:18324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18324)*





___
<a id="opsworks.resources.volume.properties-23"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18298)*




<a id="opsworks.resources.volume.properties-23.ec2volumeid"></a>

###  Ec2VolumeId

** Ec2VolumeId**:  *`object`* 

*Defined in [spec/spec.ts:18299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18299)*




<a id="opsworks.resources.volume.properties-23.ec2volumeid.documentation-170"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-ec2volumeid"

*Defined in [spec/spec.ts:18300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18300)*





___
<a id="opsworks.resources.volume.properties-23.ec2volumeid.primitivetype-109"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18301)*





___
<a id="opsworks.resources.volume.properties-23.ec2volumeid.required-146"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18302)*





___
<a id="opsworks.resources.volume.properties-23.ec2volumeid.updatetype-146"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18303)*





___

___
<a id="opsworks.resources.volume.properties-23.mountpoint-1"></a>

###  MountPoint

** MountPoint**:  *`object`* 

*Defined in [spec/spec.ts:18305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18305)*




<a id="opsworks.resources.volume.properties-23.mountpoint-1.documentation-171"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-mountpoint"

*Defined in [spec/spec.ts:18306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18306)*





___
<a id="opsworks.resources.volume.properties-23.mountpoint-1.primitivetype-110"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18307)*





___
<a id="opsworks.resources.volume.properties-23.mountpoint-1.required-147"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18308)*





___
<a id="opsworks.resources.volume.properties-23.mountpoint-1.updatetype-147"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18309](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18309)*





___

___
<a id="opsworks.resources.volume.properties-23.name-29"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:18311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18311)*




<a id="opsworks.resources.volume.properties-23.name-29.documentation-172"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-name"

*Defined in [spec/spec.ts:18312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18312)*





___
<a id="opsworks.resources.volume.properties-23.name-29.primitivetype-111"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18313)*





___
<a id="opsworks.resources.volume.properties-23.name-29.required-148"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18314)*





___
<a id="opsworks.resources.volume.properties-23.name-29.updatetype-148"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18315)*





___

___
<a id="opsworks.resources.volume.properties-23.stackid-3"></a>

###  StackId

** StackId**:  *`object`* 

*Defined in [spec/spec.ts:18317](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18317)*




<a id="opsworks.resources.volume.properties-23.stackid-3.documentation-173"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworks-volume.html#cfn-opsworks-volume-stackid"

*Defined in [spec/spec.ts:18318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18318)*





___
<a id="opsworks.resources.volume.properties-23.stackid-3.primitivetype-112"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18319)*





___
<a id="opsworks.resources.volume.properties-23.stackid-3.required-149"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18320)*





___
<a id="opsworks.resources.volume.properties-23.stackid-3.updatetype-149"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18321)*





___

___

___

___

___

<a id="pseudo"></a>

## Object literal: Pseudo


Strings constants that map to CloudFormation pseudoparameter Pseudo.AWS_ACCOUNT_ID Pseudo.AWS_NOTIFICATION_ARNS Pseudo.AWS_NO_VALUE Pseudo.AWS_REGION Pseudo.AWS_STACK_ID Pseudo.AWS_STACK_NAME


<a id="pseudo.aws_account_id"></a>

###  AWS_ACCOUNT_ID

**●  AWS_ACCOUNT_ID**:  *`string`*  = "AWS::AccountId"

*Defined in [pseudo.ts:11](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/pseudo.ts#L11)*





___
<a id="pseudo.aws_notification_arns"></a>

###  AWS_NOTIFICATION_ARNS

**●  AWS_NOTIFICATION_ARNS**:  *`string`*  = "AWS::NotificationARNs"

*Defined in [pseudo.ts:12](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/pseudo.ts#L12)*





___
<a id="pseudo.aws_no_value"></a>

###  AWS_NO_VALUE

**●  AWS_NO_VALUE**:  *`string`*  = "AWS::NoValue"

*Defined in [pseudo.ts:13](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/pseudo.ts#L13)*





___
<a id="pseudo.aws_region"></a>

###  AWS_REGION

**●  AWS_REGION**:  *`string`*  = "AWS::Region"

*Defined in [pseudo.ts:14](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/pseudo.ts#L14)*





___
<a id="pseudo.aws_stack_id"></a>

###  AWS_STACK_ID

**●  AWS_STACK_ID**:  *`string`*  = "AWS::StackId"

*Defined in [pseudo.ts:15](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/pseudo.ts#L15)*





___
<a id="pseudo.aws_stack_name"></a>

###  AWS_STACK_NAME

**●  AWS_STACK_NAME**:  *`string`*  = "AWS::StackName"

*Defined in [pseudo.ts:16](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/pseudo.ts#L16)*





___

<a id="rds"></a>

## Object literal: RDS


<a id="rds.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:19466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19466)*




<a id="rds.models.ingress"></a>

###  Ingress

** Ingress**:  *`object`* 

*Defined in [spec/spec.ts:19467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19467)*




<a id="rds.models.ingress.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group-rule.html"

*Defined in [spec/spec.ts:19468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19468)*





___
<a id="rds.models.ingress.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBSecurityGroup.Ingress"

*Defined in [spec/spec.ts:19495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19495)*





___
<a id="rds.models.ingress.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19469)*




<a id="rds.models.ingress.properties.cidrip"></a>

###  CIDRIP

** CIDRIP**:  *`object`* 

*Defined in [spec/spec.ts:19470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19470)*




<a id="rds.models.ingress.properties.cidrip.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group-rule.html#cfn-rds-securitygroup-cidrip"

*Defined in [spec/spec.ts:19471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19471)*





___
<a id="rds.models.ingress.properties.cidrip.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19472)*





___
<a id="rds.models.ingress.properties.cidrip.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19473)*





___
<a id="rds.models.ingress.properties.cidrip.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19474](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19474)*





___

___
<a id="rds.models.ingress.properties.ec2securitygroupid"></a>

###  EC2SecurityGroupId

** EC2SecurityGroupId**:  *`object`* 

*Defined in [spec/spec.ts:19476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19476)*




<a id="rds.models.ingress.properties.ec2securitygroupid.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group-rule.html#cfn-rds-securitygroup-ec2securitygroupid"

*Defined in [spec/spec.ts:19477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19477)*





___
<a id="rds.models.ingress.properties.ec2securitygroupid.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19478)*





___
<a id="rds.models.ingress.properties.ec2securitygroupid.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19479)*





___
<a id="rds.models.ingress.properties.ec2securitygroupid.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19480)*





___

___
<a id="rds.models.ingress.properties.ec2securitygroupname"></a>

###  EC2SecurityGroupName

** EC2SecurityGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19482](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19482)*




<a id="rds.models.ingress.properties.ec2securitygroupname.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group-rule.html#cfn-rds-securitygroup-ec2securitygroupname"

*Defined in [spec/spec.ts:19483](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19483)*





___
<a id="rds.models.ingress.properties.ec2securitygroupname.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19484)*





___
<a id="rds.models.ingress.properties.ec2securitygroupname.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19485](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19485)*





___
<a id="rds.models.ingress.properties.ec2securitygroupname.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19486)*





___

___
<a id="rds.models.ingress.properties.ec2securitygroupownerid"></a>

###  EC2SecurityGroupOwnerId

** EC2SecurityGroupOwnerId**:  *`object`* 

*Defined in [spec/spec.ts:19488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19488)*




<a id="rds.models.ingress.properties.ec2securitygroupownerid.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group-rule.html#cfn-rds-securitygroup-ec2securitygroupownerid"

*Defined in [spec/spec.ts:19489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19489)*





___
<a id="rds.models.ingress.properties.ec2securitygroupownerid.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19490)*





___
<a id="rds.models.ingress.properties.ec2securitygroupownerid.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19491)*





___
<a id="rds.models.ingress.properties.ec2securitygroupownerid.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19492)*





___

___

___

___
<a id="rds.models.optionconfiguration"></a>

###  OptionConfiguration

** OptionConfiguration**:  *`object`* 

*Defined in [spec/spec.ts:19497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19497)*




<a id="rds.models.optionconfiguration.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations.html"

*Defined in [spec/spec.ts:19498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19498)*





___
<a id="rds.models.optionconfiguration.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::OptionGroup.OptionConfiguration"

*Defined in [spec/spec.ts:19541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19541)*





___
<a id="rds.models.optionconfiguration.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19499)*




<a id="rds.models.optionconfiguration.properties-1.dbsecuritygroupmemberships"></a>

###  DBSecurityGroupMemberships

** DBSecurityGroupMemberships**:  *`object`* 

*Defined in [spec/spec.ts:19500](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19500)*




<a id="rds.models.optionconfiguration.properties-1.dbsecuritygroupmemberships.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations.html#cfn-rds-optiongroup-optionconfigurations-dbsecuritygroupmemberships"

*Defined in [spec/spec.ts:19501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19501)*





___
<a id="rds.models.optionconfiguration.properties-1.dbsecuritygroupmemberships.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19502)*





___
<a id="rds.models.optionconfiguration.properties-1.dbsecuritygroupmemberships.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19503)*





___
<a id="rds.models.optionconfiguration.properties-1.dbsecuritygroupmemberships.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19504)*





___
<a id="rds.models.optionconfiguration.properties-1.dbsecuritygroupmemberships.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19505)*





___
<a id="rds.models.optionconfiguration.properties-1.dbsecuritygroupmemberships.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19506](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19506)*





___

___
<a id="rds.models.optionconfiguration.properties-1.optionname"></a>

###  OptionName

** OptionName**:  *`object`* 

*Defined in [spec/spec.ts:19508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19508)*




<a id="rds.models.optionconfiguration.properties-1.optionname.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations.html#cfn-rds-optiongroup-optionconfigurations-optionname"

*Defined in [spec/spec.ts:19509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19509)*





___
<a id="rds.models.optionconfiguration.properties-1.optionname.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19510)*





___
<a id="rds.models.optionconfiguration.properties-1.optionname.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19511)*





___
<a id="rds.models.optionconfiguration.properties-1.optionname.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19512)*





___

___
<a id="rds.models.optionconfiguration.properties-1.optionsettings"></a>

###  OptionSettings

** OptionSettings**:  *`object`* 

*Defined in [spec/spec.ts:19514](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19514)*




<a id="rds.models.optionconfiguration.properties-1.optionsettings.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations.html#cfn-rds-optiongroup-optionconfigurations-optionsettings"

*Defined in [spec/spec.ts:19515](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19515)*





___
<a id="rds.models.optionconfiguration.properties-1.optionsettings.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19516)*





___
<a id="rds.models.optionconfiguration.properties-1.optionsettings.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "OptionSetting"

*Defined in [spec/spec.ts:19517](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19517)*





___
<a id="rds.models.optionconfiguration.properties-1.optionsettings.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19518)*





___

___
<a id="rds.models.optionconfiguration.properties-1.optionversion"></a>

###  OptionVersion

** OptionVersion**:  *`object`* 

*Defined in [spec/spec.ts:19520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19520)*




<a id="rds.models.optionconfiguration.properties-1.optionversion.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations.html#cfn-rds-optiongroup-optionconfiguration-optionversion"

*Defined in [spec/spec.ts:19521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19521)*





___
<a id="rds.models.optionconfiguration.properties-1.optionversion.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19522)*





___
<a id="rds.models.optionconfiguration.properties-1.optionversion.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19523)*





___
<a id="rds.models.optionconfiguration.properties-1.optionversion.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19524)*





___

___
<a id="rds.models.optionconfiguration.properties-1.port"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:19526](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19526)*




<a id="rds.models.optionconfiguration.properties-1.port.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations.html#cfn-rds-optiongroup-optionconfigurations-port"

*Defined in [spec/spec.ts:19527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19527)*





___
<a id="rds.models.optionconfiguration.properties-1.port.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:19528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19528)*





___
<a id="rds.models.optionconfiguration.properties-1.port.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19529)*





___
<a id="rds.models.optionconfiguration.properties-1.port.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19530)*





___

___
<a id="rds.models.optionconfiguration.properties-1.vpcsecuritygroupmemberships"></a>

###  VpcSecurityGroupMemberships

** VpcSecurityGroupMemberships**:  *`object`* 

*Defined in [spec/spec.ts:19532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19532)*




<a id="rds.models.optionconfiguration.properties-1.vpcsecuritygroupmemberships.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations.html#cfn-rds-optiongroup-optionconfigurations-vpcsecuritygroupmemberships"

*Defined in [spec/spec.ts:19533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19533)*





___
<a id="rds.models.optionconfiguration.properties-1.vpcsecuritygroupmemberships.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19534](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19534)*





___
<a id="rds.models.optionconfiguration.properties-1.vpcsecuritygroupmemberships.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19535](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19535)*





___
<a id="rds.models.optionconfiguration.properties-1.vpcsecuritygroupmemberships.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19536)*





___
<a id="rds.models.optionconfiguration.properties-1.vpcsecuritygroupmemberships.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19537](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19537)*





___
<a id="rds.models.optionconfiguration.properties-1.vpcsecuritygroupmemberships.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19538](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19538)*





___

___

___

___
<a id="rds.models.optionsetting"></a>

###  OptionSetting

** OptionSetting**:  *`object`* 

*Defined in [spec/spec.ts:19543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19543)*




<a id="rds.models.optionsetting.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations-optionsettings.html"

*Defined in [spec/spec.ts:19544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19544)*





___
<a id="rds.models.optionsetting.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::OptionGroup.OptionSetting"

*Defined in [spec/spec.ts:19559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19559)*





___
<a id="rds.models.optionsetting.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19545)*




<a id="rds.models.optionsetting.properties-2.name-3"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:19546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19546)*




<a id="rds.models.optionsetting.properties-2.name-3.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations-optionsettings.html#cfn-rds-optiongroup-optionconfigurations-optionsettings-name"

*Defined in [spec/spec.ts:19547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19547)*





___
<a id="rds.models.optionsetting.properties-2.name-3.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19548](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19548)*





___
<a id="rds.models.optionsetting.properties-2.name-3.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19549)*





___
<a id="rds.models.optionsetting.properties-2.name-3.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19550)*





___

___
<a id="rds.models.optionsetting.properties-2.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:19552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19552)*




<a id="rds.models.optionsetting.properties-2.value.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionconfigurations-optionsettings.html#cfn-rds-optiongroup-optionconfigurations-optionsettings-value"

*Defined in [spec/spec.ts:19553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19553)*





___
<a id="rds.models.optionsetting.properties-2.value.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19554](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19554)*





___
<a id="rds.models.optionsetting.properties-2.value.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19555)*





___
<a id="rds.models.optionsetting.properties-2.value.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19556)*





___

___

___

___

___
<a id="rds.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:18835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18835)*




<a id="rds.resources.dbcluster"></a>

###  DBCluster

** DBCluster**:  *`object`* 

*Defined in [spec/spec.ts:18836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18836)*




<a id="rds.resources.dbcluster.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html"

*Defined in [spec/spec.ts:18848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18848)*





___
<a id="rds.resources.dbcluster.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBCluster"

*Defined in [spec/spec.ts:18965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18965)*





___
<a id="rds.resources.dbcluster.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:18837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18837)*




<a id="rds.resources.dbcluster.attributes.endpoint_address"></a>

###  Endpoint.Address

** Endpoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:18838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18838)*




<a id="rds.resources.dbcluster.attributes.endpoint_address.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18839)*





___

___
<a id="rds.resources.dbcluster.attributes.endpoint_port"></a>

###  Endpoint.Port

** Endpoint.Port**:  *`object`* 

*Defined in [spec/spec.ts:18841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18841)*




<a id="rds.resources.dbcluster.attributes.endpoint_port.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18842)*





___

___
<a id="rds.resources.dbcluster.attributes.readendpoint_address"></a>

###  ReadEndpoint.Address

** ReadEndpoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:18844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18844)*




<a id="rds.resources.dbcluster.attributes.readendpoint_address.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18845)*





___

___

___
<a id="rds.resources.dbcluster.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18849)*




<a id="rds.resources.dbcluster.properties-3.availabilityzones"></a>

###  AvailabilityZones

** AvailabilityZones**:  *`object`* 

*Defined in [spec/spec.ts:18850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18850)*




<a id="rds.resources.dbcluster.properties-3.availabilityzones.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-availabilityzones"

*Defined in [spec/spec.ts:18851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18851)*





___
<a id="rds.resources.dbcluster.properties-3.availabilityzones.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18852)*





___
<a id="rds.resources.dbcluster.properties-3.availabilityzones.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18853)*





___
<a id="rds.resources.dbcluster.properties-3.availabilityzones.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18854)*





___
<a id="rds.resources.dbcluster.properties-3.availabilityzones.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18855)*





___
<a id="rds.resources.dbcluster.properties-3.availabilityzones.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18856)*





___

___
<a id="rds.resources.dbcluster.properties-3.backupretentionperiod"></a>

###  BackupRetentionPeriod

** BackupRetentionPeriod**:  *`object`* 

*Defined in [spec/spec.ts:18858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18858)*




<a id="rds.resources.dbcluster.properties-3.backupretentionperiod.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-backuprententionperiod"

*Defined in [spec/spec.ts:18859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18859)*





___
<a id="rds.resources.dbcluster.properties-3.backupretentionperiod.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18860)*





___
<a id="rds.resources.dbcluster.properties-3.backupretentionperiod.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18861)*





___
<a id="rds.resources.dbcluster.properties-3.backupretentionperiod.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18862)*





___

___
<a id="rds.resources.dbcluster.properties-3.dbclusterparametergroupname"></a>

###  DBClusterParameterGroupName

** DBClusterParameterGroupName**:  *`object`* 

*Defined in [spec/spec.ts:18864](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18864)*




<a id="rds.resources.dbcluster.properties-3.dbclusterparametergroupname.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbclusterparametergroupname"

*Defined in [spec/spec.ts:18865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18865)*





___
<a id="rds.resources.dbcluster.properties-3.dbclusterparametergroupname.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18866)*





___
<a id="rds.resources.dbcluster.properties-3.dbclusterparametergroupname.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18867)*





___
<a id="rds.resources.dbcluster.properties-3.dbclusterparametergroupname.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18868)*





___

___
<a id="rds.resources.dbcluster.properties-3.dbsubnetgroupname"></a>

###  DBSubnetGroupName

** DBSubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:18870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18870)*




<a id="rds.resources.dbcluster.properties-3.dbsubnetgroupname.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-dbsubnetgroupname"

*Defined in [spec/spec.ts:18871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18871)*





___
<a id="rds.resources.dbcluster.properties-3.dbsubnetgroupname.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18872)*





___
<a id="rds.resources.dbcluster.properties-3.dbsubnetgroupname.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18873)*





___
<a id="rds.resources.dbcluster.properties-3.dbsubnetgroupname.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18874)*





___

___
<a id="rds.resources.dbcluster.properties-3.databasename"></a>

###  DatabaseName

** DatabaseName**:  *`object`* 

*Defined in [spec/spec.ts:18876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18876)*




<a id="rds.resources.dbcluster.properties-3.databasename.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename"

*Defined in [spec/spec.ts:18877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18877)*





___
<a id="rds.resources.dbcluster.properties-3.databasename.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18878)*





___
<a id="rds.resources.dbcluster.properties-3.databasename.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18879)*





___
<a id="rds.resources.dbcluster.properties-3.databasename.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18880)*





___

___
<a id="rds.resources.dbcluster.properties-3.engine"></a>

###  Engine

** Engine**:  *`object`* 

*Defined in [spec/spec.ts:18882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18882)*




<a id="rds.resources.dbcluster.properties-3.engine.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engine"

*Defined in [spec/spec.ts:18883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18883)*





___
<a id="rds.resources.dbcluster.properties-3.engine.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18884)*





___
<a id="rds.resources.dbcluster.properties-3.engine.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18885)*





___
<a id="rds.resources.dbcluster.properties-3.engine.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18886)*





___

___
<a id="rds.resources.dbcluster.properties-3.engineversion"></a>

###  EngineVersion

** EngineVersion**:  *`object`* 

*Defined in [spec/spec.ts:18888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18888)*




<a id="rds.resources.dbcluster.properties-3.engineversion.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-engineversion"

*Defined in [spec/spec.ts:18889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18889)*





___
<a id="rds.resources.dbcluster.properties-3.engineversion.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18890)*





___
<a id="rds.resources.dbcluster.properties-3.engineversion.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18891)*





___
<a id="rds.resources.dbcluster.properties-3.engineversion.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18892)*





___

___
<a id="rds.resources.dbcluster.properties-3.kmskeyid"></a>

###  KmsKeyId

** KmsKeyId**:  *`object`* 

*Defined in [spec/spec.ts:18894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18894)*




<a id="rds.resources.dbcluster.properties-3.kmskeyid.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-kmskeyid"

*Defined in [spec/spec.ts:18895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18895)*





___
<a id="rds.resources.dbcluster.properties-3.kmskeyid.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18896)*





___
<a id="rds.resources.dbcluster.properties-3.kmskeyid.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18897)*





___
<a id="rds.resources.dbcluster.properties-3.kmskeyid.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18898)*





___

___
<a id="rds.resources.dbcluster.properties-3.masteruserpassword"></a>

###  MasterUserPassword

** MasterUserPassword**:  *`object`* 

*Defined in [spec/spec.ts:18900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18900)*




<a id="rds.resources.dbcluster.properties-3.masteruserpassword.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masteruserpassword"

*Defined in [spec/spec.ts:18901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18901)*





___
<a id="rds.resources.dbcluster.properties-3.masteruserpassword.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18902)*





___
<a id="rds.resources.dbcluster.properties-3.masteruserpassword.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18903)*





___
<a id="rds.resources.dbcluster.properties-3.masteruserpassword.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18904)*





___

___
<a id="rds.resources.dbcluster.properties-3.masterusername"></a>

###  MasterUsername

** MasterUsername**:  *`object`* 

*Defined in [spec/spec.ts:18906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18906)*




<a id="rds.resources.dbcluster.properties-3.masterusername.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-masterusername"

*Defined in [spec/spec.ts:18907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18907)*





___
<a id="rds.resources.dbcluster.properties-3.masterusername.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18908](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18908)*





___
<a id="rds.resources.dbcluster.properties-3.masterusername.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18909)*





___
<a id="rds.resources.dbcluster.properties-3.masterusername.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18910)*





___

___
<a id="rds.resources.dbcluster.properties-3.port-1"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:18912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18912)*




<a id="rds.resources.dbcluster.properties-3.port-1.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-port"

*Defined in [spec/spec.ts:18913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18913)*





___
<a id="rds.resources.dbcluster.properties-3.port-1.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:18914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18914)*





___
<a id="rds.resources.dbcluster.properties-3.port-1.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18915)*





___
<a id="rds.resources.dbcluster.properties-3.port-1.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18916)*





___

___
<a id="rds.resources.dbcluster.properties-3.preferredbackupwindow"></a>

###  PreferredBackupWindow

** PreferredBackupWindow**:  *`object`* 

*Defined in [spec/spec.ts:18918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18918)*




<a id="rds.resources.dbcluster.properties-3.preferredbackupwindow.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredbackupwindow"

*Defined in [spec/spec.ts:18919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18919)*





___
<a id="rds.resources.dbcluster.properties-3.preferredbackupwindow.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18920)*





___
<a id="rds.resources.dbcluster.properties-3.preferredbackupwindow.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18921)*





___
<a id="rds.resources.dbcluster.properties-3.preferredbackupwindow.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18922)*





___

___
<a id="rds.resources.dbcluster.properties-3.preferredmaintenancewindow"></a>

###  PreferredMaintenanceWindow

** PreferredMaintenanceWindow**:  *`object`* 

*Defined in [spec/spec.ts:18924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18924)*




<a id="rds.resources.dbcluster.properties-3.preferredmaintenancewindow.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-preferredmaintenancewindow"

*Defined in [spec/spec.ts:18925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18925)*





___
<a id="rds.resources.dbcluster.properties-3.preferredmaintenancewindow.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18926)*





___
<a id="rds.resources.dbcluster.properties-3.preferredmaintenancewindow.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18927)*





___
<a id="rds.resources.dbcluster.properties-3.preferredmaintenancewindow.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18928)*





___

___
<a id="rds.resources.dbcluster.properties-3.replicationsourceidentifier"></a>

###  ReplicationSourceIdentifier

** ReplicationSourceIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:18930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18930)*




<a id="rds.resources.dbcluster.properties-3.replicationsourceidentifier.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-replicationsourceidentifier"

*Defined in [spec/spec.ts:18931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18931)*





___
<a id="rds.resources.dbcluster.properties-3.replicationsourceidentifier.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18932)*





___
<a id="rds.resources.dbcluster.properties-3.replicationsourceidentifier.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18933)*





___
<a id="rds.resources.dbcluster.properties-3.replicationsourceidentifier.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18934)*





___

___
<a id="rds.resources.dbcluster.properties-3.snapshotidentifier"></a>

###  SnapshotIdentifier

** SnapshotIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:18936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18936)*




<a id="rds.resources.dbcluster.properties-3.snapshotidentifier.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-snapshotidentifier"

*Defined in [spec/spec.ts:18937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18937)*





___
<a id="rds.resources.dbcluster.properties-3.snapshotidentifier.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18938)*





___
<a id="rds.resources.dbcluster.properties-3.snapshotidentifier.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18939)*





___
<a id="rds.resources.dbcluster.properties-3.snapshotidentifier.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18940)*





___

___
<a id="rds.resources.dbcluster.properties-3.storageencrypted"></a>

###  StorageEncrypted

** StorageEncrypted**:  *`object`* 

*Defined in [spec/spec.ts:18942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18942)*




<a id="rds.resources.dbcluster.properties-3.storageencrypted.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-storageencrypted"

*Defined in [spec/spec.ts:18943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18943)*





___
<a id="rds.resources.dbcluster.properties-3.storageencrypted.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:18944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18944)*





___
<a id="rds.resources.dbcluster.properties-3.storageencrypted.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18945)*





___
<a id="rds.resources.dbcluster.properties-3.storageencrypted.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18946)*





___

___
<a id="rds.resources.dbcluster.properties-3.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:18948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18948)*




<a id="rds.resources.dbcluster.properties-3.tags.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-tags"

*Defined in [spec/spec.ts:18949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18949)*





___
<a id="rds.resources.dbcluster.properties-3.tags.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18950)*





___
<a id="rds.resources.dbcluster.properties-3.tags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:18951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18951)*





___
<a id="rds.resources.dbcluster.properties-3.tags.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18952)*





___
<a id="rds.resources.dbcluster.properties-3.tags.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18953)*





___
<a id="rds.resources.dbcluster.properties-3.tags.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18954)*





___

___
<a id="rds.resources.dbcluster.properties-3.vpcsecuritygroupids"></a>

###  VpcSecurityGroupIds

** VpcSecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:18956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18956)*




<a id="rds.resources.dbcluster.properties-3.vpcsecuritygroupids.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-vpcsecuritygroupids"

*Defined in [spec/spec.ts:18957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18957)*





___
<a id="rds.resources.dbcluster.properties-3.vpcsecuritygroupids.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18958)*





___
<a id="rds.resources.dbcluster.properties-3.vpcsecuritygroupids.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18959)*





___
<a id="rds.resources.dbcluster.properties-3.vpcsecuritygroupids.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18960)*





___
<a id="rds.resources.dbcluster.properties-3.vpcsecuritygroupids.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18961)*





___
<a id="rds.resources.dbcluster.properties-3.vpcsecuritygroupids.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18962)*





___

___

___

___
<a id="rds.resources.dbclusterparametergroup"></a>

###  DBClusterParameterGroup

** DBClusterParameterGroup**:  *`object`* 

*Defined in [spec/spec.ts:18967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18967)*




<a id="rds.resources.dbclusterparametergroup.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html"

*Defined in [spec/spec.ts:18968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18968)*





___
<a id="rds.resources.dbclusterparametergroup.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBClusterParameterGroup"

*Defined in [spec/spec.ts:18997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18997)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:18969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18969)*




<a id="rds.resources.dbclusterparametergroup.properties-4.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:18970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18970)*




<a id="rds.resources.dbclusterparametergroup.properties-4.description.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-description"

*Defined in [spec/spec.ts:18971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18971)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.description.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18972)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.description.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18973)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.description.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18974)*





___

___
<a id="rds.resources.dbclusterparametergroup.properties-4.family"></a>

###  Family

** Family**:  *`object`* 

*Defined in [spec/spec.ts:18976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18976)*




<a id="rds.resources.dbclusterparametergroup.properties-4.family.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-family"

*Defined in [spec/spec.ts:18977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18977)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.family.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:18978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18978)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.family.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18979)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.family.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:18980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18980)*





___

___
<a id="rds.resources.dbclusterparametergroup.properties-4.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:18982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18982)*




<a id="rds.resources.dbclusterparametergroup.properties-4.parameters.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-parameters"

*Defined in [spec/spec.ts:18983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18983)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.parameters.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:18984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18984)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.parameters.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18985)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.parameters.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18986)*





___

___
<a id="rds.resources.dbclusterparametergroup.properties-4.tags-1"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:18988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18988)*




<a id="rds.resources.dbclusterparametergroup.properties-4.tags-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbclusterparametergroup.html#cfn-rds-dbclusterparametergroup-tags"

*Defined in [spec/spec.ts:18989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18989)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.tags-1.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:18990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18990)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.tags-1.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:18991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18991)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.tags-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:18992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18992)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.tags-1.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:18993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18993)*





___
<a id="rds.resources.dbclusterparametergroup.properties-4.tags-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:18994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18994)*





___

___

___

___
<a id="rds.resources.dbinstance"></a>

###  DBInstance

** DBInstance**:  *`object`* 

*Defined in [spec/spec.ts:18999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L18999)*




<a id="rds.resources.dbinstance.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html"

*Defined in [spec/spec.ts:19008](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19008)*





___
<a id="rds.resources.dbinstance.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBInstance"

*Defined in [spec/spec.ts:19251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19251)*





___
<a id="rds.resources.dbinstance.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:19000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19000)*




<a id="rds.resources.dbinstance.attributes-1.endpoint_address-1"></a>

###  Endpoint.Address

** Endpoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:19001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19001)*




<a id="rds.resources.dbinstance.attributes-1.endpoint_address-1.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19002)*





___

___
<a id="rds.resources.dbinstance.attributes-1.endpoint_port-1"></a>

###  Endpoint.Port

** Endpoint.Port**:  *`object`* 

*Defined in [spec/spec.ts:19004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19004)*




<a id="rds.resources.dbinstance.attributes-1.endpoint_port-1.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19005)*





___

___

___
<a id="rds.resources.dbinstance.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19009)*




<a id="rds.resources.dbinstance.properties-5.allocatedstorage"></a>

###  AllocatedStorage

** AllocatedStorage**:  *`object`* 

*Defined in [spec/spec.ts:19010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19010)*




<a id="rds.resources.dbinstance.properties-5.allocatedstorage.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allocatedstorage"

*Defined in [spec/spec.ts:19011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19011)*





___
<a id="rds.resources.dbinstance.properties-5.allocatedstorage.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19012)*





___
<a id="rds.resources.dbinstance.properties-5.allocatedstorage.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19013)*





___
<a id="rds.resources.dbinstance.properties-5.allocatedstorage.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19014)*





___

___
<a id="rds.resources.dbinstance.properties-5.allowmajorversionupgrade"></a>

###  AllowMajorVersionUpgrade

** AllowMajorVersionUpgrade**:  *`object`* 

*Defined in [spec/spec.ts:19016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19016)*




<a id="rds.resources.dbinstance.properties-5.allowmajorversionupgrade.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-allowmajorversionupgrade"

*Defined in [spec/spec.ts:19017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19017)*





___
<a id="rds.resources.dbinstance.properties-5.allowmajorversionupgrade.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19018)*





___
<a id="rds.resources.dbinstance.properties-5.allowmajorversionupgrade.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19019)*





___
<a id="rds.resources.dbinstance.properties-5.allowmajorversionupgrade.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19020)*





___

___
<a id="rds.resources.dbinstance.properties-5.autominorversionupgrade"></a>

###  AutoMinorVersionUpgrade

** AutoMinorVersionUpgrade**:  *`object`* 

*Defined in [spec/spec.ts:19022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19022)*




<a id="rds.resources.dbinstance.properties-5.autominorversionupgrade.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-autominorversionupgrade"

*Defined in [spec/spec.ts:19023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19023)*





___
<a id="rds.resources.dbinstance.properties-5.autominorversionupgrade.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19024)*





___
<a id="rds.resources.dbinstance.properties-5.autominorversionupgrade.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19025)*





___
<a id="rds.resources.dbinstance.properties-5.autominorversionupgrade.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19026)*





___

___
<a id="rds.resources.dbinstance.properties-5.availabilityzone"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:19028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19028)*




<a id="rds.resources.dbinstance.properties-5.availabilityzone.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-availabilityzone"

*Defined in [spec/spec.ts:19029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19029)*





___
<a id="rds.resources.dbinstance.properties-5.availabilityzone.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19030)*





___
<a id="rds.resources.dbinstance.properties-5.availabilityzone.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19031)*





___
<a id="rds.resources.dbinstance.properties-5.availabilityzone.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19032)*





___

___
<a id="rds.resources.dbinstance.properties-5.backupretentionperiod-1"></a>

###  BackupRetentionPeriod

** BackupRetentionPeriod**:  *`object`* 

*Defined in [spec/spec.ts:19034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19034)*




<a id="rds.resources.dbinstance.properties-5.backupretentionperiod-1.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-backupretentionperiod"

*Defined in [spec/spec.ts:19035](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19035)*





___
<a id="rds.resources.dbinstance.properties-5.backupretentionperiod-1.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19036)*





___
<a id="rds.resources.dbinstance.properties-5.backupretentionperiod-1.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19037)*





___
<a id="rds.resources.dbinstance.properties-5.backupretentionperiod-1.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19038)*





___

___
<a id="rds.resources.dbinstance.properties-5.charactersetname"></a>

###  CharacterSetName

** CharacterSetName**:  *`object`* 

*Defined in [spec/spec.ts:19040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19040)*




<a id="rds.resources.dbinstance.properties-5.charactersetname.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-charactersetname"

*Defined in [spec/spec.ts:19041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19041)*





___
<a id="rds.resources.dbinstance.properties-5.charactersetname.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19042)*





___
<a id="rds.resources.dbinstance.properties-5.charactersetname.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19043)*





___
<a id="rds.resources.dbinstance.properties-5.charactersetname.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19044)*





___

___
<a id="rds.resources.dbinstance.properties-5.copytagstosnapshot"></a>

###  CopyTagsToSnapshot

** CopyTagsToSnapshot**:  *`object`* 

*Defined in [spec/spec.ts:19046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19046)*




<a id="rds.resources.dbinstance.properties-5.copytagstosnapshot.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-copytagstosnapshot"

*Defined in [spec/spec.ts:19047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19047)*





___
<a id="rds.resources.dbinstance.properties-5.copytagstosnapshot.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19048)*





___
<a id="rds.resources.dbinstance.properties-5.copytagstosnapshot.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19049)*





___
<a id="rds.resources.dbinstance.properties-5.copytagstosnapshot.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19050)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbclusteridentifier"></a>

###  DBClusterIdentifier

** DBClusterIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19052)*




<a id="rds.resources.dbinstance.properties-5.dbclusteridentifier.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbclusteridentifier"

*Defined in [spec/spec.ts:19053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19053)*





___
<a id="rds.resources.dbinstance.properties-5.dbclusteridentifier.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19054)*





___
<a id="rds.resources.dbinstance.properties-5.dbclusteridentifier.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19055)*





___
<a id="rds.resources.dbinstance.properties-5.dbclusteridentifier.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19056](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19056)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbinstanceclass"></a>

###  DBInstanceClass

** DBInstanceClass**:  *`object`* 

*Defined in [spec/spec.ts:19058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19058)*




<a id="rds.resources.dbinstance.properties-5.dbinstanceclass.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceclass"

*Defined in [spec/spec.ts:19059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19059)*





___
<a id="rds.resources.dbinstance.properties-5.dbinstanceclass.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19060)*





___
<a id="rds.resources.dbinstance.properties-5.dbinstanceclass.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19061)*





___
<a id="rds.resources.dbinstance.properties-5.dbinstanceclass.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19062)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbinstanceidentifier"></a>

###  DBInstanceIdentifier

** DBInstanceIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19064)*




<a id="rds.resources.dbinstance.properties-5.dbinstanceidentifier.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbinstanceidentifier"

*Defined in [spec/spec.ts:19065](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19065)*





___
<a id="rds.resources.dbinstance.properties-5.dbinstanceidentifier.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19066)*





___
<a id="rds.resources.dbinstance.properties-5.dbinstanceidentifier.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19067)*





___
<a id="rds.resources.dbinstance.properties-5.dbinstanceidentifier.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19068)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbname"></a>

###  DBName

** DBName**:  *`object`* 

*Defined in [spec/spec.ts:19070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19070)*




<a id="rds.resources.dbinstance.properties-5.dbname.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbname"

*Defined in [spec/spec.ts:19071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19071)*





___
<a id="rds.resources.dbinstance.properties-5.dbname.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19072)*





___
<a id="rds.resources.dbinstance.properties-5.dbname.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19073)*





___
<a id="rds.resources.dbinstance.properties-5.dbname.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19074)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbparametergroupname"></a>

###  DBParameterGroupName

** DBParameterGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19076)*




<a id="rds.resources.dbinstance.properties-5.dbparametergroupname.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbparametergroupname"

*Defined in [spec/spec.ts:19077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19077)*





___
<a id="rds.resources.dbinstance.properties-5.dbparametergroupname.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19078)*





___
<a id="rds.resources.dbinstance.properties-5.dbparametergroupname.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19079)*





___
<a id="rds.resources.dbinstance.properties-5.dbparametergroupname.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19080)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbsecuritygroups"></a>

###  DBSecurityGroups

** DBSecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:19082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19082)*




<a id="rds.resources.dbinstance.properties-5.dbsecuritygroups.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsecuritygroups"

*Defined in [spec/spec.ts:19083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19083)*





___
<a id="rds.resources.dbinstance.properties-5.dbsecuritygroups.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19084)*





___
<a id="rds.resources.dbinstance.properties-5.dbsecuritygroups.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19085)*





___
<a id="rds.resources.dbinstance.properties-5.dbsecuritygroups.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19086)*





___
<a id="rds.resources.dbinstance.properties-5.dbsecuritygroups.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19087)*





___
<a id="rds.resources.dbinstance.properties-5.dbsecuritygroups.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19088)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbsnapshotidentifier"></a>

###  DBSnapshotIdentifier

** DBSnapshotIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19090)*




<a id="rds.resources.dbinstance.properties-5.dbsnapshotidentifier.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsnapshotidentifier"

*Defined in [spec/spec.ts:19091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19091)*





___
<a id="rds.resources.dbinstance.properties-5.dbsnapshotidentifier.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19092)*





___
<a id="rds.resources.dbinstance.properties-5.dbsnapshotidentifier.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19093)*





___
<a id="rds.resources.dbinstance.properties-5.dbsnapshotidentifier.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19094)*





___

___
<a id="rds.resources.dbinstance.properties-5.dbsubnetgroupname-1"></a>

###  DBSubnetGroupName

** DBSubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19096)*




<a id="rds.resources.dbinstance.properties-5.dbsubnetgroupname-1.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsubnetgroupname"

*Defined in [spec/spec.ts:19097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19097)*





___
<a id="rds.resources.dbinstance.properties-5.dbsubnetgroupname-1.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19098)*





___
<a id="rds.resources.dbinstance.properties-5.dbsubnetgroupname-1.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19099)*





___
<a id="rds.resources.dbinstance.properties-5.dbsubnetgroupname-1.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19100)*





___

___
<a id="rds.resources.dbinstance.properties-5.domain"></a>

###  Domain

** Domain**:  *`object`* 

*Defined in [spec/spec.ts:19102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19102)*




<a id="rds.resources.dbinstance.properties-5.domain.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domain"

*Defined in [spec/spec.ts:19103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19103)*





___
<a id="rds.resources.dbinstance.properties-5.domain.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19104)*





___
<a id="rds.resources.dbinstance.properties-5.domain.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19105)*





___
<a id="rds.resources.dbinstance.properties-5.domain.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19106)*





___

___
<a id="rds.resources.dbinstance.properties-5.domainiamrolename"></a>

###  DomainIAMRoleName

** DomainIAMRoleName**:  *`object`* 

*Defined in [spec/spec.ts:19108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19108)*




<a id="rds.resources.dbinstance.properties-5.domainiamrolename.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-domainiamrolename"

*Defined in [spec/spec.ts:19109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19109)*





___
<a id="rds.resources.dbinstance.properties-5.domainiamrolename.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19110)*





___
<a id="rds.resources.dbinstance.properties-5.domainiamrolename.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19111)*





___
<a id="rds.resources.dbinstance.properties-5.domainiamrolename.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19112](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19112)*





___

___
<a id="rds.resources.dbinstance.properties-5.engine-1"></a>

###  Engine

** Engine**:  *`object`* 

*Defined in [spec/spec.ts:19114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19114)*




<a id="rds.resources.dbinstance.properties-5.engine-1.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engine"

*Defined in [spec/spec.ts:19115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19115)*





___
<a id="rds.resources.dbinstance.properties-5.engine-1.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19116)*





___
<a id="rds.resources.dbinstance.properties-5.engine-1.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19117)*





___
<a id="rds.resources.dbinstance.properties-5.engine-1.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19118)*





___

___
<a id="rds.resources.dbinstance.properties-5.engineversion-1"></a>

###  EngineVersion

** EngineVersion**:  *`object`* 

*Defined in [spec/spec.ts:19120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19120)*




<a id="rds.resources.dbinstance.properties-5.engineversion-1.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-engineversion"

*Defined in [spec/spec.ts:19121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19121)*





___
<a id="rds.resources.dbinstance.properties-5.engineversion-1.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19122)*





___
<a id="rds.resources.dbinstance.properties-5.engineversion-1.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19123)*





___
<a id="rds.resources.dbinstance.properties-5.engineversion-1.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19124)*





___

___
<a id="rds.resources.dbinstance.properties-5.iops"></a>

###  Iops

** Iops**:  *`object`* 

*Defined in [spec/spec.ts:19126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19126)*




<a id="rds.resources.dbinstance.properties-5.iops.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-iops"

*Defined in [spec/spec.ts:19127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19127)*





___
<a id="rds.resources.dbinstance.properties-5.iops.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:19128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19128)*





___
<a id="rds.resources.dbinstance.properties-5.iops.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19129)*





___
<a id="rds.resources.dbinstance.properties-5.iops.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19130)*





___

___
<a id="rds.resources.dbinstance.properties-5.kmskeyid-1"></a>

###  KmsKeyId

** KmsKeyId**:  *`object`* 

*Defined in [spec/spec.ts:19132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19132)*




<a id="rds.resources.dbinstance.properties-5.kmskeyid-1.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-kmskeyid"

*Defined in [spec/spec.ts:19133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19133)*





___
<a id="rds.resources.dbinstance.properties-5.kmskeyid-1.primitivetype-51"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19134)*





___
<a id="rds.resources.dbinstance.properties-5.kmskeyid-1.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19135](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19135)*





___
<a id="rds.resources.dbinstance.properties-5.kmskeyid-1.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19136)*





___

___
<a id="rds.resources.dbinstance.properties-5.licensemodel"></a>

###  LicenseModel

** LicenseModel**:  *`object`* 

*Defined in [spec/spec.ts:19138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19138)*




<a id="rds.resources.dbinstance.properties-5.licensemodel.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-licensemodel"

*Defined in [spec/spec.ts:19139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19139)*





___
<a id="rds.resources.dbinstance.properties-5.licensemodel.primitivetype-52"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19140)*





___
<a id="rds.resources.dbinstance.properties-5.licensemodel.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19141)*





___
<a id="rds.resources.dbinstance.properties-5.licensemodel.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19142)*





___

___
<a id="rds.resources.dbinstance.properties-5.masteruserpassword-1"></a>

###  MasterUserPassword

** MasterUserPassword**:  *`object`* 

*Defined in [spec/spec.ts:19144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19144)*




<a id="rds.resources.dbinstance.properties-5.masteruserpassword-1.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masteruserpassword"

*Defined in [spec/spec.ts:19145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19145)*





___
<a id="rds.resources.dbinstance.properties-5.masteruserpassword-1.primitivetype-53"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19146)*





___
<a id="rds.resources.dbinstance.properties-5.masteruserpassword-1.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19147](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19147)*





___
<a id="rds.resources.dbinstance.properties-5.masteruserpassword-1.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19148)*





___

___
<a id="rds.resources.dbinstance.properties-5.masterusername-1"></a>

###  MasterUsername

** MasterUsername**:  *`object`* 

*Defined in [spec/spec.ts:19150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19150)*




<a id="rds.resources.dbinstance.properties-5.masterusername-1.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-masterusername"

*Defined in [spec/spec.ts:19151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19151)*





___
<a id="rds.resources.dbinstance.properties-5.masterusername-1.primitivetype-54"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19152)*





___
<a id="rds.resources.dbinstance.properties-5.masterusername-1.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19153](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19153)*





___
<a id="rds.resources.dbinstance.properties-5.masterusername-1.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19154)*





___

___
<a id="rds.resources.dbinstance.properties-5.monitoringinterval"></a>

###  MonitoringInterval

** MonitoringInterval**:  *`object`* 

*Defined in [spec/spec.ts:19156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19156)*




<a id="rds.resources.dbinstance.properties-5.monitoringinterval.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringinterval"

*Defined in [spec/spec.ts:19157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19157)*





___
<a id="rds.resources.dbinstance.properties-5.monitoringinterval.primitivetype-55"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:19158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19158)*





___
<a id="rds.resources.dbinstance.properties-5.monitoringinterval.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19159](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19159)*





___
<a id="rds.resources.dbinstance.properties-5.monitoringinterval.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19160](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19160)*





___

___
<a id="rds.resources.dbinstance.properties-5.monitoringrolearn"></a>

###  MonitoringRoleArn

** MonitoringRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:19162](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19162)*




<a id="rds.resources.dbinstance.properties-5.monitoringrolearn.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-monitoringrolearn"

*Defined in [spec/spec.ts:19163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19163)*





___
<a id="rds.resources.dbinstance.properties-5.monitoringrolearn.primitivetype-56"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19164)*





___
<a id="rds.resources.dbinstance.properties-5.monitoringrolearn.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19165)*





___
<a id="rds.resources.dbinstance.properties-5.monitoringrolearn.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19166)*





___

___
<a id="rds.resources.dbinstance.properties-5.multiaz"></a>

###  MultiAZ

** MultiAZ**:  *`object`* 

*Defined in [spec/spec.ts:19168](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19168)*




<a id="rds.resources.dbinstance.properties-5.multiaz.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-multiaz"

*Defined in [spec/spec.ts:19169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19169)*





___
<a id="rds.resources.dbinstance.properties-5.multiaz.primitivetype-57"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19170)*





___
<a id="rds.resources.dbinstance.properties-5.multiaz.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19171](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19171)*





___
<a id="rds.resources.dbinstance.properties-5.multiaz.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19172](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19172)*





___

___
<a id="rds.resources.dbinstance.properties-5.optiongroupname"></a>

###  OptionGroupName

** OptionGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19174)*




<a id="rds.resources.dbinstance.properties-5.optiongroupname.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-optiongroupname"

*Defined in [spec/spec.ts:19175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19175)*





___
<a id="rds.resources.dbinstance.properties-5.optiongroupname.primitivetype-58"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19176)*





___
<a id="rds.resources.dbinstance.properties-5.optiongroupname.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19177)*





___
<a id="rds.resources.dbinstance.properties-5.optiongroupname.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19178)*





___

___
<a id="rds.resources.dbinstance.properties-5.port-2"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:19180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19180)*




<a id="rds.resources.dbinstance.properties-5.port-2.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-port"

*Defined in [spec/spec.ts:19181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19181)*





___
<a id="rds.resources.dbinstance.properties-5.port-2.primitivetype-59"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19182)*





___
<a id="rds.resources.dbinstance.properties-5.port-2.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19183)*





___
<a id="rds.resources.dbinstance.properties-5.port-2.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19184)*





___

___
<a id="rds.resources.dbinstance.properties-5.preferredbackupwindow-1"></a>

###  PreferredBackupWindow

** PreferredBackupWindow**:  *`object`* 

*Defined in [spec/spec.ts:19186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19186)*




<a id="rds.resources.dbinstance.properties-5.preferredbackupwindow-1.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredbackupwindow"

*Defined in [spec/spec.ts:19187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19187)*





___
<a id="rds.resources.dbinstance.properties-5.preferredbackupwindow-1.primitivetype-60"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19188)*





___
<a id="rds.resources.dbinstance.properties-5.preferredbackupwindow-1.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19189)*





___
<a id="rds.resources.dbinstance.properties-5.preferredbackupwindow-1.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19190)*





___

___
<a id="rds.resources.dbinstance.properties-5.preferredmaintenancewindow-1"></a>

###  PreferredMaintenanceWindow

** PreferredMaintenanceWindow**:  *`object`* 

*Defined in [spec/spec.ts:19192](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19192)*




<a id="rds.resources.dbinstance.properties-5.preferredmaintenancewindow-1.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-preferredmaintenancewindow"

*Defined in [spec/spec.ts:19193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19193)*





___
<a id="rds.resources.dbinstance.properties-5.preferredmaintenancewindow-1.primitivetype-61"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19194](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19194)*





___
<a id="rds.resources.dbinstance.properties-5.preferredmaintenancewindow-1.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19195)*





___
<a id="rds.resources.dbinstance.properties-5.preferredmaintenancewindow-1.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19196)*





___

___
<a id="rds.resources.dbinstance.properties-5.publiclyaccessible"></a>

###  PubliclyAccessible

** PubliclyAccessible**:  *`object`* 

*Defined in [spec/spec.ts:19198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19198)*




<a id="rds.resources.dbinstance.properties-5.publiclyaccessible.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-publiclyaccessible"

*Defined in [spec/spec.ts:19199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19199)*





___
<a id="rds.resources.dbinstance.properties-5.publiclyaccessible.primitivetype-62"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19200](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19200)*





___
<a id="rds.resources.dbinstance.properties-5.publiclyaccessible.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19201)*





___
<a id="rds.resources.dbinstance.properties-5.publiclyaccessible.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19202)*





___

___
<a id="rds.resources.dbinstance.properties-5.sourcedbinstanceidentifier"></a>

###  SourceDBInstanceIdentifier

** SourceDBInstanceIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19204](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19204)*




<a id="rds.resources.dbinstance.properties-5.sourcedbinstanceidentifier.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourcedbinstanceidentifier"

*Defined in [spec/spec.ts:19205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19205)*





___
<a id="rds.resources.dbinstance.properties-5.sourcedbinstanceidentifier.primitivetype-63"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19206)*





___
<a id="rds.resources.dbinstance.properties-5.sourcedbinstanceidentifier.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19207)*





___
<a id="rds.resources.dbinstance.properties-5.sourcedbinstanceidentifier.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19208)*





___

___
<a id="rds.resources.dbinstance.properties-5.sourceregion"></a>

###  SourceRegion

** SourceRegion**:  *`object`* 

*Defined in [spec/spec.ts:19210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19210)*




<a id="rds.resources.dbinstance.properties-5.sourceregion.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-sourceregion"

*Defined in [spec/spec.ts:19211](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19211)*





___
<a id="rds.resources.dbinstance.properties-5.sourceregion.primitivetype-64"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19212)*





___
<a id="rds.resources.dbinstance.properties-5.sourceregion.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19213)*





___
<a id="rds.resources.dbinstance.properties-5.sourceregion.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19214)*





___

___
<a id="rds.resources.dbinstance.properties-5.storageencrypted-1"></a>

###  StorageEncrypted

** StorageEncrypted**:  *`object`* 

*Defined in [spec/spec.ts:19216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19216)*




<a id="rds.resources.dbinstance.properties-5.storageencrypted-1.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storageencrypted"

*Defined in [spec/spec.ts:19217](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19217)*





___
<a id="rds.resources.dbinstance.properties-5.storageencrypted-1.primitivetype-65"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19218](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19218)*





___
<a id="rds.resources.dbinstance.properties-5.storageencrypted-1.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19219)*





___
<a id="rds.resources.dbinstance.properties-5.storageencrypted-1.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19220](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19220)*





___

___
<a id="rds.resources.dbinstance.properties-5.storagetype"></a>

###  StorageType

** StorageType**:  *`object`* 

*Defined in [spec/spec.ts:19222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19222)*




<a id="rds.resources.dbinstance.properties-5.storagetype.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-storagetype"

*Defined in [spec/spec.ts:19223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19223)*





___
<a id="rds.resources.dbinstance.properties-5.storagetype.primitivetype-66"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19224)*





___
<a id="rds.resources.dbinstance.properties-5.storagetype.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19225)*





___
<a id="rds.resources.dbinstance.properties-5.storagetype.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19226](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19226)*





___

___
<a id="rds.resources.dbinstance.properties-5.tags-2"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19228)*




<a id="rds.resources.dbinstance.properties-5.tags-2.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-tags"

*Defined in [spec/spec.ts:19229](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19229)*





___
<a id="rds.resources.dbinstance.properties-5.tags-2.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19230)*





___
<a id="rds.resources.dbinstance.properties-5.tags-2.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19231)*





___
<a id="rds.resources.dbinstance.properties-5.tags-2.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19232](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19232)*





___
<a id="rds.resources.dbinstance.properties-5.tags-2.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19233](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19233)*





___
<a id="rds.resources.dbinstance.properties-5.tags-2.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19234)*





___

___
<a id="rds.resources.dbinstance.properties-5.timezone"></a>

###  Timezone

** Timezone**:  *`object`* 

*Defined in [spec/spec.ts:19236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19236)*




<a id="rds.resources.dbinstance.properties-5.timezone.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-timezone"

*Defined in [spec/spec.ts:19237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19237)*





___
<a id="rds.resources.dbinstance.properties-5.timezone.primitivetype-67"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19238)*





___
<a id="rds.resources.dbinstance.properties-5.timezone.required-71"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19239)*





___
<a id="rds.resources.dbinstance.properties-5.timezone.updatetype-71"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19240](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19240)*





___

___
<a id="rds.resources.dbinstance.properties-5.vpcsecuritygroups"></a>

###  VPCSecurityGroups

** VPCSecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:19242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19242)*




<a id="rds.resources.dbinstance.properties-5.vpcsecuritygroups.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-vpcsecuritygroups"

*Defined in [spec/spec.ts:19243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19243)*





___
<a id="rds.resources.dbinstance.properties-5.vpcsecuritygroups.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19244)*





___
<a id="rds.resources.dbinstance.properties-5.vpcsecuritygroups.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19245)*





___
<a id="rds.resources.dbinstance.properties-5.vpcsecuritygroups.required-72"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19246](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19246)*





___
<a id="rds.resources.dbinstance.properties-5.vpcsecuritygroups.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19247)*





___
<a id="rds.resources.dbinstance.properties-5.vpcsecuritygroups.updatetype-72"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19248)*





___

___

___

___
<a id="rds.resources.dbparametergroup"></a>

###  DBParameterGroup

** DBParameterGroup**:  *`object`* 

*Defined in [spec/spec.ts:19253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19253)*




<a id="rds.resources.dbparametergroup.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html"

*Defined in [spec/spec.ts:19254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19254)*





___
<a id="rds.resources.dbparametergroup.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBParameterGroup"

*Defined in [spec/spec.ts:19285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19285)*





___
<a id="rds.resources.dbparametergroup.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19255)*




<a id="rds.resources.dbparametergroup.properties-6.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:19256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19256)*




<a id="rds.resources.dbparametergroup.properties-6.description-1.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-description"

*Defined in [spec/spec.ts:19257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19257)*





___
<a id="rds.resources.dbparametergroup.properties-6.description-1.primitivetype-68"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19258](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19258)*





___
<a id="rds.resources.dbparametergroup.properties-6.description-1.required-73"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19259](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19259)*





___
<a id="rds.resources.dbparametergroup.properties-6.description-1.updatetype-73"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19260)*





___

___
<a id="rds.resources.dbparametergroup.properties-6.family-1"></a>

###  Family

** Family**:  *`object`* 

*Defined in [spec/spec.ts:19262](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19262)*




<a id="rds.resources.dbparametergroup.properties-6.family-1.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-family"

*Defined in [spec/spec.ts:19263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19263)*





___
<a id="rds.resources.dbparametergroup.properties-6.family-1.primitivetype-69"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19264)*





___
<a id="rds.resources.dbparametergroup.properties-6.family-1.required-74"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19265)*





___
<a id="rds.resources.dbparametergroup.properties-6.family-1.updatetype-74"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19266)*





___

___
<a id="rds.resources.dbparametergroup.properties-6.parameters-1"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:19268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19268)*




<a id="rds.resources.dbparametergroup.properties-6.parameters-1.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-parameters"

*Defined in [spec/spec.ts:19269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19269)*





___
<a id="rds.resources.dbparametergroup.properties-6.parameters-1.duplicatesallowed-9"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19270)*





___
<a id="rds.resources.dbparametergroup.properties-6.parameters-1.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19271)*





___
<a id="rds.resources.dbparametergroup.properties-6.parameters-1.required-75"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19272)*





___
<a id="rds.resources.dbparametergroup.properties-6.parameters-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:19273](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19273)*





___
<a id="rds.resources.dbparametergroup.properties-6.parameters-1.updatetype-75"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19274)*





___

___
<a id="rds.resources.dbparametergroup.properties-6.tags-3"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19276)*




<a id="rds.resources.dbparametergroup.properties-6.tags-3.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbparametergroup.html#cfn-rds-dbparametergroup-tags"

*Defined in [spec/spec.ts:19277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19277)*





___
<a id="rds.resources.dbparametergroup.properties-6.tags-3.duplicatesallowed-10"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19278)*





___
<a id="rds.resources.dbparametergroup.properties-6.tags-3.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19279](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19279)*





___
<a id="rds.resources.dbparametergroup.properties-6.tags-3.required-76"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19280](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19280)*





___
<a id="rds.resources.dbparametergroup.properties-6.tags-3.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19281)*





___
<a id="rds.resources.dbparametergroup.properties-6.tags-3.updatetype-76"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19282](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19282)*





___

___

___

___
<a id="rds.resources.dbsecuritygroup"></a>

###  DBSecurityGroup

** DBSecurityGroup**:  *`object`* 

*Defined in [spec/spec.ts:19287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19287)*




<a id="rds.resources.dbsecuritygroup.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html"

*Defined in [spec/spec.ts:19288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19288)*





___
<a id="rds.resources.dbsecuritygroup.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBSecurityGroup"

*Defined in [spec/spec.ts:19319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19319)*





___
<a id="rds.resources.dbsecuritygroup.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19289)*




<a id="rds.resources.dbsecuritygroup.properties-7.dbsecuritygroupingress"></a>

###  DBSecurityGroupIngress

** DBSecurityGroupIngress**:  *`object`* 

*Defined in [spec/spec.ts:19290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19290)*




<a id="rds.resources.dbsecuritygroup.properties-7.dbsecuritygroupingress.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-dbsecuritygroupingress"

*Defined in [spec/spec.ts:19291](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19291)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.dbsecuritygroupingress.duplicatesallowed-11"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19292)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.dbsecuritygroupingress.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Ingress"

*Defined in [spec/spec.ts:19293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19293)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.dbsecuritygroupingress.required-77"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19294)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.dbsecuritygroupingress.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19295)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.dbsecuritygroupingress.updatetype-77"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19296)*





___

___
<a id="rds.resources.dbsecuritygroup.properties-7.ec2vpcid"></a>

###  EC2VpcId

** EC2VpcId**:  *`object`* 

*Defined in [spec/spec.ts:19298](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19298)*




<a id="rds.resources.dbsecuritygroup.properties-7.ec2vpcid.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-ec2vpcid"

*Defined in [spec/spec.ts:19299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19299)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.ec2vpcid.primitivetype-70"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19300](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19300)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.ec2vpcid.required-78"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19301)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.ec2vpcid.updatetype-78"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19302)*





___

___
<a id="rds.resources.dbsecuritygroup.properties-7.groupdescription"></a>

###  GroupDescription

** GroupDescription**:  *`object`* 

*Defined in [spec/spec.ts:19304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19304)*




<a id="rds.resources.dbsecuritygroup.properties-7.groupdescription.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-groupdescription"

*Defined in [spec/spec.ts:19305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19305)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.groupdescription.primitivetype-71"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19306)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.groupdescription.required-79"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19307)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.groupdescription.updatetype-79"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19308)*





___

___
<a id="rds.resources.dbsecuritygroup.properties-7.tags-4"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19310)*




<a id="rds.resources.dbsecuritygroup.properties-7.tags-4.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-security-group.html#cfn-rds-dbsecuritygroup-tags"

*Defined in [spec/spec.ts:19311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19311)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.tags-4.duplicatesallowed-12"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19312)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.tags-4.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19313)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.tags-4.required-80"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19314)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.tags-4.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19315](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19315)*





___
<a id="rds.resources.dbsecuritygroup.properties-7.tags-4.updatetype-80"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19316)*





___

___

___

___
<a id="rds.resources.dbsecuritygroupingress-1"></a>

###  DBSecurityGroupIngress

** DBSecurityGroupIngress**:  *`object`* 

*Defined in [spec/spec.ts:19321](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19321)*




<a id="rds.resources.dbsecuritygroupingress-1.documentation-89"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html"

*Defined in [spec/spec.ts:19322](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19322)*





___
<a id="rds.resources.dbsecuritygroupingress-1.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBSecurityGroupIngress"

*Defined in [spec/spec.ts:19355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19355)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19323)*




<a id="rds.resources.dbsecuritygroupingress-1.properties-8.cidrip-1"></a>

###  CIDRIP

** CIDRIP**:  *`object`* 

*Defined in [spec/spec.ts:19324](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19324)*




<a id="rds.resources.dbsecuritygroupingress-1.properties-8.cidrip-1.documentation-90"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-cidrip"

*Defined in [spec/spec.ts:19325](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19325)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.cidrip-1.primitivetype-72"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19326](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19326)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.cidrip-1.required-81"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19327](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19327)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.cidrip-1.updatetype-81"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19328)*





___

___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.dbsecuritygroupname"></a>

###  DBSecurityGroupName

** DBSecurityGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19330)*




<a id="rds.resources.dbsecuritygroupingress-1.properties-8.dbsecuritygroupname.documentation-91"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-dbsecuritygroupname"

*Defined in [spec/spec.ts:19331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19331)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.dbsecuritygroupname.primitivetype-73"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19332)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.dbsecuritygroupname.required-82"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19333)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.dbsecuritygroupname.updatetype-82"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19334](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19334)*





___

___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupid-1"></a>

###  EC2SecurityGroupId

** EC2SecurityGroupId**:  *`object`* 

*Defined in [spec/spec.ts:19336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19336)*




<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupid-1.documentation-92"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupid"

*Defined in [spec/spec.ts:19337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19337)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupid-1.primitivetype-74"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19338)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupid-1.required-83"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19339)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupid-1.updatetype-83"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19340)*





___

___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupname-1"></a>

###  EC2SecurityGroupName

** EC2SecurityGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19342](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19342)*




<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupname-1.documentation-93"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupname"

*Defined in [spec/spec.ts:19343](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19343)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupname-1.primitivetype-75"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19344)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupname-1.required-84"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19345](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19345)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupname-1.updatetype-84"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19346)*





___

___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupownerid-1"></a>

###  EC2SecurityGroupOwnerId

** EC2SecurityGroupOwnerId**:  *`object`* 

*Defined in [spec/spec.ts:19348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19348)*




<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupownerid-1.documentation-94"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-security-group-ingress.html#cfn-rds-securitygroup-ingress-ec2securitygroupownerid"

*Defined in [spec/spec.ts:19349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19349)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupownerid-1.primitivetype-76"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19350)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupownerid-1.required-85"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19351](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19351)*





___
<a id="rds.resources.dbsecuritygroupingress-1.properties-8.ec2securitygroupownerid-1.updatetype-85"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19352](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19352)*





___

___

___

___
<a id="rds.resources.dbsubnetgroup"></a>

###  DBSubnetGroup

** DBSubnetGroup**:  *`object`* 

*Defined in [spec/spec.ts:19357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19357)*




<a id="rds.resources.dbsubnetgroup.documentation-95"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html"

*Defined in [spec/spec.ts:19358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19358)*





___
<a id="rds.resources.dbsubnetgroup.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::DBSubnetGroup"

*Defined in [spec/spec.ts:19383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19383)*





___
<a id="rds.resources.dbsubnetgroup.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19359)*




<a id="rds.resources.dbsubnetgroup.properties-9.dbsubnetgroupdescription"></a>

###  DBSubnetGroupDescription

** DBSubnetGroupDescription**:  *`object`* 

*Defined in [spec/spec.ts:19360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19360)*




<a id="rds.resources.dbsubnetgroup.properties-9.dbsubnetgroupdescription.documentation-96"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-dbsubnetgroupdescription"

*Defined in [spec/spec.ts:19361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19361)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.dbsubnetgroupdescription.primitivetype-77"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19362)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.dbsubnetgroupdescription.required-86"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19363)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.dbsubnetgroupdescription.updatetype-86"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19364)*





___

___
<a id="rds.resources.dbsubnetgroup.properties-9.subnetids"></a>

###  SubnetIds

** SubnetIds**:  *`object`* 

*Defined in [spec/spec.ts:19366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19366)*




<a id="rds.resources.dbsubnetgroup.properties-9.subnetids.documentation-97"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-subnetids"

*Defined in [spec/spec.ts:19367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19367)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.subnetids.duplicatesallowed-13"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19368)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.subnetids.primitiveitemtype-7"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19369)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.subnetids.required-87"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19370)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.subnetids.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19371](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19371)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.subnetids.updatetype-87"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19372](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19372)*





___

___
<a id="rds.resources.dbsubnetgroup.properties-9.tags-5"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19374](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19374)*




<a id="rds.resources.dbsubnetgroup.properties-9.tags-5.documentation-98"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsubnet-group.html#cfn-rds-dbsubnetgroup-tags"

*Defined in [spec/spec.ts:19375](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19375)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.tags-5.duplicatesallowed-14"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19376)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.tags-5.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19377](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19377)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.tags-5.required-88"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19378](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19378)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.tags-5.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19379)*





___
<a id="rds.resources.dbsubnetgroup.properties-9.tags-5.updatetype-88"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19380)*





___

___

___

___
<a id="rds.resources.eventsubscription"></a>

###  EventSubscription

** EventSubscription**:  *`object`* 

*Defined in [spec/spec.ts:19385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19385)*




<a id="rds.resources.eventsubscription.documentation-99"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html"

*Defined in [spec/spec.ts:19386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19386)*





___
<a id="rds.resources.eventsubscription.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::EventSubscription"

*Defined in [spec/spec.ts:19423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19423)*





___
<a id="rds.resources.eventsubscription.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19387)*




<a id="rds.resources.eventsubscription.properties-10.enabled"></a>

###  Enabled

** Enabled**:  *`object`* 

*Defined in [spec/spec.ts:19388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19388)*




<a id="rds.resources.eventsubscription.properties-10.enabled.documentation-100"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-enabled"

*Defined in [spec/spec.ts:19389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19389)*





___
<a id="rds.resources.eventsubscription.properties-10.enabled.primitivetype-78"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19390](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19390)*





___
<a id="rds.resources.eventsubscription.properties-10.enabled.required-89"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19391)*





___
<a id="rds.resources.eventsubscription.properties-10.enabled.updatetype-89"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19392)*





___

___
<a id="rds.resources.eventsubscription.properties-10.eventcategories"></a>

###  EventCategories

** EventCategories**:  *`object`* 

*Defined in [spec/spec.ts:19394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19394)*




<a id="rds.resources.eventsubscription.properties-10.eventcategories.documentation-101"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-eventcategories"

*Defined in [spec/spec.ts:19395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19395)*





___
<a id="rds.resources.eventsubscription.properties-10.eventcategories.duplicatesallowed-15"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19396](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19396)*





___
<a id="rds.resources.eventsubscription.properties-10.eventcategories.primitiveitemtype-8"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19397](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19397)*





___
<a id="rds.resources.eventsubscription.properties-10.eventcategories.required-90"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19398)*





___
<a id="rds.resources.eventsubscription.properties-10.eventcategories.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19399](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19399)*





___
<a id="rds.resources.eventsubscription.properties-10.eventcategories.updatetype-90"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19400)*





___

___
<a id="rds.resources.eventsubscription.properties-10.snstopicarn"></a>

###  SnsTopicArn

** SnsTopicArn**:  *`object`* 

*Defined in [spec/spec.ts:19402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19402)*




<a id="rds.resources.eventsubscription.properties-10.snstopicarn.documentation-102"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-snstopicarn"

*Defined in [spec/spec.ts:19403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19403)*





___
<a id="rds.resources.eventsubscription.properties-10.snstopicarn.primitivetype-79"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19404)*





___
<a id="rds.resources.eventsubscription.properties-10.snstopicarn.required-91"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19405)*





___
<a id="rds.resources.eventsubscription.properties-10.snstopicarn.updatetype-91"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19406)*





___

___
<a id="rds.resources.eventsubscription.properties-10.sourceids"></a>

###  SourceIds

** SourceIds**:  *`object`* 

*Defined in [spec/spec.ts:19408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19408)*




<a id="rds.resources.eventsubscription.properties-10.sourceids.documentation-103"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourceids"

*Defined in [spec/spec.ts:19409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19409)*





___
<a id="rds.resources.eventsubscription.properties-10.sourceids.duplicatesallowed-16"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19410](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19410)*





___
<a id="rds.resources.eventsubscription.properties-10.sourceids.primitiveitemtype-9"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19411)*





___
<a id="rds.resources.eventsubscription.properties-10.sourceids.required-92"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19412)*





___
<a id="rds.resources.eventsubscription.properties-10.sourceids.type-17"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19413)*





___
<a id="rds.resources.eventsubscription.properties-10.sourceids.updatetype-92"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19414)*





___

___
<a id="rds.resources.eventsubscription.properties-10.sourcetype"></a>

###  SourceType

** SourceType**:  *`object`* 

*Defined in [spec/spec.ts:19416](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19416)*




<a id="rds.resources.eventsubscription.properties-10.sourcetype.documentation-104"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-eventsubscription.html#cfn-rds-eventsubscription-sourcetype"

*Defined in [spec/spec.ts:19417](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19417)*





___
<a id="rds.resources.eventsubscription.properties-10.sourcetype.primitivetype-80"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19418)*





___
<a id="rds.resources.eventsubscription.properties-10.sourcetype.required-93"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19419](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19419)*





___
<a id="rds.resources.eventsubscription.properties-10.sourcetype.updatetype-93"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:19420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19420)*





___

___

___

___
<a id="rds.resources.optiongroup"></a>

###  OptionGroup

** OptionGroup**:  *`object`* 

*Defined in [spec/spec.ts:19425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19425)*




<a id="rds.resources.optiongroup.documentation-105"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html"

*Defined in [spec/spec.ts:19426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19426)*





___
<a id="rds.resources.optiongroup.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::RDS::OptionGroup"

*Defined in [spec/spec.ts:19463](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19463)*





___
<a id="rds.resources.optiongroup.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19427)*




<a id="rds.resources.optiongroup.properties-11.enginename"></a>

###  EngineName

** EngineName**:  *`object`* 

*Defined in [spec/spec.ts:19428](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19428)*




<a id="rds.resources.optiongroup.properties-11.enginename.documentation-106"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-enginename"

*Defined in [spec/spec.ts:19429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19429)*





___
<a id="rds.resources.optiongroup.properties-11.enginename.primitivetype-81"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19430)*





___
<a id="rds.resources.optiongroup.properties-11.enginename.required-94"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19431)*





___
<a id="rds.resources.optiongroup.properties-11.enginename.updatetype-94"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19432)*





___

___
<a id="rds.resources.optiongroup.properties-11.majorengineversion"></a>

###  MajorEngineVersion

** MajorEngineVersion**:  *`object`* 

*Defined in [spec/spec.ts:19434](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19434)*




<a id="rds.resources.optiongroup.properties-11.majorengineversion.documentation-107"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-majorengineversion"

*Defined in [spec/spec.ts:19435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19435)*





___
<a id="rds.resources.optiongroup.properties-11.majorengineversion.primitivetype-82"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19436)*





___
<a id="rds.resources.optiongroup.properties-11.majorengineversion.required-95"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19437)*





___
<a id="rds.resources.optiongroup.properties-11.majorengineversion.updatetype-95"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19438)*





___

___
<a id="rds.resources.optiongroup.properties-11.optionconfigurations"></a>

###  OptionConfigurations

** OptionConfigurations**:  *`object`* 

*Defined in [spec/spec.ts:19440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19440)*




<a id="rds.resources.optiongroup.properties-11.optionconfigurations.documentation-108"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optionconfigurations"

*Defined in [spec/spec.ts:19441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19441)*





___
<a id="rds.resources.optiongroup.properties-11.optionconfigurations.duplicatesallowed-17"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19442](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19442)*





___
<a id="rds.resources.optiongroup.properties-11.optionconfigurations.itemtype-7"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "OptionConfiguration"

*Defined in [spec/spec.ts:19443](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19443)*





___
<a id="rds.resources.optiongroup.properties-11.optionconfigurations.required-96"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19444)*





___
<a id="rds.resources.optiongroup.properties-11.optionconfigurations.type-18"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19445](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19445)*





___
<a id="rds.resources.optiongroup.properties-11.optionconfigurations.updatetype-96"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19446)*





___

___
<a id="rds.resources.optiongroup.properties-11.optiongroupdescription"></a>

###  OptionGroupDescription

** OptionGroupDescription**:  *`object`* 

*Defined in [spec/spec.ts:19448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19448)*




<a id="rds.resources.optiongroup.properties-11.optiongroupdescription.documentation-109"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-optiongroupdescription"

*Defined in [spec/spec.ts:19449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19449)*





___
<a id="rds.resources.optiongroup.properties-11.optiongroupdescription.primitivetype-83"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19450)*





___
<a id="rds.resources.optiongroup.properties-11.optiongroupdescription.required-97"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19451)*





___
<a id="rds.resources.optiongroup.properties-11.optiongroupdescription.updatetype-97"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19452)*





___

___
<a id="rds.resources.optiongroup.properties-11.tags-6"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19454](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19454)*




<a id="rds.resources.optiongroup.properties-11.tags-6.documentation-110"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-optiongroup.html#cfn-rds-optiongroup-tags"

*Defined in [spec/spec.ts:19455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19455)*





___
<a id="rds.resources.optiongroup.properties-11.tags-6.duplicatesallowed-18"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19456)*





___
<a id="rds.resources.optiongroup.properties-11.tags-6.itemtype-8"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19457)*





___
<a id="rds.resources.optiongroup.properties-11.tags-6.required-98"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19458)*





___
<a id="rds.resources.optiongroup.properties-11.tags-6.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19459)*





___
<a id="rds.resources.optiongroup.properties-11.tags-6.updatetype-98"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19460)*





___

___

___

___

___

<a id="redshift"></a>

## Object literal: Redshift


<a id="redshift.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:19868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19868)*




<a id="redshift.models.loggingproperties"></a>

###  LoggingProperties

** LoggingProperties**:  *`object`* 

*Defined in [spec/spec.ts:19869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19869)*




<a id="redshift.models.loggingproperties.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html"

*Defined in [spec/spec.ts:19870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19870)*





___
<a id="redshift.models.loggingproperties.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Redshift::Cluster.LoggingProperties"

*Defined in [spec/spec.ts:19885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19885)*





___
<a id="redshift.models.loggingproperties.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19871)*




<a id="redshift.models.loggingproperties.properties.bucketname"></a>

###  BucketName

** BucketName**:  *`object`* 

*Defined in [spec/spec.ts:19872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19872)*




<a id="redshift.models.loggingproperties.properties.bucketname.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-bucketname"

*Defined in [spec/spec.ts:19873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19873)*





___
<a id="redshift.models.loggingproperties.properties.bucketname.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19874)*





___
<a id="redshift.models.loggingproperties.properties.bucketname.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19875)*





___
<a id="redshift.models.loggingproperties.properties.bucketname.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19876)*





___

___
<a id="redshift.models.loggingproperties.properties.s3keyprefix"></a>

###  S3KeyPrefix

** S3KeyPrefix**:  *`object`* 

*Defined in [spec/spec.ts:19878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19878)*




<a id="redshift.models.loggingproperties.properties.s3keyprefix.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshift-cluster-loggingproperties.html#cfn-redshift-cluster-loggingproperties-s3keyprefix"

*Defined in [spec/spec.ts:19879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19879)*





___
<a id="redshift.models.loggingproperties.properties.s3keyprefix.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19880)*





___
<a id="redshift.models.loggingproperties.properties.s3keyprefix.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19881)*





___
<a id="redshift.models.loggingproperties.properties.s3keyprefix.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19882)*





___

___

___

___
<a id="redshift.models.parameter"></a>

###  Parameter

** Parameter**:  *`object`* 

*Defined in [spec/spec.ts:19887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19887)*




<a id="redshift.models.parameter.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-property-redshift-clusterparametergroup-parameter.html"

*Defined in [spec/spec.ts:19888](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19888)*





___
<a id="redshift.models.parameter.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Redshift::ClusterParameterGroup.Parameter"

*Defined in [spec/spec.ts:19903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19903)*





___
<a id="redshift.models.parameter.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19889)*




<a id="redshift.models.parameter.properties-1.parametername"></a>

###  ParameterName

** ParameterName**:  *`object`* 

*Defined in [spec/spec.ts:19890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19890)*




<a id="redshift.models.parameter.properties-1.parametername.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-property-redshift-clusterparametergroup-parameter.html#cfn-redshift-clusterparametergroup-parameter-parametername"

*Defined in [spec/spec.ts:19891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19891)*





___
<a id="redshift.models.parameter.properties-1.parametername.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19892)*





___
<a id="redshift.models.parameter.properties-1.parametername.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19893)*





___
<a id="redshift.models.parameter.properties-1.parametername.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19894)*





___

___
<a id="redshift.models.parameter.properties-1.parametervalue"></a>

###  ParameterValue

** ParameterValue**:  *`object`* 

*Defined in [spec/spec.ts:19896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19896)*




<a id="redshift.models.parameter.properties-1.parametervalue.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-property-redshift-clusterparametergroup-parameter.html#cfn-redshift-clusterparametergroup-parameter-parametervalue"

*Defined in [spec/spec.ts:19897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19897)*





___
<a id="redshift.models.parameter.properties-1.parametervalue.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19898)*





___
<a id="redshift.models.parameter.properties-1.parametervalue.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19899)*





___
<a id="redshift.models.parameter.properties-1.parametervalue.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19900)*





___

___

___

___

___
<a id="redshift.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:19564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19564)*




<a id="redshift.resources.cluster"></a>

###  Cluster

** Cluster**:  *`object`* 

*Defined in [spec/spec.ts:19565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19565)*




<a id="redshift.resources.cluster.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html"

*Defined in [spec/spec.ts:19574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19574)*





___
<a id="redshift.resources.cluster.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Redshift::Cluster"

*Defined in [spec/spec.ts:19753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19753)*





___
<a id="redshift.resources.cluster.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:19566](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19566)*




<a id="redshift.resources.cluster.attributes.endpoint_address"></a>

###  Endpoint.Address

** Endpoint.Address**:  *`object`* 

*Defined in [spec/spec.ts:19567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19567)*




<a id="redshift.resources.cluster.attributes.endpoint_address.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19568)*





___

___
<a id="redshift.resources.cluster.attributes.endpoint_port"></a>

###  Endpoint.Port

** Endpoint.Port**:  *`object`* 

*Defined in [spec/spec.ts:19570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19570)*




<a id="redshift.resources.cluster.attributes.endpoint_port.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19571)*





___

___

___
<a id="redshift.resources.cluster.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19575)*




<a id="redshift.resources.cluster.properties-2.allowversionupgrade"></a>

###  AllowVersionUpgrade

** AllowVersionUpgrade**:  *`object`* 

*Defined in [spec/spec.ts:19576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19576)*




<a id="redshift.resources.cluster.properties-2.allowversionupgrade.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-allowversionupgrade"

*Defined in [spec/spec.ts:19577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19577)*





___
<a id="redshift.resources.cluster.properties-2.allowversionupgrade.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19578)*





___
<a id="redshift.resources.cluster.properties-2.allowversionupgrade.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19579)*





___
<a id="redshift.resources.cluster.properties-2.allowversionupgrade.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19580)*





___

___
<a id="redshift.resources.cluster.properties-2.automatedsnapshotretentionperiod"></a>

###  AutomatedSnapshotRetentionPeriod

** AutomatedSnapshotRetentionPeriod**:  *`object`* 

*Defined in [spec/spec.ts:19582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19582)*




<a id="redshift.resources.cluster.properties-2.automatedsnapshotretentionperiod.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-automatedsnapshotretentionperiod"

*Defined in [spec/spec.ts:19583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19583)*





___
<a id="redshift.resources.cluster.properties-2.automatedsnapshotretentionperiod.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:19584](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19584)*





___
<a id="redshift.resources.cluster.properties-2.automatedsnapshotretentionperiod.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19585)*





___
<a id="redshift.resources.cluster.properties-2.automatedsnapshotretentionperiod.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19586)*





___

___
<a id="redshift.resources.cluster.properties-2.availabilityzone"></a>

###  AvailabilityZone

** AvailabilityZone**:  *`object`* 

*Defined in [spec/spec.ts:19588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19588)*




<a id="redshift.resources.cluster.properties-2.availabilityzone.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-availabilityzone"

*Defined in [spec/spec.ts:19589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19589)*





___
<a id="redshift.resources.cluster.properties-2.availabilityzone.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19590](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19590)*





___
<a id="redshift.resources.cluster.properties-2.availabilityzone.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19591)*





___
<a id="redshift.resources.cluster.properties-2.availabilityzone.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19592)*





___

___
<a id="redshift.resources.cluster.properties-2.clusterparametergroupname"></a>

###  ClusterParameterGroupName

** ClusterParameterGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19594)*




<a id="redshift.resources.cluster.properties-2.clusterparametergroupname.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterparametergroupname"

*Defined in [spec/spec.ts:19595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19595)*





___
<a id="redshift.resources.cluster.properties-2.clusterparametergroupname.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19596)*





___
<a id="redshift.resources.cluster.properties-2.clusterparametergroupname.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19597)*





___
<a id="redshift.resources.cluster.properties-2.clusterparametergroupname.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19598)*





___

___
<a id="redshift.resources.cluster.properties-2.clustersecuritygroups"></a>

###  ClusterSecurityGroups

** ClusterSecurityGroups**:  *`object`* 

*Defined in [spec/spec.ts:19600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19600)*




<a id="redshift.resources.cluster.properties-2.clustersecuritygroups.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersecuritygroups"

*Defined in [spec/spec.ts:19601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19601)*





___
<a id="redshift.resources.cluster.properties-2.clustersecuritygroups.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19602)*





___
<a id="redshift.resources.cluster.properties-2.clustersecuritygroups.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19603)*





___
<a id="redshift.resources.cluster.properties-2.clustersecuritygroups.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19604)*





___
<a id="redshift.resources.cluster.properties-2.clustersecuritygroups.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19605)*





___
<a id="redshift.resources.cluster.properties-2.clustersecuritygroups.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19606)*





___

___
<a id="redshift.resources.cluster.properties-2.clustersubnetgroupname"></a>

###  ClusterSubnetGroupName

** ClusterSubnetGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19608)*




<a id="redshift.resources.cluster.properties-2.clustersubnetgroupname.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustersubnetgroupname"

*Defined in [spec/spec.ts:19609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19609)*





___
<a id="redshift.resources.cluster.properties-2.clustersubnetgroupname.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19610)*





___
<a id="redshift.resources.cluster.properties-2.clustersubnetgroupname.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19611)*





___
<a id="redshift.resources.cluster.properties-2.clustersubnetgroupname.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19612)*





___

___
<a id="redshift.resources.cluster.properties-2.clustertype"></a>

###  ClusterType

** ClusterType**:  *`object`* 

*Defined in [spec/spec.ts:19614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19614)*




<a id="redshift.resources.cluster.properties-2.clustertype.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clustertype"

*Defined in [spec/spec.ts:19615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19615)*





___
<a id="redshift.resources.cluster.properties-2.clustertype.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19616)*





___
<a id="redshift.resources.cluster.properties-2.clustertype.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19617)*





___
<a id="redshift.resources.cluster.properties-2.clustertype.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19618)*





___

___
<a id="redshift.resources.cluster.properties-2.clusterversion"></a>

###  ClusterVersion

** ClusterVersion**:  *`object`* 

*Defined in [spec/spec.ts:19620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19620)*




<a id="redshift.resources.cluster.properties-2.clusterversion.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-clusterversion"

*Defined in [spec/spec.ts:19621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19621)*





___
<a id="redshift.resources.cluster.properties-2.clusterversion.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19622)*





___
<a id="redshift.resources.cluster.properties-2.clusterversion.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19623)*





___
<a id="redshift.resources.cluster.properties-2.clusterversion.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19624)*





___

___
<a id="redshift.resources.cluster.properties-2.dbname"></a>

###  DBName

** DBName**:  *`object`* 

*Defined in [spec/spec.ts:19626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19626)*




<a id="redshift.resources.cluster.properties-2.dbname.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-dbname"

*Defined in [spec/spec.ts:19627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19627)*





___
<a id="redshift.resources.cluster.properties-2.dbname.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19628)*





___
<a id="redshift.resources.cluster.properties-2.dbname.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19629)*





___
<a id="redshift.resources.cluster.properties-2.dbname.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19630)*





___

___
<a id="redshift.resources.cluster.properties-2.elasticip"></a>

###  ElasticIp

** ElasticIp**:  *`object`* 

*Defined in [spec/spec.ts:19632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19632)*




<a id="redshift.resources.cluster.properties-2.elasticip.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-elasticip"

*Defined in [spec/spec.ts:19633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19633)*





___
<a id="redshift.resources.cluster.properties-2.elasticip.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19634)*





___
<a id="redshift.resources.cluster.properties-2.elasticip.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19635)*





___
<a id="redshift.resources.cluster.properties-2.elasticip.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19636)*





___

___
<a id="redshift.resources.cluster.properties-2.encrypted"></a>

###  Encrypted

** Encrypted**:  *`object`* 

*Defined in [spec/spec.ts:19638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19638)*




<a id="redshift.resources.cluster.properties-2.encrypted.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-encrypted"

*Defined in [spec/spec.ts:19639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19639)*





___
<a id="redshift.resources.cluster.properties-2.encrypted.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19640)*





___
<a id="redshift.resources.cluster.properties-2.encrypted.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19641)*





___
<a id="redshift.resources.cluster.properties-2.encrypted.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19642)*





___

___
<a id="redshift.resources.cluster.properties-2.hsmclientcertificateidentifier"></a>

###  HsmClientCertificateIdentifier

** HsmClientCertificateIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19644)*




<a id="redshift.resources.cluster.properties-2.hsmclientcertificateidentifier.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-hsmclientcertidentifier"

*Defined in [spec/spec.ts:19645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19645)*





___
<a id="redshift.resources.cluster.properties-2.hsmclientcertificateidentifier.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19646)*





___
<a id="redshift.resources.cluster.properties-2.hsmclientcertificateidentifier.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19647)*





___
<a id="redshift.resources.cluster.properties-2.hsmclientcertificateidentifier.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19648)*





___

___
<a id="redshift.resources.cluster.properties-2.hsmconfigurationidentifier"></a>

###  HsmConfigurationIdentifier

** HsmConfigurationIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19650)*




<a id="redshift.resources.cluster.properties-2.hsmconfigurationidentifier.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-HsmConfigurationIdentifier"

*Defined in [spec/spec.ts:19651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19651)*





___
<a id="redshift.resources.cluster.properties-2.hsmconfigurationidentifier.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19652)*





___
<a id="redshift.resources.cluster.properties-2.hsmconfigurationidentifier.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19653)*





___
<a id="redshift.resources.cluster.properties-2.hsmconfigurationidentifier.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19654)*





___

___
<a id="redshift.resources.cluster.properties-2.iamroles"></a>

###  IamRoles

** IamRoles**:  *`object`* 

*Defined in [spec/spec.ts:19656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19656)*




<a id="redshift.resources.cluster.properties-2.iamroles.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-iamroles"

*Defined in [spec/spec.ts:19657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19657)*





___
<a id="redshift.resources.cluster.properties-2.iamroles.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19658)*





___
<a id="redshift.resources.cluster.properties-2.iamroles.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19659)*





___
<a id="redshift.resources.cluster.properties-2.iamroles.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19660)*





___
<a id="redshift.resources.cluster.properties-2.iamroles.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19661)*





___
<a id="redshift.resources.cluster.properties-2.iamroles.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19662)*





___

___
<a id="redshift.resources.cluster.properties-2.kmskeyid"></a>

###  KmsKeyId

** KmsKeyId**:  *`object`* 

*Defined in [spec/spec.ts:19664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19664)*




<a id="redshift.resources.cluster.properties-2.kmskeyid.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-kmskeyid"

*Defined in [spec/spec.ts:19665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19665)*





___
<a id="redshift.resources.cluster.properties-2.kmskeyid.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19666)*





___
<a id="redshift.resources.cluster.properties-2.kmskeyid.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19667)*





___
<a id="redshift.resources.cluster.properties-2.kmskeyid.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19668)*





___

___
<a id="redshift.resources.cluster.properties-2.loggingproperties-1"></a>

###  LoggingProperties

** LoggingProperties**:  *`object`* 

*Defined in [spec/spec.ts:19670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19670)*




<a id="redshift.resources.cluster.properties-2.loggingproperties-1.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-loggingproperties"

*Defined in [spec/spec.ts:19671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19671)*





___
<a id="redshift.resources.cluster.properties-2.loggingproperties-1.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19672)*





___
<a id="redshift.resources.cluster.properties-2.loggingproperties-1.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "LoggingProperties"

*Defined in [spec/spec.ts:19673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19673)*





___
<a id="redshift.resources.cluster.properties-2.loggingproperties-1.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19674)*





___

___
<a id="redshift.resources.cluster.properties-2.masteruserpassword"></a>

###  MasterUserPassword

** MasterUserPassword**:  *`object`* 

*Defined in [spec/spec.ts:19676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19676)*




<a id="redshift.resources.cluster.properties-2.masteruserpassword.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masteruserpassword"

*Defined in [spec/spec.ts:19677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19677)*





___
<a id="redshift.resources.cluster.properties-2.masteruserpassword.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19678)*





___
<a id="redshift.resources.cluster.properties-2.masteruserpassword.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19679)*





___
<a id="redshift.resources.cluster.properties-2.masteruserpassword.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19680)*





___

___
<a id="redshift.resources.cluster.properties-2.masterusername"></a>

###  MasterUsername

** MasterUsername**:  *`object`* 

*Defined in [spec/spec.ts:19682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19682)*




<a id="redshift.resources.cluster.properties-2.masterusername.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-masterusername"

*Defined in [spec/spec.ts:19683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19683)*





___
<a id="redshift.resources.cluster.properties-2.masterusername.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19684)*





___
<a id="redshift.resources.cluster.properties-2.masterusername.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19685)*





___
<a id="redshift.resources.cluster.properties-2.masterusername.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19686)*





___

___
<a id="redshift.resources.cluster.properties-2.nodetype"></a>

###  NodeType

** NodeType**:  *`object`* 

*Defined in [spec/spec.ts:19688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19688)*




<a id="redshift.resources.cluster.properties-2.nodetype.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype"

*Defined in [spec/spec.ts:19689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19689)*





___
<a id="redshift.resources.cluster.properties-2.nodetype.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19690)*





___
<a id="redshift.resources.cluster.properties-2.nodetype.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19691)*





___
<a id="redshift.resources.cluster.properties-2.nodetype.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19692)*





___

___
<a id="redshift.resources.cluster.properties-2.numberofnodes"></a>

###  NumberOfNodes

** NumberOfNodes**:  *`object`* 

*Defined in [spec/spec.ts:19694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19694)*




<a id="redshift.resources.cluster.properties-2.numberofnodes.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-nodetype"

*Defined in [spec/spec.ts:19695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19695)*





___
<a id="redshift.resources.cluster.properties-2.numberofnodes.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:19696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19696)*





___
<a id="redshift.resources.cluster.properties-2.numberofnodes.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19697)*





___
<a id="redshift.resources.cluster.properties-2.numberofnodes.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19698)*





___

___
<a id="redshift.resources.cluster.properties-2.owneraccount"></a>

###  OwnerAccount

** OwnerAccount**:  *`object`* 

*Defined in [spec/spec.ts:19700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19700)*




<a id="redshift.resources.cluster.properties-2.owneraccount.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-owneraccount"

*Defined in [spec/spec.ts:19701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19701)*





___
<a id="redshift.resources.cluster.properties-2.owneraccount.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19702)*





___
<a id="redshift.resources.cluster.properties-2.owneraccount.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19703)*





___
<a id="redshift.resources.cluster.properties-2.owneraccount.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19704)*





___

___
<a id="redshift.resources.cluster.properties-2.port"></a>

###  Port

** Port**:  *`object`* 

*Defined in [spec/spec.ts:19706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19706)*




<a id="redshift.resources.cluster.properties-2.port.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-port"

*Defined in [spec/spec.ts:19707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19707)*





___
<a id="redshift.resources.cluster.properties-2.port.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:19708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19708)*





___
<a id="redshift.resources.cluster.properties-2.port.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19709)*





___
<a id="redshift.resources.cluster.properties-2.port.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19710)*





___

___
<a id="redshift.resources.cluster.properties-2.preferredmaintenancewindow"></a>

###  PreferredMaintenanceWindow

** PreferredMaintenanceWindow**:  *`object`* 

*Defined in [spec/spec.ts:19712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19712)*




<a id="redshift.resources.cluster.properties-2.preferredmaintenancewindow.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-preferredmaintenancewindow"

*Defined in [spec/spec.ts:19713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19713)*





___
<a id="redshift.resources.cluster.properties-2.preferredmaintenancewindow.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19714)*





___
<a id="redshift.resources.cluster.properties-2.preferredmaintenancewindow.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19715)*





___
<a id="redshift.resources.cluster.properties-2.preferredmaintenancewindow.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19716)*





___

___
<a id="redshift.resources.cluster.properties-2.publiclyaccessible"></a>

###  PubliclyAccessible

** PubliclyAccessible**:  *`object`* 

*Defined in [spec/spec.ts:19718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19718)*




<a id="redshift.resources.cluster.properties-2.publiclyaccessible.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-publiclyaccessible"

*Defined in [spec/spec.ts:19719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19719)*





___
<a id="redshift.resources.cluster.properties-2.publiclyaccessible.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:19720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19720)*





___
<a id="redshift.resources.cluster.properties-2.publiclyaccessible.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19721)*





___
<a id="redshift.resources.cluster.properties-2.publiclyaccessible.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19722)*





___

___
<a id="redshift.resources.cluster.properties-2.snapshotclusteridentifier"></a>

###  SnapshotClusterIdentifier

** SnapshotClusterIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19724)*




<a id="redshift.resources.cluster.properties-2.snapshotclusteridentifier.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotclusteridentifier"

*Defined in [spec/spec.ts:19725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19725)*





___
<a id="redshift.resources.cluster.properties-2.snapshotclusteridentifier.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19726)*





___
<a id="redshift.resources.cluster.properties-2.snapshotclusteridentifier.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19727)*





___
<a id="redshift.resources.cluster.properties-2.snapshotclusteridentifier.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19728)*





___

___
<a id="redshift.resources.cluster.properties-2.snapshotidentifier"></a>

###  SnapshotIdentifier

** SnapshotIdentifier**:  *`object`* 

*Defined in [spec/spec.ts:19730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19730)*




<a id="redshift.resources.cluster.properties-2.snapshotidentifier.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-snapshotidentifier"

*Defined in [spec/spec.ts:19731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19731)*





___
<a id="redshift.resources.cluster.properties-2.snapshotidentifier.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19732)*





___
<a id="redshift.resources.cluster.properties-2.snapshotidentifier.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19733)*





___
<a id="redshift.resources.cluster.properties-2.snapshotidentifier.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19734](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19734)*





___

___
<a id="redshift.resources.cluster.properties-2.tags"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19736)*




<a id="redshift.resources.cluster.properties-2.tags.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-tags"

*Defined in [spec/spec.ts:19737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19737)*





___
<a id="redshift.resources.cluster.properties-2.tags.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19738)*





___
<a id="redshift.resources.cluster.properties-2.tags.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19739)*





___
<a id="redshift.resources.cluster.properties-2.tags.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19740)*





___
<a id="redshift.resources.cluster.properties-2.tags.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19741)*





___
<a id="redshift.resources.cluster.properties-2.tags.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19742)*





___

___
<a id="redshift.resources.cluster.properties-2.vpcsecuritygroupids"></a>

###  VpcSecurityGroupIds

** VpcSecurityGroupIds**:  *`object`* 

*Defined in [spec/spec.ts:19744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19744)*




<a id="redshift.resources.cluster.properties-2.vpcsecuritygroupids.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-cluster.html#cfn-redshift-cluster-vpcsecuritygroupids"

*Defined in [spec/spec.ts:19745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19745)*





___
<a id="redshift.resources.cluster.properties-2.vpcsecuritygroupids.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19746)*





___
<a id="redshift.resources.cluster.properties-2.vpcsecuritygroupids.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19747)*





___
<a id="redshift.resources.cluster.properties-2.vpcsecuritygroupids.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19748)*





___
<a id="redshift.resources.cluster.properties-2.vpcsecuritygroupids.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19749)*





___
<a id="redshift.resources.cluster.properties-2.vpcsecuritygroupids.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19750)*





___

___

___

___
<a id="redshift.resources.clusterparametergroup"></a>

###  ClusterParameterGroup

** ClusterParameterGroup**:  *`object`* 

*Defined in [spec/spec.ts:19755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19755)*




<a id="redshift.resources.clusterparametergroup.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html"

*Defined in [spec/spec.ts:19756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19756)*





___
<a id="redshift.resources.clusterparametergroup.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Redshift::ClusterParameterGroup"

*Defined in [spec/spec.ts:19787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19787)*





___
<a id="redshift.resources.clusterparametergroup.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19757)*




<a id="redshift.resources.clusterparametergroup.properties-3.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:19758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19758)*




<a id="redshift.resources.clusterparametergroup.properties-3.description.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-description"

*Defined in [spec/spec.ts:19759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19759)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.description.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19760)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.description.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19761)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.description.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19762)*





___

___
<a id="redshift.resources.clusterparametergroup.properties-3.parametergroupfamily"></a>

###  ParameterGroupFamily

** ParameterGroupFamily**:  *`object`* 

*Defined in [spec/spec.ts:19764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19764)*




<a id="redshift.resources.clusterparametergroup.properties-3.parametergroupfamily.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parametergroupfamily"

*Defined in [spec/spec.ts:19765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19765)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parametergroupfamily.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19766)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parametergroupfamily.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19767)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parametergroupfamily.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19768)*





___

___
<a id="redshift.resources.clusterparametergroup.properties-3.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:19770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19770)*




<a id="redshift.resources.clusterparametergroup.properties-3.parameters.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-parameters"

*Defined in [spec/spec.ts:19771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19771)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parameters.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19772)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parameters.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Parameter"

*Defined in [spec/spec.ts:19773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19773)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parameters.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19774)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parameters.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19775)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.parameters.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19776)*





___

___
<a id="redshift.resources.clusterparametergroup.properties-3.tags-1"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19778)*




<a id="redshift.resources.clusterparametergroup.properties-3.tags-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clusterparametergroup.html#cfn-redshift-clusterparametergroup-tags"

*Defined in [spec/spec.ts:19779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19779)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.tags-1.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19780)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.tags-1.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19781)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.tags-1.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19782)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.tags-1.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19783)*





___
<a id="redshift.resources.clusterparametergroup.properties-3.tags-1.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19784)*





___

___

___

___
<a id="redshift.resources.clustersecuritygroup"></a>

###  ClusterSecurityGroup

** ClusterSecurityGroup**:  *`object`* 

*Defined in [spec/spec.ts:19789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19789)*




<a id="redshift.resources.clustersecuritygroup.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html"

*Defined in [spec/spec.ts:19790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19790)*





___
<a id="redshift.resources.clustersecuritygroup.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Redshift::ClusterSecurityGroup"

*Defined in [spec/spec.ts:19807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19807)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19791)*




<a id="redshift.resources.clustersecuritygroup.properties-4.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:19792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19792)*




<a id="redshift.resources.clustersecuritygroup.properties-4.description-1.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-description"

*Defined in [spec/spec.ts:19793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19793)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.description-1.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19794)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.description-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19795)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.description-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19796)*





___

___
<a id="redshift.resources.clustersecuritygroup.properties-4.tags-2"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19798)*




<a id="redshift.resources.clustersecuritygroup.properties-4.tags-2.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroup.html#cfn-redshift-clustersecuritygroup-tags"

*Defined in [spec/spec.ts:19799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19799)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.tags-2.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19800)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.tags-2.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19801)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.tags-2.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19802)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.tags-2.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19803)*





___
<a id="redshift.resources.clustersecuritygroup.properties-4.tags-2.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19804)*





___

___

___

___
<a id="redshift.resources.clustersecuritygroupingress"></a>

###  ClusterSecurityGroupIngress

** ClusterSecurityGroupIngress**:  *`object`* 

*Defined in [spec/spec.ts:19809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19809)*




<a id="redshift.resources.clustersecuritygroupingress.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html"

*Defined in [spec/spec.ts:19810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19810)*





___
<a id="redshift.resources.clustersecuritygroupingress.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Redshift::ClusterSecurityGroupIngress"

*Defined in [spec/spec.ts:19837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19837)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19811)*




<a id="redshift.resources.clustersecuritygroupingress.properties-5.cidrip"></a>

###  CIDRIP

** CIDRIP**:  *`object`* 

*Defined in [spec/spec.ts:19812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19812)*




<a id="redshift.resources.clustersecuritygroupingress.properties-5.cidrip.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-cidrip"

*Defined in [spec/spec.ts:19813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19813)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.cidrip.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19814)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.cidrip.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19815)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.cidrip.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19816)*





___

___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.clustersecuritygroupname"></a>

###  ClusterSecurityGroupName

** ClusterSecurityGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19818)*




<a id="redshift.resources.clustersecuritygroupingress.properties-5.clustersecuritygroupname.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-clustersecuritygroupname"

*Defined in [spec/spec.ts:19819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19819)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.clustersecuritygroupname.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19820)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.clustersecuritygroupname.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19821](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19821)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.clustersecuritygroupname.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19822)*





___

___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupname"></a>

###  EC2SecurityGroupName

** EC2SecurityGroupName**:  *`object`* 

*Defined in [spec/spec.ts:19824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19824)*




<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupname.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupname"

*Defined in [spec/spec.ts:19825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19825)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupname.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19826)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupname.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19827)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupname.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19828)*





___

___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupownerid"></a>

###  EC2SecurityGroupOwnerId

** EC2SecurityGroupOwnerId**:  *`object`* 

*Defined in [spec/spec.ts:19830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19830)*




<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupownerid.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersecuritygroupingress.html#cfn-redshift-clustersecuritygroupingress-ec2securitygroupownerid"

*Defined in [spec/spec.ts:19831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19831)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupownerid.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19832)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupownerid.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19833)*





___
<a id="redshift.resources.clustersecuritygroupingress.properties-5.ec2securitygroupownerid.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:19834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19834)*





___

___

___

___
<a id="redshift.resources.clustersubnetgroup"></a>

###  ClusterSubnetGroup

** ClusterSubnetGroup**:  *`object`* 

*Defined in [spec/spec.ts:19839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19839)*




<a id="redshift.resources.clustersubnetgroup.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html"

*Defined in [spec/spec.ts:19840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19840)*





___
<a id="redshift.resources.clustersubnetgroup.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::Redshift::ClusterSubnetGroup"

*Defined in [spec/spec.ts:19865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19865)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:19841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19841)*




<a id="redshift.resources.clustersubnetgroup.properties-6.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:19842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19842)*




<a id="redshift.resources.clustersubnetgroup.properties-6.description-2.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-description"

*Defined in [spec/spec.ts:19843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19843)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.description-2.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19844)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.description-2.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19845)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.description-2.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19846)*





___

___
<a id="redshift.resources.clustersubnetgroup.properties-6.subnetids"></a>

###  SubnetIds

** SubnetIds**:  *`object`* 

*Defined in [spec/spec.ts:19848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19848)*




<a id="redshift.resources.clustersubnetgroup.properties-6.subnetids.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-subnetids"

*Defined in [spec/spec.ts:19849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19849)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.subnetids.duplicatesallowed-7"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19850)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.subnetids.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:19851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19851)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.subnetids.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19852)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.subnetids.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19853)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.subnetids.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19854)*





___

___
<a id="redshift.resources.clustersubnetgroup.properties-6.tags-3"></a>

###  Tags

** Tags**:  *`object`* 

*Defined in [spec/spec.ts:19856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19856)*




<a id="redshift.resources.clustersubnetgroup.properties-6.tags-3.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-clustersubnetgroup.html#cfn-redshift-clustersubnetgroup-tags"

*Defined in [spec/spec.ts:19857](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19857)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.tags-3.duplicatesallowed-8"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = true

*Defined in [spec/spec.ts:19858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19858)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.tags-3.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Tag"

*Defined in [spec/spec.ts:19859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19859)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.tags-3.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:19860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19860)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.tags-3.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:19861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19861)*





___
<a id="redshift.resources.clustersubnetgroup.properties-6.tags-3.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:19862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L19862)*





___

___

___

___

___

<a id="sdb"></a>

## Object literal: SDB


<a id="sdb.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:21368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21368)*


#### Type declaration





___
<a id="sdb.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:21354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21354)*




<a id="sdb.resources.domain"></a>

###  Domain

** Domain**:  *`object`* 

*Defined in [spec/spec.ts:21355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21355)*




<a id="sdb.resources.domain.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html"

*Defined in [spec/spec.ts:21356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21356)*





___
<a id="sdb.resources.domain.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SDB::Domain"

*Defined in [spec/spec.ts:21365](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21365)*





___
<a id="sdb.resources.domain.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21357)*




<a id="sdb.resources.domain.properties.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:21358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21358)*




<a id="sdb.resources.domain.properties.description.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-simpledb.html#cfn-sdb-domain-description"

*Defined in [spec/spec.ts:21359](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21359)*





___
<a id="sdb.resources.domain.properties.description.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21360)*





___
<a id="sdb.resources.domain.properties.description.required"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21361)*





___
<a id="sdb.resources.domain.properties.description.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21362)*





___

___

___

___

___

<a id="ssm"></a>

## Object literal: SSM


<a id="ssm.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:21833](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21833)*




<a id="ssm.models.logginginfo"></a>

###  LoggingInfo

** LoggingInfo**:  *`object`* 

*Defined in [spec/spec.ts:21867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21867)*




<a id="ssm.models.logginginfo.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html"

*Defined in [spec/spec.ts:21868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21868)*





___
<a id="ssm.models.logginginfo.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.LoggingInfo"

*Defined in [spec/spec.ts:21889](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21889)*





___
<a id="ssm.models.logginginfo.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21869)*




<a id="ssm.models.logginginfo.properties.region"></a>

###  Region

** Region**:  *`object`* 

*Defined in [spec/spec.ts:21876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21876)*




<a id="ssm.models.logginginfo.properties.region.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-region"

*Defined in [spec/spec.ts:21878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21878)*





___
<a id="ssm.models.logginginfo.properties.region.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21879)*





___
<a id="ssm.models.logginginfo.properties.region.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21877)*





___
<a id="ssm.models.logginginfo.properties.region.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21880)*





___

___
<a id="ssm.models.logginginfo.properties.s3bucket"></a>

###  S3Bucket

** S3Bucket**:  *`object`* 

*Defined in [spec/spec.ts:21870](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21870)*




<a id="ssm.models.logginginfo.properties.s3bucket.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3bucket"

*Defined in [spec/spec.ts:21872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21872)*





___
<a id="ssm.models.logginginfo.properties.s3bucket.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21873](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21873)*





___
<a id="ssm.models.logginginfo.properties.s3bucket.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21871](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21871)*





___
<a id="ssm.models.logginginfo.properties.s3bucket.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21874)*





___

___
<a id="ssm.models.logginginfo.properties.s3prefix"></a>

###  S3Prefix

** S3Prefix**:  *`object`* 

*Defined in [spec/spec.ts:21882](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21882)*




<a id="ssm.models.logginginfo.properties.s3prefix.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-logginginfo.html#cfn-ssm-maintenancewindowtask-logginginfo-s3prefix"

*Defined in [spec/spec.ts:21884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21884)*





___
<a id="ssm.models.logginginfo.properties.s3prefix.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21885)*





___
<a id="ssm.models.logginginfo.properties.s3prefix.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21883)*





___
<a id="ssm.models.logginginfo.properties.s3prefix.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21886)*





___

___

___

___
<a id="ssm.models.maintenancewindowautomationparameters"></a>

###  MaintenanceWindowAutomationParameters

** MaintenanceWindowAutomationParameters**:  *`object`* 

*Defined in [spec/spec.ts:21891](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21891)*




<a id="ssm.models.maintenancewindowautomationparameters.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html"

*Defined in [spec/spec.ts:21892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21892)*





___
<a id="ssm.models.maintenancewindowautomationparameters.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowAutomationParameters"

*Defined in [spec/spec.ts:21907](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21907)*





___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21893)*




<a id="ssm.models.maintenancewindowautomationparameters.properties-1.documentversion"></a>

###  DocumentVersion

** DocumentVersion**:  *`object`* 

*Defined in [spec/spec.ts:21900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21900)*




<a id="ssm.models.maintenancewindowautomationparameters.properties-1.documentversion.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-documentversion"

*Defined in [spec/spec.ts:21902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21902)*





___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1.documentversion.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21903)*





___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1.documentversion.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21901](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21901)*





___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1.documentversion.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21904)*





___

___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1.parameters"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:21894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21894)*




<a id="ssm.models.maintenancewindowautomationparameters.properties-1.parameters.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters"

*Defined in [spec/spec.ts:21896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21896)*





___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1.parameters.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:21897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21897)*





___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1.parameters.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21895)*





___
<a id="ssm.models.maintenancewindowautomationparameters.properties-1.parameters.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21898)*





___

___

___

___
<a id="ssm.models.maintenancewindowlambdaparameters"></a>

###  MaintenanceWindowLambdaParameters

** MaintenanceWindowLambdaParameters**:  *`object`* 

*Defined in [spec/spec.ts:21909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21909)*




<a id="ssm.models.maintenancewindowlambdaparameters.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html"

*Defined in [spec/spec.ts:21910](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21910)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowLambdaParameters"

*Defined in [spec/spec.ts:21931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21931)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21911](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21911)*




<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.clientcontext"></a>

###  ClientContext

** ClientContext**:  *`object`* 

*Defined in [spec/spec.ts:21912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21912)*




<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.clientcontext.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-clientcontext"

*Defined in [spec/spec.ts:21914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21914)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.clientcontext.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21915)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.clientcontext.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21913)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.clientcontext.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21916)*





___

___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.payload"></a>

###  Payload

** Payload**:  *`object`* 

*Defined in [spec/spec.ts:21924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21924)*




<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.payload.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-payload"

*Defined in [spec/spec.ts:21926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21926)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.payload.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21927](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21927)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.payload.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21925)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.payload.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21928)*





___

___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.qualifier"></a>

###  Qualifier

** Qualifier**:  *`object`* 

*Defined in [spec/spec.ts:21918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21918)*




<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.qualifier.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowlambdaparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowlambdaparameters-qualifier"

*Defined in [spec/spec.ts:21920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21920)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.qualifier.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21921](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21921)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.qualifier.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21919)*





___
<a id="ssm.models.maintenancewindowlambdaparameters.properties-2.qualifier.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21922)*





___

___

___

___
<a id="ssm.models.maintenancewindowruncommandparameters"></a>

###  MaintenanceWindowRunCommandParameters

** MaintenanceWindowRunCommandParameters**:  *`object`* 

*Defined in [spec/spec.ts:21933](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21933)*




<a id="ssm.models.maintenancewindowruncommandparameters.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html"

*Defined in [spec/spec.ts:21934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21934)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowRunCommandParameters"

*Defined in [spec/spec.ts:21991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21991)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21935)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.comment"></a>

###  Comment

** Comment**:  *`object`* 

*Defined in [spec/spec.ts:21942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21942)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.comment.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-comment"

*Defined in [spec/spec.ts:21944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21944)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.comment.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21945](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21945)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.comment.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21943)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.comment.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21946](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21946)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthash"></a>

###  DocumentHash

** DocumentHash**:  *`object`* 

*Defined in [spec/spec.ts:21984](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21984)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthash.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthash"

*Defined in [spec/spec.ts:21986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21986)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthash.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21987)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthash.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21985)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthash.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21988)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthashtype"></a>

###  DocumentHashType

** DocumentHashType**:  *`object`* 

*Defined in [spec/spec.ts:21960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21960)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthashtype.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-documenthashtype"

*Defined in [spec/spec.ts:21962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21962)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthashtype.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21963](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21963)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthashtype.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21961)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.documenthashtype.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21964](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21964)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.notificationconfig"></a>

###  NotificationConfig

** NotificationConfig**:  *`object`* 

*Defined in [spec/spec.ts:21972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21972)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.notificationconfig.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-notificationconfig"

*Defined in [spec/spec.ts:21975](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21975)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.notificationconfig.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21974)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.notificationconfig.type"></a>

###  Type

**●  Type**:  *`string`*  = "NotificationConfig"

*Defined in [spec/spec.ts:21973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21973)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.notificationconfig.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21976)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3bucketname"></a>

###  OutputS3BucketName

** OutputS3BucketName**:  *`object`* 

*Defined in [spec/spec.ts:21978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21978)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3bucketname.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3bucketname"

*Defined in [spec/spec.ts:21980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21980)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3bucketname.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21981](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21981)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3bucketname.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21979)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3bucketname.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21982](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21982)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3keyprefix"></a>

###  OutputS3KeyPrefix

** OutputS3KeyPrefix**:  *`object`* 

*Defined in [spec/spec.ts:21948](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21948)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3keyprefix.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-outputs3keyprefix"

*Defined in [spec/spec.ts:21950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21950)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3keyprefix.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21951)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3keyprefix.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21949)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.outputs3keyprefix.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21952)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.parameters-1"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:21954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21954)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.parameters-1.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-parameters"

*Defined in [spec/spec.ts:21956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21956)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.parameters-1.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:21957](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21957)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.parameters-1.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21955)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.parameters-1.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21958)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.servicerolearn"></a>

###  ServiceRoleArn

** ServiceRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:21966](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21966)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.servicerolearn.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-servicerolearn"

*Defined in [spec/spec.ts:21968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21968)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.servicerolearn.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21969)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.servicerolearn.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21967)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.servicerolearn.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21970)*





___

___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.timeoutseconds"></a>

###  TimeoutSeconds

** TimeoutSeconds**:  *`object`* 

*Defined in [spec/spec.ts:21936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21936)*




<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.timeoutseconds.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowruncommandparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowruncommandparameters-timeoutseconds"

*Defined in [spec/spec.ts:21938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21938)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.timeoutseconds.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:21939](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21939)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.timeoutseconds.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21937)*





___
<a id="ssm.models.maintenancewindowruncommandparameters.properties-3.timeoutseconds.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21940)*





___

___

___

___
<a id="ssm.models.maintenancewindowstepfunctionsparameters"></a>

###  MaintenanceWindowStepFunctionsParameters

** MaintenanceWindowStepFunctionsParameters**:  *`object`* 

*Defined in [spec/spec.ts:21993](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21993)*




<a id="ssm.models.maintenancewindowstepfunctionsparameters.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html"

*Defined in [spec/spec.ts:21994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21994)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.MaintenanceWindowStepFunctionsParameters"

*Defined in [spec/spec.ts:22009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22009)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21995)*




<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.input"></a>

###  Input

** Input**:  *`object`* 

*Defined in [spec/spec.ts:21996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21996)*




<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.input.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-input"

*Defined in [spec/spec.ts:21998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21998)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.input.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21999](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21999)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.input.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21997)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.input.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22000)*





___

___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.name-5"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22002)*




<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.name-5.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowstepfunctionsparameters-name"

*Defined in [spec/spec.ts:22004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22004)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.name-5.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22005](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22005)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.name-5.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22003)*





___
<a id="ssm.models.maintenancewindowstepfunctionsparameters.properties-4.name-5.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22006](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22006)*





___

___

___

___
<a id="ssm.models.notificationconfig-1"></a>

###  NotificationConfig

** NotificationConfig**:  *`object`* 

*Defined in [spec/spec.ts:22011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22011)*




<a id="ssm.models.notificationconfig-1.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html"

*Defined in [spec/spec.ts:22012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22012)*





___
<a id="ssm.models.notificationconfig-1.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.NotificationConfig"

*Defined in [spec/spec.ts:22034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22034)*





___
<a id="ssm.models.notificationconfig-1.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22013)*




<a id="ssm.models.notificationconfig-1.properties-5.notificationarn"></a>

###  NotificationArn

** NotificationArn**:  *`object`* 

*Defined in [spec/spec.ts:22014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22014)*




<a id="ssm.models.notificationconfig-1.properties-5.notificationarn.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationarn"

*Defined in [spec/spec.ts:22016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22016)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationarn.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22017](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22017)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationarn.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22015)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationarn.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22018)*





___

___
<a id="ssm.models.notificationconfig-1.properties-5.notificationevents"></a>

###  NotificationEvents

** NotificationEvents**:  *`object`* 

*Defined in [spec/spec.ts:22026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22026)*




<a id="ssm.models.notificationconfig-1.properties-5.notificationevents.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationevents"

*Defined in [spec/spec.ts:22030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22030)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationevents.primitiveitemtype"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22027)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationevents.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22029](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22029)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationevents.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22028)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationevents.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22031)*





___

___
<a id="ssm.models.notificationconfig-1.properties-5.notificationtype"></a>

###  NotificationType

** NotificationType**:  *`object`* 

*Defined in [spec/spec.ts:22020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22020)*




<a id="ssm.models.notificationconfig-1.properties-5.notificationtype.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-notificationconfig.html#cfn-ssm-maintenancewindowtask-notificationconfig-notificationtype"

*Defined in [spec/spec.ts:22022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22022)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationtype.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22023](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22023)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationtype.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22021)*





___
<a id="ssm.models.notificationconfig-1.properties-5.notificationtype.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22024)*





___

___

___

___
<a id="ssm.models.parametervalues"></a>

###  ParameterValues

** ParameterValues**:  *`object`* 

*Defined in [spec/spec.ts:21834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21834)*




<a id="ssm.models.parametervalues.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-parametervalues.html"

*Defined in [spec/spec.ts:21835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21835)*





___
<a id="ssm.models.parametervalues.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::Association.ParameterValues"

*Defined in [spec/spec.ts:21846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21846)*





___
<a id="ssm.models.parametervalues.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21836)*




<a id="ssm.models.parametervalues.properties-6.parametervalues-1"></a>

###  ParameterValues

** ParameterValues**:  *`object`* 

*Defined in [spec/spec.ts:21837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21837)*




<a id="ssm.models.parametervalues.properties-6.parametervalues-1.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-association-parametervalues.html#cfn-ssm-association-parametervalues-parametervalues"

*Defined in [spec/spec.ts:21838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21838)*





___
<a id="ssm.models.parametervalues.properties-6.parametervalues-1.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21839](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21839)*





___
<a id="ssm.models.parametervalues.properties-6.parametervalues-1.primitiveitemtype-1"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21840](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21840)*





___
<a id="ssm.models.parametervalues.properties-6.parametervalues-1.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21841)*





___
<a id="ssm.models.parametervalues.properties-6.parametervalues-1.type-2"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:21842](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21842)*





___
<a id="ssm.models.parametervalues.properties-6.parametervalues-1.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21843)*





___

___

___

___
<a id="ssm.models.patchfilter"></a>

###  PatchFilter

** PatchFilter**:  *`object`* 

*Defined in [spec/spec.ts:22066](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22066)*




<a id="ssm.models.patchfilter.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html"

*Defined in [spec/spec.ts:22067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22067)*





___
<a id="ssm.models.patchfilter.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::PatchBaseline.PatchFilter"

*Defined in [spec/spec.ts:22083](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22083)*





___
<a id="ssm.models.patchfilter.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22068](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22068)*




<a id="ssm.models.patchfilter.properties-7.key"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:22076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22076)*




<a id="ssm.models.patchfilter.properties-7.key.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html#cfn-ssm-patchbaseline-patchfilter-key"

*Defined in [spec/spec.ts:22078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22078)*





___
<a id="ssm.models.patchfilter.properties-7.key.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22079)*





___
<a id="ssm.models.patchfilter.properties-7.key.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22077](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22077)*





___
<a id="ssm.models.patchfilter.properties-7.key.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22080)*





___

___
<a id="ssm.models.patchfilter.properties-7.values"></a>

###  Values

** Values**:  *`object`* 

*Defined in [spec/spec.ts:22069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22069)*




<a id="ssm.models.patchfilter.properties-7.values.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfilter.html#cfn-ssm-patchbaseline-patchfilter-values"

*Defined in [spec/spec.ts:22073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22073)*





___
<a id="ssm.models.patchfilter.properties-7.values.primitiveitemtype-2"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22070)*





___
<a id="ssm.models.patchfilter.properties-7.values.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22072)*





___
<a id="ssm.models.patchfilter.properties-7.values.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22071)*





___
<a id="ssm.models.patchfilter.properties-7.values.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22074)*





___

___

___

___
<a id="ssm.models.patchfiltergroup"></a>

###  PatchFilterGroup

** PatchFilterGroup**:  *`object`* 

*Defined in [spec/spec.ts:22085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22085)*




<a id="ssm.models.patchfiltergroup.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfiltergroup.html"

*Defined in [spec/spec.ts:22086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22086)*





___
<a id="ssm.models.patchfiltergroup.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::PatchBaseline.PatchFilterGroup"

*Defined in [spec/spec.ts:22096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22096)*





___
<a id="ssm.models.patchfiltergroup.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22087)*




<a id="ssm.models.patchfiltergroup.properties-8.patchfilters"></a>

###  PatchFilters

** PatchFilters**:  *`object`* 

*Defined in [spec/spec.ts:22088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22088)*




<a id="ssm.models.patchfiltergroup.properties-8.patchfilters.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-patchfiltergroup.html#cfn-ssm-patchbaseline-patchfiltergroup-patchfilters"

*Defined in [spec/spec.ts:22091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22091)*





___
<a id="ssm.models.patchfiltergroup.properties-8.patchfilters.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "PatchFilter"

*Defined in [spec/spec.ts:22092](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22092)*





___
<a id="ssm.models.patchfiltergroup.properties-8.patchfilters.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22090](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22090)*





___
<a id="ssm.models.patchfiltergroup.properties-8.patchfilters.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22089](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22089)*





___
<a id="ssm.models.patchfiltergroup.properties-8.patchfilters.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22093)*





___

___

___

___
<a id="ssm.models.rule"></a>

###  Rule

** Rule**:  *`object`* 

*Defined in [spec/spec.ts:22098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22098)*




<a id="ssm.models.rule.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rule.html"

*Defined in [spec/spec.ts:22099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22099)*





___
<a id="ssm.models.rule.name-10"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::PatchBaseline.Rule"

*Defined in [spec/spec.ts:22120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22120)*





___
<a id="ssm.models.rule.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22100)*




<a id="ssm.models.rule.properties-9.approveafterdays"></a>

###  ApproveAfterDays

** ApproveAfterDays**:  *`object`* 

*Defined in [spec/spec.ts:22107](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22107)*




<a id="ssm.models.rule.properties-9.approveafterdays.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rule.html#cfn-ssm-patchbaseline-rule-approveafterdays"

*Defined in [spec/spec.ts:22109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22109)*





___
<a id="ssm.models.rule.properties-9.approveafterdays.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:22110](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22110)*





___
<a id="ssm.models.rule.properties-9.approveafterdays.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22108](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22108)*





___
<a id="ssm.models.rule.properties-9.approveafterdays.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22111](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22111)*





___

___
<a id="ssm.models.rule.properties-9.compliancelevel"></a>

###  ComplianceLevel

** ComplianceLevel**:  *`object`* 

*Defined in [spec/spec.ts:22113](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22113)*




<a id="ssm.models.rule.properties-9.compliancelevel.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rule.html#cfn-ssm-patchbaseline-rule-compliancelevel"

*Defined in [spec/spec.ts:22115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22115)*





___
<a id="ssm.models.rule.properties-9.compliancelevel.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22116)*





___
<a id="ssm.models.rule.properties-9.compliancelevel.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22114)*





___
<a id="ssm.models.rule.properties-9.compliancelevel.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22117)*





___

___
<a id="ssm.models.rule.properties-9.patchfiltergroup-1"></a>

###  PatchFilterGroup

** PatchFilterGroup**:  *`object`* 

*Defined in [spec/spec.ts:22101](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22101)*




<a id="ssm.models.rule.properties-9.patchfiltergroup-1.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rule.html#cfn-ssm-patchbaseline-rule-patchfiltergroup"

*Defined in [spec/spec.ts:22104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22104)*





___
<a id="ssm.models.rule.properties-9.patchfiltergroup-1.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22103)*





___
<a id="ssm.models.rule.properties-9.patchfiltergroup-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "PatchFilterGroup"

*Defined in [spec/spec.ts:22102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22102)*





___
<a id="ssm.models.rule.properties-9.patchfiltergroup-1.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22105)*





___

___

___

___
<a id="ssm.models.rulegroup"></a>

###  RuleGroup

** RuleGroup**:  *`object`* 

*Defined in [spec/spec.ts:22122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22122)*




<a id="ssm.models.rulegroup.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rulegroup.html"

*Defined in [spec/spec.ts:22123](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22123)*





___
<a id="ssm.models.rulegroup.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::PatchBaseline.RuleGroup"

*Defined in [spec/spec.ts:22133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22133)*





___
<a id="ssm.models.rulegroup.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22124)*




<a id="ssm.models.rulegroup.properties-10.patchrules"></a>

###  PatchRules

** PatchRules**:  *`object`* 

*Defined in [spec/spec.ts:22125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22125)*




<a id="ssm.models.rulegroup.properties-10.patchrules.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-patchbaseline-rulegroup.html#cfn-ssm-patchbaseline-rulegroup-patchrules"

*Defined in [spec/spec.ts:22128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22128)*





___
<a id="ssm.models.rulegroup.properties-10.patchrules.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Rule"

*Defined in [spec/spec.ts:22129](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22129)*





___
<a id="ssm.models.rulegroup.properties-10.patchrules.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22127)*





___
<a id="ssm.models.rulegroup.properties-10.patchrules.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22126)*





___
<a id="ssm.models.rulegroup.properties-10.patchrules.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22130)*





___

___

___

___
<a id="ssm.models.target"></a>

###  Target

** Target**:  *`object`* 

*Defined in [spec/spec.ts:21848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21848)*




<a id="ssm.models.target.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-target.html"

*Defined in [spec/spec.ts:21849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21849)*





___
<a id="ssm.models.target.name-12"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.Target"

*Defined in [spec/spec.ts:21865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21865)*





___
<a id="ssm.models.target.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21850)*




<a id="ssm.models.target.properties-11.key-1"></a>

###  Key

** Key**:  *`object`* 

*Defined in [spec/spec.ts:21858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21858)*




<a id="ssm.models.target.properties-11.key-1.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-target.html#cfn-ssm-maintenancewindowtask-target-key"

*Defined in [spec/spec.ts:21860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21860)*





___
<a id="ssm.models.target.properties-11.key-1.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21861)*





___
<a id="ssm.models.target.properties-11.key-1.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21859)*





___
<a id="ssm.models.target.properties-11.key-1.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21862)*





___

___
<a id="ssm.models.target.properties-11.values-1"></a>

###  Values

** Values**:  *`object`* 

*Defined in [spec/spec.ts:21851](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21851)*




<a id="ssm.models.target.properties-11.values-1.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-target.html#cfn-ssm-maintenancewindowtask-target-values"

*Defined in [spec/spec.ts:21855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21855)*





___
<a id="ssm.models.target.properties-11.values-1.primitiveitemtype-3"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21852)*





___
<a id="ssm.models.target.properties-11.values-1.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21854)*





___
<a id="ssm.models.target.properties-11.values-1.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:21853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21853)*





___
<a id="ssm.models.target.properties-11.values-1.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21856)*





___

___

___

___
<a id="ssm.models.taskinvocationparameters"></a>

###  TaskInvocationParameters

** TaskInvocationParameters**:  *`object`* 

*Defined in [spec/spec.ts:22036](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22036)*




<a id="ssm.models.taskinvocationparameters.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-taskinvocationparameters.html"

*Defined in [spec/spec.ts:22037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22037)*





___
<a id="ssm.models.taskinvocationparameters.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask.TaskInvocationParameters"

*Defined in [spec/spec.ts:22064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22064)*





___
<a id="ssm.models.taskinvocationparameters.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22038](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22038)*




<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowautomationparameters-1"></a>

###  MaintenanceWindowAutomationParameters

** MaintenanceWindowAutomationParameters**:  *`object`* 

*Defined in [spec/spec.ts:22045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22045)*




<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowautomationparameters-1.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-taskinvocationparameters.html#cfn-ssm-maintenancewindowtask-taskinvocationparameters-maintenancewindowautomationparameters"

*Defined in [spec/spec.ts:22048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22048)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowautomationparameters-1.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22047](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22047)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowautomationparameters-1.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "MaintenanceWindowAutomationParameters"

*Defined in [spec/spec.ts:22046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22046)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowautomationparameters-1.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22049)*





___

___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowlambdaparameters-1"></a>

###  MaintenanceWindowLambdaParameters

** MaintenanceWindowLambdaParameters**:  *`object`* 

*Defined in [spec/spec.ts:22057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22057)*




<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowlambdaparameters-1.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-taskinvocationparameters.html#cfn-ssm-maintenancewindowtask-taskinvocationparameters-maintenancewindowlambdaparameters"

*Defined in [spec/spec.ts:22060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22060)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowlambdaparameters-1.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22059)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowlambdaparameters-1.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "MaintenanceWindowLambdaParameters"

*Defined in [spec/spec.ts:22058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22058)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowlambdaparameters-1.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22061)*





___

___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowruncommandparameters-1"></a>

###  MaintenanceWindowRunCommandParameters

** MaintenanceWindowRunCommandParameters**:  *`object`* 

*Defined in [spec/spec.ts:22039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22039)*




<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowruncommandparameters-1.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-taskinvocationparameters.html#cfn-ssm-maintenancewindowtask-taskinvocationparameters-maintenancewindowruncommandparameters"

*Defined in [spec/spec.ts:22042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22042)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowruncommandparameters-1.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22041)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowruncommandparameters-1.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "MaintenanceWindowRunCommandParameters"

*Defined in [spec/spec.ts:22040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22040)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowruncommandparameters-1.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22043)*





___

___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowstepfunctionsparameters-1"></a>

###  MaintenanceWindowStepFunctionsParameters

** MaintenanceWindowStepFunctionsParameters**:  *`object`* 

*Defined in [spec/spec.ts:22051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22051)*




<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowstepfunctionsparameters-1.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-taskinvocationparameters.html#cfn-ssm-maintenancewindowtask-taskinvocationparameters-maintenancewindowstepfunctionsparameters"

*Defined in [spec/spec.ts:22054](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22054)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowstepfunctionsparameters-1.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22053](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22053)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowstepfunctionsparameters-1.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "MaintenanceWindowStepFunctionsParameters"

*Defined in [spec/spec.ts:22052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22052)*





___
<a id="ssm.models.taskinvocationparameters.properties-12.maintenancewindowstepfunctionsparameters-1.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22055)*





___

___

___

___

___
<a id="ssm.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:21575](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21575)*




<a id="ssm.resources.association"></a>

###  Association

** Association**:  *`object`* 

*Defined in [spec/spec.ts:21576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21576)*




<a id="ssm.resources.association.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html"

*Defined in [spec/spec.ts:21577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21577)*





___
<a id="ssm.resources.association.name-14"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::Association"

*Defined in [spec/spec.ts:21620](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21620)*





___
<a id="ssm.resources.association.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21578)*




<a id="ssm.resources.association.properties-13.documentversion-1"></a>

###  DocumentVersion

** DocumentVersion**:  *`object`* 

*Defined in [spec/spec.ts:21579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21579)*




<a id="ssm.resources.association.properties-13.documentversion-1.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-documentversion"

*Defined in [spec/spec.ts:21580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21580)*





___
<a id="ssm.resources.association.properties-13.documentversion-1.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21581)*





___
<a id="ssm.resources.association.properties-13.documentversion-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21582)*





___
<a id="ssm.resources.association.properties-13.documentversion-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21583)*





___

___
<a id="ssm.resources.association.properties-13.instanceid"></a>

###  InstanceId

** InstanceId**:  *`object`* 

*Defined in [spec/spec.ts:21585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21585)*




<a id="ssm.resources.association.properties-13.instanceid.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-instanceid"

*Defined in [spec/spec.ts:21586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21586)*





___
<a id="ssm.resources.association.properties-13.instanceid.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21587)*





___
<a id="ssm.resources.association.properties-13.instanceid.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21588)*





___
<a id="ssm.resources.association.properties-13.instanceid.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21589)*





___

___
<a id="ssm.resources.association.properties-13.name-15"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:21591](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21591)*




<a id="ssm.resources.association.properties-13.name-15.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-name"

*Defined in [spec/spec.ts:21592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21592)*





___
<a id="ssm.resources.association.properties-13.name-15.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21593](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21593)*





___
<a id="ssm.resources.association.properties-13.name-15.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21594)*





___
<a id="ssm.resources.association.properties-13.name-15.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21595)*





___

___
<a id="ssm.resources.association.properties-13.parameters-2"></a>

###  Parameters

** Parameters**:  *`object`* 

*Defined in [spec/spec.ts:21597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21597)*




<a id="ssm.resources.association.properties-13.parameters-2.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-parameters"

*Defined in [spec/spec.ts:21598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21598)*





___
<a id="ssm.resources.association.properties-13.parameters-2.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21599)*





___
<a id="ssm.resources.association.properties-13.parameters-2.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ParameterValues"

*Defined in [spec/spec.ts:21600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21600)*





___
<a id="ssm.resources.association.properties-13.parameters-2.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21601)*





___
<a id="ssm.resources.association.properties-13.parameters-2.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "Map"

*Defined in [spec/spec.ts:21602](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21602)*





___
<a id="ssm.resources.association.properties-13.parameters-2.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21603)*





___

___
<a id="ssm.resources.association.properties-13.scheduleexpression"></a>

###  ScheduleExpression

** ScheduleExpression**:  *`object`* 

*Defined in [spec/spec.ts:21605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21605)*




<a id="ssm.resources.association.properties-13.scheduleexpression.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-scheduleexpression"

*Defined in [spec/spec.ts:21606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21606)*





___
<a id="ssm.resources.association.properties-13.scheduleexpression.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21607)*





___
<a id="ssm.resources.association.properties-13.scheduleexpression.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21608](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21608)*





___
<a id="ssm.resources.association.properties-13.scheduleexpression.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21609](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21609)*





___

___
<a id="ssm.resources.association.properties-13.targets"></a>

###  Targets

** Targets**:  *`object`* 

*Defined in [spec/spec.ts:21611](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21611)*




<a id="ssm.resources.association.properties-13.targets.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-targets"

*Defined in [spec/spec.ts:21612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21612)*





___
<a id="ssm.resources.association.properties-13.targets.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21613)*





___
<a id="ssm.resources.association.properties-13.targets.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Target"

*Defined in [spec/spec.ts:21614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21614)*





___
<a id="ssm.resources.association.properties-13.targets.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21615)*





___
<a id="ssm.resources.association.properties-13.targets.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:21616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21616)*





___
<a id="ssm.resources.association.properties-13.targets.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21617)*





___

___

___

___
<a id="ssm.resources.document"></a>

###  Document

** Document**:  *`object`* 

*Defined in [spec/spec.ts:21622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21622)*




<a id="ssm.resources.document.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html"

*Defined in [spec/spec.ts:21623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21623)*





___
<a id="ssm.resources.document.name-16"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::Document"

*Defined in [spec/spec.ts:21638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21638)*





___
<a id="ssm.resources.document.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21624)*




<a id="ssm.resources.document.properties-14.content"></a>

###  Content

** Content**:  *`object`* 

*Defined in [spec/spec.ts:21625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21625)*




<a id="ssm.resources.document.properties-14.content.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-content"

*Defined in [spec/spec.ts:21626](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21626)*





___
<a id="ssm.resources.document.properties-14.content.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:21627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21627)*





___
<a id="ssm.resources.document.properties-14.content.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21628)*





___
<a id="ssm.resources.document.properties-14.content.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21629)*





___

___
<a id="ssm.resources.document.properties-14.documenttype"></a>

###  DocumentType

** DocumentType**:  *`object`* 

*Defined in [spec/spec.ts:21631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21631)*




<a id="ssm.resources.document.properties-14.documenttype.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html#cfn-ssm-document-documenttype"

*Defined in [spec/spec.ts:21632](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21632)*





___
<a id="ssm.resources.document.properties-14.documenttype.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21633](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21633)*





___
<a id="ssm.resources.document.properties-14.documenttype.required-43"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21634)*





___
<a id="ssm.resources.document.properties-14.documenttype.updatetype-43"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21635](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21635)*





___

___

___

___
<a id="ssm.resources.maintenancewindowtask"></a>

###  MaintenanceWindowTask

** MaintenanceWindowTask**:  *`object`* 

*Defined in [spec/spec.ts:21640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21640)*




<a id="ssm.resources.maintenancewindowtask.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html"

*Defined in [spec/spec.ts:21641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21641)*





___
<a id="ssm.resources.maintenancewindowtask.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::MaintenanceWindowTask"

*Defined in [spec/spec.ts:21723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21723)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21642)*




<a id="ssm.resources.maintenancewindowtask.properties-15.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:21649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21649)*




<a id="ssm.resources.maintenancewindowtask.properties-15.description.documentation-60"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-description"

*Defined in [spec/spec.ts:21651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21651)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.description.primitivetype-30"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21652)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.description.required-44"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21650](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21650)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.description.updatetype-44"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21653)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.logginginfo-1"></a>

###  LoggingInfo

** LoggingInfo**:  *`object`* 

*Defined in [spec/spec.ts:21716](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21716)*




<a id="ssm.resources.maintenancewindowtask.properties-15.logginginfo-1.documentation-61"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-logginginfo"

*Defined in [spec/spec.ts:21719](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21719)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.logginginfo-1.required-45"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21718)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.logginginfo-1.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "LoggingInfo"

*Defined in [spec/spec.ts:21717](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21717)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.logginginfo-1.updatetype-45"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21720)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxconcurrency"></a>

###  MaxConcurrency

** MaxConcurrency**:  *`object`* 

*Defined in [spec/spec.ts:21667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21667)*




<a id="ssm.resources.maintenancewindowtask.properties-15.maxconcurrency.documentation-62"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxconcurrency"

*Defined in [spec/spec.ts:21669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21669)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxconcurrency.primitivetype-31"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21670)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxconcurrency.required-46"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21668)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxconcurrency.updatetype-46"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21671)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxerrors"></a>

###  MaxErrors

** MaxErrors**:  *`object`* 

*Defined in [spec/spec.ts:21643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21643)*




<a id="ssm.resources.maintenancewindowtask.properties-15.maxerrors.documentation-63"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-maxerrors"

*Defined in [spec/spec.ts:21645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21645)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxerrors.primitivetype-32"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21646)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxerrors.required-47"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21644](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21644)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.maxerrors.updatetype-47"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21647)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.name-18"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:21680](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21680)*




<a id="ssm.resources.maintenancewindowtask.properties-15.name-18.documentation-64"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-name"

*Defined in [spec/spec.ts:21682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21682)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.name-18.primitivetype-33"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21683](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21683)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.name-18.required-48"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21681](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21681)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.name-18.updatetype-48"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21684)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.priority"></a>

###  Priority

** Priority**:  *`object`* 

*Defined in [spec/spec.ts:21661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21661)*




<a id="ssm.resources.maintenancewindowtask.properties-15.priority.documentation-65"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-priority"

*Defined in [spec/spec.ts:21663](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21663)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.priority.primitivetype-34"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:21664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21664)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.priority.required-49"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21662](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21662)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.priority.updatetype-49"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21665](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21665)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.servicerolearn-1"></a>

###  ServiceRoleArn

** ServiceRoleArn**:  *`object`* 

*Defined in [spec/spec.ts:21655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21655)*




<a id="ssm.resources.maintenancewindowtask.properties-15.servicerolearn-1.documentation-66"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-servicerolearn"

*Defined in [spec/spec.ts:21657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21657)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.servicerolearn-1.primitivetype-35"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21658)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.servicerolearn-1.required-50"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21656](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21656)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.servicerolearn-1.updatetype-50"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21659)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.targets-1"></a>

###  Targets

** Targets**:  *`object`* 

*Defined in [spec/spec.ts:21673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21673)*




<a id="ssm.resources.maintenancewindowtask.properties-15.targets-1.documentation-67"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-targets"

*Defined in [spec/spec.ts:21676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21676)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.targets-1.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Target"

*Defined in [spec/spec.ts:21677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21677)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.targets-1.required-51"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21675)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.targets-1.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:21674](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21674)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.targets-1.updatetype-51"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21678)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskarn"></a>

###  TaskArn

** TaskArn**:  *`object`* 

*Defined in [spec/spec.ts:21686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21686)*




<a id="ssm.resources.maintenancewindowtask.properties-15.taskarn.documentation-68"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskarn"

*Defined in [spec/spec.ts:21688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21688)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskarn.primitivetype-36"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21689)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskarn.required-52"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21687)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskarn.updatetype-52"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21690)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskinvocationparameters-1"></a>

###  TaskInvocationParameters

** TaskInvocationParameters**:  *`object`* 

*Defined in [spec/spec.ts:21692](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21692)*




<a id="ssm.resources.maintenancewindowtask.properties-15.taskinvocationparameters-1.documentation-69"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskinvocationparameters"

*Defined in [spec/spec.ts:21695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21695)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskinvocationparameters-1.required-53"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21694)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskinvocationparameters-1.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "TaskInvocationParameters"

*Defined in [spec/spec.ts:21693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21693)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskinvocationparameters-1.updatetype-53"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21696)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskparameters"></a>

###  TaskParameters

** TaskParameters**:  *`object`* 

*Defined in [spec/spec.ts:21704](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21704)*




<a id="ssm.resources.maintenancewindowtask.properties-15.taskparameters.documentation-70"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-taskparameters"

*Defined in [spec/spec.ts:21706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21706)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskparameters.primitivetype-37"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:21707](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21707)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskparameters.required-54"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21705](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21705)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.taskparameters.updatetype-54"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21708)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.tasktype"></a>

###  TaskType

** TaskType**:  *`object`* 

*Defined in [spec/spec.ts:21710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21710)*




<a id="ssm.resources.maintenancewindowtask.properties-15.tasktype.documentation-71"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-tasktype"

*Defined in [spec/spec.ts:21712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21712)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.tasktype.primitivetype-38"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21713)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.tasktype.required-55"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21711)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.tasktype.updatetype-55"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21714)*





___

___
<a id="ssm.resources.maintenancewindowtask.properties-15.windowid"></a>

###  WindowId

** WindowId**:  *`object`* 

*Defined in [spec/spec.ts:21698](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21698)*




<a id="ssm.resources.maintenancewindowtask.properties-15.windowid.documentation-72"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#cfn-ssm-maintenancewindowtask-windowid"

*Defined in [spec/spec.ts:21700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21700)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.windowid.primitivetype-39"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21701)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.windowid.required-56"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21699)*





___
<a id="ssm.resources.maintenancewindowtask.properties-15.windowid.updatetype-56"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21702)*





___

___

___

___
<a id="ssm.resources.parameter"></a>

###  Parameter

** Parameter**:  *`object`* 

*Defined in [spec/spec.ts:21725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21725)*




<a id="ssm.resources.parameter.documentation-73"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html"

*Defined in [spec/spec.ts:21726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21726)*





___
<a id="ssm.resources.parameter.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::Parameter"

*Defined in [spec/spec.ts:21767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21767)*





___
<a id="ssm.resources.parameter.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:21727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21727)*




<a id="ssm.resources.parameter.attributes.type-17"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:21728](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21728)*




<a id="ssm.resources.parameter.attributes.type-17.primitivetype-40"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21729)*





___

___
<a id="ssm.resources.parameter.attributes.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:21731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21731)*




<a id="ssm.resources.parameter.attributes.value.primitivetype-41"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21732)*





___

___

___
<a id="ssm.resources.parameter.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21735](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21735)*




<a id="ssm.resources.parameter.properties-16.allowedpattern"></a>

###  AllowedPattern

** AllowedPattern**:  *`object`* 

*Defined in [spec/spec.ts:21748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21748)*




<a id="ssm.resources.parameter.properties-16.allowedpattern.documentation-74"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern"

*Defined in [spec/spec.ts:21750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21750)*





___
<a id="ssm.resources.parameter.properties-16.allowedpattern.primitivetype-42"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21751](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21751)*





___
<a id="ssm.resources.parameter.properties-16.allowedpattern.required-57"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21749)*





___
<a id="ssm.resources.parameter.properties-16.allowedpattern.updatetype-57"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21752)*





___

___
<a id="ssm.resources.parameter.properties-16.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:21742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21742)*




<a id="ssm.resources.parameter.properties-16.description-1.documentation-75"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-description"

*Defined in [spec/spec.ts:21744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21744)*





___
<a id="ssm.resources.parameter.properties-16.description-1.primitivetype-43"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21745)*





___
<a id="ssm.resources.parameter.properties-16.description-1.required-58"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21743)*





___
<a id="ssm.resources.parameter.properties-16.description-1.updatetype-58"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21746)*





___

___
<a id="ssm.resources.parameter.properties-16.name-20"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:21760](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21760)*




<a id="ssm.resources.parameter.properties-16.name-20.documentation-76"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-name"

*Defined in [spec/spec.ts:21762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21762)*





___
<a id="ssm.resources.parameter.properties-16.name-20.primitivetype-44"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21763)*





___
<a id="ssm.resources.parameter.properties-16.name-20.required-59"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21761)*





___
<a id="ssm.resources.parameter.properties-16.name-20.updatetype-59"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21764)*





___

___
<a id="ssm.resources.parameter.properties-16.type-18"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:21736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21736)*




<a id="ssm.resources.parameter.properties-16.type-18.documentation-77"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-type"

*Defined in [spec/spec.ts:21738](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21738)*





___
<a id="ssm.resources.parameter.properties-16.type-18.primitivetype-45"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21739](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21739)*





___
<a id="ssm.resources.parameter.properties-16.type-18.required-60"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21737](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21737)*





___
<a id="ssm.resources.parameter.properties-16.type-18.updatetype-60"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21740](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21740)*





___

___
<a id="ssm.resources.parameter.properties-16.value-1"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:21754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21754)*




<a id="ssm.resources.parameter.properties-16.value-1.documentation-78"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-value"

*Defined in [spec/spec.ts:21756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21756)*





___
<a id="ssm.resources.parameter.properties-16.value-1.primitivetype-46"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21757](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21757)*





___
<a id="ssm.resources.parameter.properties-16.value-1.required-61"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21755)*





___
<a id="ssm.resources.parameter.properties-16.value-1.updatetype-61"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21758](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21758)*





___

___

___

___
<a id="ssm.resources.patchbaseline"></a>

###  PatchBaseline

** PatchBaseline**:  *`object`* 

*Defined in [spec/spec.ts:21769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21769)*




<a id="ssm.resources.patchbaseline.documentation-79"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html"

*Defined in [spec/spec.ts:21770](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21770)*





___
<a id="ssm.resources.patchbaseline.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::SSM::PatchBaseline"

*Defined in [spec/spec.ts:21830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21830)*





___
<a id="ssm.resources.patchbaseline.properties-17"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:21771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21771)*




<a id="ssm.resources.patchbaseline.properties-17.approvalrules"></a>

###  ApprovalRules

** ApprovalRules**:  *`object`* 

*Defined in [spec/spec.ts:21804](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21804)*




<a id="ssm.resources.patchbaseline.properties-17.approvalrules.documentation-80"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvalrules"

*Defined in [spec/spec.ts:21807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21807)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvalrules.required-62"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21806)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvalrules.type-19"></a>

###  Type

**●  Type**:  *`string`*  = "RuleGroup"

*Defined in [spec/spec.ts:21805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21805)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvalrules.updatetype-62"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21808)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatches"></a>

###  ApprovedPatches

** ApprovedPatches**:  *`object`* 

*Defined in [spec/spec.ts:21778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21778)*




<a id="ssm.resources.patchbaseline.properties-17.approvedpatches.documentation-81"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatches"

*Defined in [spec/spec.ts:21782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21782)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatches.primitiveitemtype-4"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21779](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21779)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatches.required-63"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21781)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatches.type-20"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:21780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21780)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatches.updatetype-63"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21783)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatchescompliancelevel"></a>

###  ApprovedPatchesComplianceLevel

** ApprovedPatchesComplianceLevel**:  *`object`* 

*Defined in [spec/spec.ts:21798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21798)*




<a id="ssm.resources.patchbaseline.properties-17.approvedpatchescompliancelevel.documentation-82"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-approvedpatchescompliancelevel"

*Defined in [spec/spec.ts:21800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21800)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatchescompliancelevel.primitivetype-47"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21801](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21801)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatchescompliancelevel.required-64"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21799)*





___
<a id="ssm.resources.patchbaseline.properties-17.approvedpatchescompliancelevel.updatetype-64"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21802](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21802)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:21792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21792)*




<a id="ssm.resources.patchbaseline.properties-17.description-2.documentation-83"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-description"

*Defined in [spec/spec.ts:21794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21794)*





___
<a id="ssm.resources.patchbaseline.properties-17.description-2.primitivetype-48"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21795](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21795)*





___
<a id="ssm.resources.patchbaseline.properties-17.description-2.required-65"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21793)*





___
<a id="ssm.resources.patchbaseline.properties-17.description-2.updatetype-65"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21796)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.globalfilters"></a>

###  GlobalFilters

** GlobalFilters**:  *`object`* 

*Defined in [spec/spec.ts:21810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21810)*




<a id="ssm.resources.patchbaseline.properties-17.globalfilters.documentation-84"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-globalfilters"

*Defined in [spec/spec.ts:21813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21813)*





___
<a id="ssm.resources.patchbaseline.properties-17.globalfilters.required-66"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21812)*





___
<a id="ssm.resources.patchbaseline.properties-17.globalfilters.type-21"></a>

###  Type

**●  Type**:  *`string`*  = "PatchFilterGroup"

*Defined in [spec/spec.ts:21811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21811)*





___
<a id="ssm.resources.patchbaseline.properties-17.globalfilters.updatetype-66"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21814](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21814)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.name-22"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:21816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21816)*




<a id="ssm.resources.patchbaseline.properties-17.name-22.documentation-85"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-name"

*Defined in [spec/spec.ts:21818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21818)*





___
<a id="ssm.resources.patchbaseline.properties-17.name-22.primitivetype-49"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21819)*





___
<a id="ssm.resources.patchbaseline.properties-17.name-22.required-67"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:21817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21817)*





___
<a id="ssm.resources.patchbaseline.properties-17.name-22.updatetype-67"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21820](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21820)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.operatingsystem"></a>

###  OperatingSystem

** OperatingSystem**:  *`object`* 

*Defined in [spec/spec.ts:21772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21772)*




<a id="ssm.resources.patchbaseline.properties-17.operatingsystem.documentation-86"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-operatingsystem"

*Defined in [spec/spec.ts:21774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21774)*





___
<a id="ssm.resources.patchbaseline.properties-17.operatingsystem.primitivetype-50"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21775)*





___
<a id="ssm.resources.patchbaseline.properties-17.operatingsystem.required-68"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21773)*





___
<a id="ssm.resources.patchbaseline.properties-17.operatingsystem.updatetype-68"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:21776](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21776)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.patchgroups"></a>

###  PatchGroups

** PatchGroups**:  *`object`* 

*Defined in [spec/spec.ts:21785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21785)*




<a id="ssm.resources.patchbaseline.properties-17.patchgroups.documentation-87"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-patchgroups"

*Defined in [spec/spec.ts:21789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21789)*





___
<a id="ssm.resources.patchbaseline.properties-17.patchgroups.primitiveitemtype-5"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21786)*





___
<a id="ssm.resources.patchbaseline.properties-17.patchgroups.required-69"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21788](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21788)*





___
<a id="ssm.resources.patchbaseline.properties-17.patchgroups.type-22"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:21787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21787)*





___
<a id="ssm.resources.patchbaseline.properties-17.patchgroups.updatetype-69"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21790)*





___

___
<a id="ssm.resources.patchbaseline.properties-17.rejectedpatches"></a>

###  RejectedPatches

** RejectedPatches**:  *`object`* 

*Defined in [spec/spec.ts:21822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21822)*




<a id="ssm.resources.patchbaseline.properties-17.rejectedpatches.documentation-88"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-rejectedpatches"

*Defined in [spec/spec.ts:21826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21826)*





___
<a id="ssm.resources.patchbaseline.properties-17.rejectedpatches.primitiveitemtype-6"></a>

###  PrimitiveItemType

**●  PrimitiveItemType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:21823](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21823)*





___
<a id="ssm.resources.patchbaseline.properties-17.rejectedpatches.required-70"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:21825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21825)*





___
<a id="ssm.resources.patchbaseline.properties-17.rejectedpatches.type-23"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:21824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21824)*





___
<a id="ssm.resources.patchbaseline.properties-17.rejectedpatches.updatetype-70"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:21827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L21827)*





___

___

___

___

___

<a id="servicediscovery"></a>

## Object literal: ServiceDiscovery


<a id="servicediscovery.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:22263](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22263)*




<a id="servicediscovery.models.dnsconfig"></a>

###  DnsConfig

** DnsConfig**:  *`object`* 

*Defined in [spec/spec.ts:22264](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22264)*




<a id="servicediscovery.models.dnsconfig.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html"

*Defined in [spec/spec.ts:22265](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22265)*





___
<a id="servicediscovery.models.dnsconfig.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ServiceDiscovery::Service.DnsConfig"

*Defined in [spec/spec.ts:22281](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22281)*





___
<a id="servicediscovery.models.dnsconfig.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22266](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22266)*




<a id="servicediscovery.models.dnsconfig.properties.dnsrecords"></a>

###  DnsRecords

** DnsRecords**:  *`object`* 

*Defined in [spec/spec.ts:22267](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22267)*




<a id="servicediscovery.models.dnsconfig.properties.dnsrecords.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-dnsrecords"

*Defined in [spec/spec.ts:22270](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22270)*





___
<a id="servicediscovery.models.dnsconfig.properties.dnsrecords.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "DnsRecord"

*Defined in [spec/spec.ts:22271](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22271)*





___
<a id="servicediscovery.models.dnsconfig.properties.dnsrecords.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22269](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22269)*





___
<a id="servicediscovery.models.dnsconfig.properties.dnsrecords.type"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22268](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22268)*





___
<a id="servicediscovery.models.dnsconfig.properties.dnsrecords.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22272](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22272)*





___

___
<a id="servicediscovery.models.dnsconfig.properties.namespaceid"></a>

###  NamespaceId

** NamespaceId**:  *`object`* 

*Defined in [spec/spec.ts:22274](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22274)*




<a id="servicediscovery.models.dnsconfig.properties.namespaceid.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsconfig.html#cfn-servicediscovery-service-dnsconfig-namespaceid"

*Defined in [spec/spec.ts:22276](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22276)*





___
<a id="servicediscovery.models.dnsconfig.properties.namespaceid.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22277](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22277)*





___
<a id="servicediscovery.models.dnsconfig.properties.namespaceid.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22275](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22275)*





___
<a id="servicediscovery.models.dnsconfig.properties.namespaceid.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22278](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22278)*





___

___

___

___
<a id="servicediscovery.models.dnsrecord"></a>

###  DnsRecord

** DnsRecord**:  *`object`* 

*Defined in [spec/spec.ts:22283](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22283)*




<a id="servicediscovery.models.dnsrecord.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsrecord.html"

*Defined in [spec/spec.ts:22284](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22284)*





___
<a id="servicediscovery.models.dnsrecord.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ServiceDiscovery::Service.DnsRecord"

*Defined in [spec/spec.ts:22299](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22299)*





___
<a id="servicediscovery.models.dnsrecord.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22285](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22285)*




<a id="servicediscovery.models.dnsrecord.properties-1.ttl"></a>

###  TTL

** TTL**:  *`object`* 

*Defined in [spec/spec.ts:22292](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22292)*




<a id="servicediscovery.models.dnsrecord.properties-1.ttl.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsrecord.html#cfn-servicediscovery-service-dnsrecord-ttl"

*Defined in [spec/spec.ts:22294](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22294)*





___
<a id="servicediscovery.models.dnsrecord.properties-1.ttl.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22295](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22295)*





___
<a id="servicediscovery.models.dnsrecord.properties-1.ttl.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22293](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22293)*





___
<a id="servicediscovery.models.dnsrecord.properties-1.ttl.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22296](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22296)*





___

___
<a id="servicediscovery.models.dnsrecord.properties-1.type-1"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22286](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22286)*




<a id="servicediscovery.models.dnsrecord.properties-1.type-1.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-dnsrecord.html#cfn-servicediscovery-service-dnsrecord-type"

*Defined in [spec/spec.ts:22288](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22288)*





___
<a id="servicediscovery.models.dnsrecord.properties-1.type-1.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22289](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22289)*





___
<a id="servicediscovery.models.dnsrecord.properties-1.type-1.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22287](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22287)*





___
<a id="servicediscovery.models.dnsrecord.properties-1.type-1.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22290](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22290)*





___

___

___

___
<a id="servicediscovery.models.healthcheckconfig"></a>

###  HealthCheckConfig

** HealthCheckConfig**:  *`object`* 

*Defined in [spec/spec.ts:22301](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22301)*




<a id="servicediscovery.models.healthcheckconfig.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html"

*Defined in [spec/spec.ts:22302](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22302)*





___
<a id="servicediscovery.models.healthcheckconfig.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ServiceDiscovery::Service.HealthCheckConfig"

*Defined in [spec/spec.ts:22323](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22323)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22303](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22303)*




<a id="servicediscovery.models.healthcheckconfig.properties-2.failurethreshold"></a>

###  FailureThreshold

** FailureThreshold**:  *`object`* 

*Defined in [spec/spec.ts:22316](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22316)*




<a id="servicediscovery.models.healthcheckconfig.properties-2.failurethreshold.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-failurethreshold"

*Defined in [spec/spec.ts:22318](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22318)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.failurethreshold.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Double"

*Defined in [spec/spec.ts:22319](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22319)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.failurethreshold.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22317](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22317)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.failurethreshold.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22320](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22320)*





___

___
<a id="servicediscovery.models.healthcheckconfig.properties-2.resourcepath"></a>

###  ResourcePath

** ResourcePath**:  *`object`* 

*Defined in [spec/spec.ts:22310](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22310)*




<a id="servicediscovery.models.healthcheckconfig.properties-2.resourcepath.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-resourcepath"

*Defined in [spec/spec.ts:22312](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22312)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.resourcepath.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22313](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22313)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.resourcepath.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22311](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22311)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.resourcepath.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22314](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22314)*





___

___
<a id="servicediscovery.models.healthcheckconfig.properties-2.type-2"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22304](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22304)*




<a id="servicediscovery.models.healthcheckconfig.properties-2.type-2.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicediscovery-service-healthcheckconfig.html#cfn-servicediscovery-service-healthcheckconfig-type"

*Defined in [spec/spec.ts:22306](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22306)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.type-2.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22307](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22307)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.type-2.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22305](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22305)*





___
<a id="servicediscovery.models.healthcheckconfig.properties-2.type-2.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22308](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22308)*





___

___

___

___

___
<a id="servicediscovery.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:22138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22138)*




<a id="servicediscovery.resources.instance"></a>

###  Instance

** Instance**:  *`object`* 

*Defined in [spec/spec.ts:22139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22139)*




<a id="servicediscovery.resources.instance.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html"

*Defined in [spec/spec.ts:22140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22140)*





___
<a id="servicediscovery.resources.instance.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ServiceDiscovery::Instance"

*Defined in [spec/spec.ts:22161](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22161)*





___
<a id="servicediscovery.resources.instance.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22141](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22141)*




<a id="servicediscovery.resources.instance.properties-3.instanceattributes"></a>

###  InstanceAttributes

** InstanceAttributes**:  *`object`* 

*Defined in [spec/spec.ts:22142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22142)*




<a id="servicediscovery.resources.instance.properties-3.instanceattributes.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceattributes"

*Defined in [spec/spec.ts:22144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22144)*





___
<a id="servicediscovery.resources.instance.properties-3.instanceattributes.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Json"

*Defined in [spec/spec.ts:22145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22145)*





___
<a id="servicediscovery.resources.instance.properties-3.instanceattributes.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22143)*





___
<a id="servicediscovery.resources.instance.properties-3.instanceattributes.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22146)*





___

___
<a id="servicediscovery.resources.instance.properties-3.instanceid"></a>

###  InstanceId

** InstanceId**:  *`object`* 

*Defined in [spec/spec.ts:22148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22148)*




<a id="servicediscovery.resources.instance.properties-3.instanceid.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-instanceid"

*Defined in [spec/spec.ts:22150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22150)*





___
<a id="servicediscovery.resources.instance.properties-3.instanceid.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22151)*





___
<a id="servicediscovery.resources.instance.properties-3.instanceid.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22149)*





___
<a id="servicediscovery.resources.instance.properties-3.instanceid.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22152)*





___

___
<a id="servicediscovery.resources.instance.properties-3.serviceid"></a>

###  ServiceId

** ServiceId**:  *`object`* 

*Defined in [spec/spec.ts:22154](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22154)*




<a id="servicediscovery.resources.instance.properties-3.serviceid.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-instance.html#cfn-servicediscovery-instance-serviceid"

*Defined in [spec/spec.ts:22156](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22156)*





___
<a id="servicediscovery.resources.instance.properties-3.serviceid.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22157](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22157)*





___
<a id="servicediscovery.resources.instance.properties-3.serviceid.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22155)*





___
<a id="servicediscovery.resources.instance.properties-3.serviceid.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22158)*





___

___

___

___
<a id="servicediscovery.resources.privatednsnamespace"></a>

###  PrivateDnsNamespace

** PrivateDnsNamespace**:  *`object`* 

*Defined in [spec/spec.ts:22163](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22163)*




<a id="servicediscovery.resources.privatednsnamespace.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html"

*Defined in [spec/spec.ts:22164](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22164)*





___
<a id="servicediscovery.resources.privatednsnamespace.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ServiceDiscovery::PrivateDnsNamespace"

*Defined in [spec/spec.ts:22193](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22193)*





___
<a id="servicediscovery.resources.privatednsnamespace.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:22165](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22165)*




<a id="servicediscovery.resources.privatednsnamespace.attributes.arn"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:22169](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22169)*




<a id="servicediscovery.resources.privatednsnamespace.attributes.arn.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22170](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22170)*





___

___
<a id="servicediscovery.resources.privatednsnamespace.attributes.id"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:22166](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22166)*




<a id="servicediscovery.resources.privatednsnamespace.attributes.id.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22167](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22167)*





___

___

___
<a id="servicediscovery.resources.privatednsnamespace.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22173](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22173)*




<a id="servicediscovery.resources.privatednsnamespace.properties-4.description"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:22174](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22174)*




<a id="servicediscovery.resources.privatednsnamespace.properties-4.description.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-description"

*Defined in [spec/spec.ts:22176](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22176)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.description.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22177](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22177)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.description.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22175](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22175)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.description.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22178](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22178)*





___

___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.name-5"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22186](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22186)*




<a id="servicediscovery.resources.privatednsnamespace.properties-4.name-5.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-name"

*Defined in [spec/spec.ts:22188](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22188)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.name-5.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22189](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22189)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.name-5.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22187](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22187)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.name-5.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22190](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22190)*





___

___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.vpc"></a>

###  Vpc

** Vpc**:  *`object`* 

*Defined in [spec/spec.ts:22180](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22180)*




<a id="servicediscovery.resources.privatednsnamespace.properties-4.vpc.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-privatednsnamespace.html#cfn-servicediscovery-privatednsnamespace-vpc"

*Defined in [spec/spec.ts:22182](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22182)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.vpc.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22183](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22183)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.vpc.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22181](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22181)*





___
<a id="servicediscovery.resources.privatednsnamespace.properties-4.vpc.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22184](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22184)*





___

___

___

___
<a id="servicediscovery.resources.publicdnsnamespace"></a>

###  PublicDnsNamespace

** PublicDnsNamespace**:  *`object`* 

*Defined in [spec/spec.ts:22195](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22195)*




<a id="servicediscovery.resources.publicdnsnamespace.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html"

*Defined in [spec/spec.ts:22196](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22196)*





___
<a id="servicediscovery.resources.publicdnsnamespace.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ServiceDiscovery::PublicDnsNamespace"

*Defined in [spec/spec.ts:22219](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22219)*





___
<a id="servicediscovery.resources.publicdnsnamespace.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:22197](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22197)*




<a id="servicediscovery.resources.publicdnsnamespace.attributes-1.arn-1"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:22201](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22201)*




<a id="servicediscovery.resources.publicdnsnamespace.attributes-1.arn-1.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22202](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22202)*





___

___
<a id="servicediscovery.resources.publicdnsnamespace.attributes-1.id-1"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:22198](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22198)*




<a id="servicediscovery.resources.publicdnsnamespace.attributes-1.id-1.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22199](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22199)*





___

___

___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22205](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22205)*




<a id="servicediscovery.resources.publicdnsnamespace.properties-5.description-1"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:22206](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22206)*




<a id="servicediscovery.resources.publicdnsnamespace.properties-5.description-1.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-description"

*Defined in [spec/spec.ts:22208](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22208)*





___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5.description-1.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22209](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22209)*





___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5.description-1.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22207](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22207)*





___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5.description-1.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22210](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22210)*





___

___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5.name-7"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22212](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22212)*




<a id="servicediscovery.resources.publicdnsnamespace.properties-5.name-7.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-publicdnsnamespace.html#cfn-servicediscovery-publicdnsnamespace-name"

*Defined in [spec/spec.ts:22214](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22214)*





___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5.name-7.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22215](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22215)*





___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5.name-7.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22213](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22213)*





___
<a id="servicediscovery.resources.publicdnsnamespace.properties-5.name-7.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22216](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22216)*





___

___

___

___
<a id="servicediscovery.resources.service"></a>

###  Service

** Service**:  *`object`* 

*Defined in [spec/spec.ts:22221](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22221)*




<a id="servicediscovery.resources.service.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html"

*Defined in [spec/spec.ts:22222](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22222)*





___
<a id="servicediscovery.resources.service.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::ServiceDiscovery::Service"

*Defined in [spec/spec.ts:22260](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22260)*





___
<a id="servicediscovery.resources.service.attributes-2"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:22223](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22223)*




<a id="servicediscovery.resources.service.attributes-2.arn-2"></a>

###  Arn

** Arn**:  *`object`* 

*Defined in [spec/spec.ts:22227](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22227)*




<a id="servicediscovery.resources.service.attributes-2.arn-2.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22228](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22228)*





___

___
<a id="servicediscovery.resources.service.attributes-2.id-2"></a>

###  Id

** Id**:  *`object`* 

*Defined in [spec/spec.ts:22224](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22224)*




<a id="servicediscovery.resources.service.attributes-2.id-2.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22225](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22225)*





___

___
<a id="servicediscovery.resources.service.attributes-2.name-9"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22230](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22230)*




<a id="servicediscovery.resources.service.attributes-2.name-9.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22231](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22231)*





___

___

___
<a id="servicediscovery.resources.service.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22234](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22234)*




<a id="servicediscovery.resources.service.properties-6.description-2"></a>

###  Description

** Description**:  *`object`* 

*Defined in [spec/spec.ts:22235](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22235)*




<a id="servicediscovery.resources.service.properties-6.description-2.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-description"

*Defined in [spec/spec.ts:22237](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22237)*





___
<a id="servicediscovery.resources.service.properties-6.description-2.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22238](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22238)*





___
<a id="servicediscovery.resources.service.properties-6.description-2.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22236](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22236)*





___
<a id="servicediscovery.resources.service.properties-6.description-2.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22239](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22239)*





___

___
<a id="servicediscovery.resources.service.properties-6.dnsconfig-1"></a>

###  DnsConfig

** DnsConfig**:  *`object`* 

*Defined in [spec/spec.ts:22241](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22241)*




<a id="servicediscovery.resources.service.properties-6.dnsconfig-1.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-dnsconfig"

*Defined in [spec/spec.ts:22244](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22244)*





___
<a id="servicediscovery.resources.service.properties-6.dnsconfig-1.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22243](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22243)*





___
<a id="servicediscovery.resources.service.properties-6.dnsconfig-1.type-3"></a>

###  Type

**●  Type**:  *`string`*  = "DnsConfig"

*Defined in [spec/spec.ts:22242](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22242)*





___
<a id="servicediscovery.resources.service.properties-6.dnsconfig-1.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22245](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22245)*





___

___
<a id="servicediscovery.resources.service.properties-6.healthcheckconfig-1"></a>

###  HealthCheckConfig

** HealthCheckConfig**:  *`object`* 

*Defined in [spec/spec.ts:22247](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22247)*




<a id="servicediscovery.resources.service.properties-6.healthcheckconfig-1.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-healthcheckconfig"

*Defined in [spec/spec.ts:22250](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22250)*





___
<a id="servicediscovery.resources.service.properties-6.healthcheckconfig-1.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22249](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22249)*





___
<a id="servicediscovery.resources.service.properties-6.healthcheckconfig-1.type-4"></a>

###  Type

**●  Type**:  *`string`*  = "HealthCheckConfig"

*Defined in [spec/spec.ts:22248](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22248)*





___
<a id="servicediscovery.resources.service.properties-6.healthcheckconfig-1.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22251](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22251)*





___

___
<a id="servicediscovery.resources.service.properties-6.name-10"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22253](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22253)*




<a id="servicediscovery.resources.service.properties-6.name-10.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicediscovery-service.html#cfn-servicediscovery-service-name"

*Defined in [spec/spec.ts:22255](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22255)*





___
<a id="servicediscovery.resources.service.properties-6.name-10.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22256](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22256)*





___
<a id="servicediscovery.resources.service.properties-6.name-10.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22254](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22254)*





___
<a id="servicediscovery.resources.service.properties-6.name-10.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22257](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22257)*





___

___

___

___

___

<a id="stepfunctions"></a>

## Object literal: StepFunctions


<a id="stepfunctions.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:22376](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22376)*


#### Type declaration





___
<a id="stepfunctions.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:22328](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22328)*




<a id="stepfunctions.resources.activity"></a>

###  Activity

** Activity**:  *`object`* 

*Defined in [spec/spec.ts:22329](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22329)*




<a id="stepfunctions.resources.activity.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html"

*Defined in [spec/spec.ts:22330](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22330)*





___
<a id="stepfunctions.resources.activity.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::StepFunctions::Activity"

*Defined in [spec/spec.ts:22344](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22344)*





___
<a id="stepfunctions.resources.activity.attributes"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:22331](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22331)*




<a id="stepfunctions.resources.activity.attributes.name-1"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22332](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22332)*




<a id="stepfunctions.resources.activity.attributes.name-1.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22333](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22333)*





___

___

___
<a id="stepfunctions.resources.activity.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22336](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22336)*




<a id="stepfunctions.resources.activity.properties.name-2"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22337](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22337)*




<a id="stepfunctions.resources.activity.properties.name-2.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-activity.html#cfn-stepfunctions-activity-name"

*Defined in [spec/spec.ts:22339](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22339)*





___
<a id="stepfunctions.resources.activity.properties.name-2.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22340](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22340)*





___
<a id="stepfunctions.resources.activity.properties.name-2.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22338](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22338)*





___
<a id="stepfunctions.resources.activity.properties.name-2.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22341](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22341)*





___

___

___

___
<a id="stepfunctions.resources.statemachine"></a>

###  StateMachine

** StateMachine**:  *`object`* 

*Defined in [spec/spec.ts:22346](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22346)*




<a id="stepfunctions.resources.statemachine.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html"

*Defined in [spec/spec.ts:22347](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22347)*





___
<a id="stepfunctions.resources.statemachine.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::StepFunctions::StateMachine"

*Defined in [spec/spec.ts:22373](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22373)*





___
<a id="stepfunctions.resources.statemachine.attributes-1"></a>

###  Attributes

** Attributes**:  *`object`* 

*Defined in [spec/spec.ts:22348](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22348)*




<a id="stepfunctions.resources.statemachine.attributes-1.name-4"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22349](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22349)*




<a id="stepfunctions.resources.statemachine.attributes-1.name-4.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22350](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22350)*





___

___

___
<a id="stepfunctions.resources.statemachine.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22353](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22353)*




<a id="stepfunctions.resources.statemachine.properties-1.definitionstring"></a>

###  DefinitionString

** DefinitionString**:  *`object`* 

*Defined in [spec/spec.ts:22354](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22354)*




<a id="stepfunctions.resources.statemachine.properties-1.definitionstring.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-definitionstring"

*Defined in [spec/spec.ts:22356](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22356)*





___
<a id="stepfunctions.resources.statemachine.properties-1.definitionstring.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22357](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22357)*





___
<a id="stepfunctions.resources.statemachine.properties-1.definitionstring.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22355](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22355)*





___
<a id="stepfunctions.resources.statemachine.properties-1.definitionstring.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22358](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22358)*





___

___
<a id="stepfunctions.resources.statemachine.properties-1.rolearn"></a>

###  RoleArn

** RoleArn**:  *`object`* 

*Defined in [spec/spec.ts:22366](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22366)*




<a id="stepfunctions.resources.statemachine.properties-1.rolearn.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-rolearn"

*Defined in [spec/spec.ts:22368](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22368)*





___
<a id="stepfunctions.resources.statemachine.properties-1.rolearn.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22369](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22369)*





___
<a id="stepfunctions.resources.statemachine.properties-1.rolearn.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22367](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22367)*





___
<a id="stepfunctions.resources.statemachine.properties-1.rolearn.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22370](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22370)*





___

___
<a id="stepfunctions.resources.statemachine.properties-1.statemachinename"></a>

###  StateMachineName

** StateMachineName**:  *`object`* 

*Defined in [spec/spec.ts:22360](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22360)*




<a id="stepfunctions.resources.statemachine.properties-1.statemachinename.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-stepfunctions-statemachine.html#cfn-stepfunctions-statemachine-statemachinename"

*Defined in [spec/spec.ts:22362](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22362)*





___
<a id="stepfunctions.resources.statemachine.properties-1.statemachinename.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22363](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22363)*





___
<a id="stepfunctions.resources.statemachine.properties-1.statemachinename.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22361](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22361)*





___
<a id="stepfunctions.resources.statemachine.properties-1.statemachinename.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22364](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22364)*





___

___

___

___

___

<a id="transform"></a>

## Object literal: Transform


<a id="transform.cloudtrail"></a>

###  CloudTrail

**●  CloudTrail**:  *`object`* 

*Defined in [transform/index.ts:18](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/transform/index.ts#L18)*


#### Type declaration




 Trail: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 TrailList: `function`




►(AWSClient: *`Service`*): `Promise`.<`IResource`[]>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| AWSClient | `Service`   |  - |





**Returns:** `Promise`.<`IResource`[]>







___
<a id="transform.ec2"></a>

###  EC2

**●  EC2**:  *`object`* 

*Defined in [transform/index.ts:33](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/transform/index.ts#L33)*


#### Type declaration




 CustomerGateway: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 DHCPOptions: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 EIP: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 EgressOnlyInternetGateway: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 FlowLog: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 Host: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 Instance: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 InternetGateway: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 NatGateway: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 RouteTable: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>







___
<a id="transform.s3"></a>

###  S3

**●  S3**:  *`object`* 

*Defined in [transform/index.ts:69](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/transform/index.ts#L69)*


#### Type declaration




 Bucket: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 BucketList: `function`




►(AWSClient: *`Service`*): `Promise`.<`IResource`[]>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| AWSClient | `Service`   |  - |





**Returns:** `Promise`.<`IResource`[]>






 BucketPolicy: `function`




►(name: *`string`*, AWSClient: *`Service`*, logical?: *`string`*): `Promise`.<`IResource`>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| name | `string`   |  - |
| AWSClient | `Service`   |  - |
| logical | `string`   |  - |





**Returns:** `Promise`.<`IResource`>






 BucketPolicyList: `function`




►(AWSClient: *`Service`*): `Promise`.<`IResource`[]>



**Parameters:**

| Param | Type | Description |
| ------ | ------ | ------ |
| AWSClient | `Service`   |  - |





**Returns:** `Promise`.<`IResource`[]>







___

<a id="waf"></a>

## Object literal: WAF


<a id="waf.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:22539](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22539)*




<a id="waf.models.activatedrule"></a>

###  ActivatedRule

** ActivatedRule**:  *`object`* 

*Defined in [spec/spec.ts:22684](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22684)*




<a id="waf.models.activatedrule.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-rules.html"

*Defined in [spec/spec.ts:22685](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22685)*





___
<a id="waf.models.activatedrule.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::WebACL.ActivatedRule"

*Defined in [spec/spec.ts:22706](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22706)*





___
<a id="waf.models.activatedrule.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22686](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22686)*




<a id="waf.models.activatedrule.properties.action"></a>

###  Action

** Action**:  *`object`* 

*Defined in [spec/spec.ts:22687](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22687)*




<a id="waf.models.activatedrule.properties.action.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-rules.html#cfn-waf-webacl-rules-action"

*Defined in [spec/spec.ts:22688](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22688)*





___
<a id="waf.models.activatedrule.properties.action.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22689](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22689)*





___
<a id="waf.models.activatedrule.properties.action.type"></a>

###  Type

**●  Type**:  *`string`*  = "WafAction"

*Defined in [spec/spec.ts:22690](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22690)*





___
<a id="waf.models.activatedrule.properties.action.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22691](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22691)*





___

___
<a id="waf.models.activatedrule.properties.priority"></a>

###  Priority

** Priority**:  *`object`* 

*Defined in [spec/spec.ts:22693](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22693)*




<a id="waf.models.activatedrule.properties.priority.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-rules.html#cfn-waf-webacl-rules-priority"

*Defined in [spec/spec.ts:22694](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22694)*





___
<a id="waf.models.activatedrule.properties.priority.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:22695](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22695)*





___
<a id="waf.models.activatedrule.properties.priority.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22696](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22696)*





___
<a id="waf.models.activatedrule.properties.priority.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22697](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22697)*





___

___
<a id="waf.models.activatedrule.properties.ruleid"></a>

###  RuleId

** RuleId**:  *`object`* 

*Defined in [spec/spec.ts:22699](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22699)*




<a id="waf.models.activatedrule.properties.ruleid.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-rules.html#cfn-waf-webacl-rules-ruleid"

*Defined in [spec/spec.ts:22700](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22700)*





___
<a id="waf.models.activatedrule.properties.ruleid.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22701](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22701)*





___
<a id="waf.models.activatedrule.properties.ruleid.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22702](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22702)*





___
<a id="waf.models.activatedrule.properties.ruleid.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22703](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22703)*





___

___

___

___
<a id="waf.models.bytematchtuple"></a>

###  ByteMatchTuple

** ByteMatchTuple**:  *`object`* 

*Defined in [spec/spec.ts:22540](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22540)*




<a id="waf.models.bytematchtuple.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples.html"

*Defined in [spec/spec.ts:22541](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22541)*





___
<a id="waf.models.bytematchtuple.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::ByteMatchSet.ByteMatchTuple"

*Defined in [spec/spec.ts:22574](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22574)*





___
<a id="waf.models.bytematchtuple.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22542](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22542)*




<a id="waf.models.bytematchtuple.properties-1.fieldtomatch"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:22543](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22543)*




<a id="waf.models.bytematchtuple.properties-1.fieldtomatch.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples.html#cfn-waf-bytematchset-bytematchtuples-fieldtomatch"

*Defined in [spec/spec.ts:22544](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22544)*





___
<a id="waf.models.bytematchtuple.properties-1.fieldtomatch.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22545](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22545)*





___
<a id="waf.models.bytematchtuple.properties-1.fieldtomatch.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:22546](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22546)*





___
<a id="waf.models.bytematchtuple.properties-1.fieldtomatch.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22547](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22547)*





___

___
<a id="waf.models.bytematchtuple.properties-1.positionalconstraint"></a>

###  PositionalConstraint

** PositionalConstraint**:  *`object`* 

*Defined in [spec/spec.ts:22549](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22549)*




<a id="waf.models.bytematchtuple.properties-1.positionalconstraint.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples.html#cfn-waf-bytematchset-bytematchtuples-positionalconstraint"

*Defined in [spec/spec.ts:22550](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22550)*





___
<a id="waf.models.bytematchtuple.properties-1.positionalconstraint.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22551](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22551)*





___
<a id="waf.models.bytematchtuple.properties-1.positionalconstraint.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22552](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22552)*





___
<a id="waf.models.bytematchtuple.properties-1.positionalconstraint.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22553](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22553)*





___

___
<a id="waf.models.bytematchtuple.properties-1.targetstring"></a>

###  TargetString

** TargetString**:  *`object`* 

*Defined in [spec/spec.ts:22555](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22555)*




<a id="waf.models.bytematchtuple.properties-1.targetstring.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples.html#cfn-waf-bytematchset-bytematchtuples-targetstring"

*Defined in [spec/spec.ts:22556](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22556)*





___
<a id="waf.models.bytematchtuple.properties-1.targetstring.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22557](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22557)*





___
<a id="waf.models.bytematchtuple.properties-1.targetstring.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22558](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22558)*





___
<a id="waf.models.bytematchtuple.properties-1.targetstring.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22559](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22559)*





___

___
<a id="waf.models.bytematchtuple.properties-1.targetstringbase64"></a>

###  TargetStringBase64

** TargetStringBase64**:  *`object`* 

*Defined in [spec/spec.ts:22561](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22561)*




<a id="waf.models.bytematchtuple.properties-1.targetstringbase64.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples.html#cfn-waf-bytematchset-bytematchtuples-targetstringbase64"

*Defined in [spec/spec.ts:22562](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22562)*





___
<a id="waf.models.bytematchtuple.properties-1.targetstringbase64.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22563](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22563)*





___
<a id="waf.models.bytematchtuple.properties-1.targetstringbase64.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22564](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22564)*





___
<a id="waf.models.bytematchtuple.properties-1.targetstringbase64.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22565](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22565)*





___

___
<a id="waf.models.bytematchtuple.properties-1.texttransformation"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:22567](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22567)*




<a id="waf.models.bytematchtuple.properties-1.texttransformation.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-bytematchset-bytematchtuples.html#cfn-waf-bytematchset-bytematchtuples-texttransformation"

*Defined in [spec/spec.ts:22568](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22568)*





___
<a id="waf.models.bytematchtuple.properties-1.texttransformation.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22569](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22569)*





___
<a id="waf.models.bytematchtuple.properties-1.texttransformation.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22570](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22570)*





___
<a id="waf.models.bytematchtuple.properties-1.texttransformation.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22571](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22571)*





___

___

___

___
<a id="waf.models.fieldtomatch-1"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:22576](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22576)*




<a id="waf.models.fieldtomatch-1.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-xssmatchset-xssmatchtuple-fieldtomatch.html"

*Defined in [spec/spec.ts:22577](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22577)*





___
<a id="waf.models.fieldtomatch-1.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::XssMatchSet.FieldToMatch"

*Defined in [spec/spec.ts:22592](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22592)*





___
<a id="waf.models.fieldtomatch-1.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22578](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22578)*




<a id="waf.models.fieldtomatch-1.properties-2.data"></a>

###  Data

** Data**:  *`object`* 

*Defined in [spec/spec.ts:22579](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22579)*




<a id="waf.models.fieldtomatch-1.properties-2.data.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-xssmatchset-xssmatchtuple-fieldtomatch.html#cfn-waf-xssmatchset-xssmatchtuple-fieldtomatch-data"

*Defined in [spec/spec.ts:22580](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22580)*





___
<a id="waf.models.fieldtomatch-1.properties-2.data.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22581](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22581)*





___
<a id="waf.models.fieldtomatch-1.properties-2.data.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22582](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22582)*





___
<a id="waf.models.fieldtomatch-1.properties-2.data.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22583](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22583)*





___

___
<a id="waf.models.fieldtomatch-1.properties-2.type-2"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22585](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22585)*




<a id="waf.models.fieldtomatch-1.properties-2.type-2.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-xssmatchset-xssmatchtuple-fieldtomatch.html#cfn-waf-xssmatchset-xssmatchtuple-fieldtomatch-type"

*Defined in [spec/spec.ts:22586](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22586)*





___
<a id="waf.models.fieldtomatch-1.properties-2.type-2.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22587](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22587)*





___
<a id="waf.models.fieldtomatch-1.properties-2.type-2.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22588](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22588)*





___
<a id="waf.models.fieldtomatch-1.properties-2.type-2.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22589](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22589)*





___

___

___

___
<a id="waf.models.ipsetdescriptor"></a>

###  IPSetDescriptor

** IPSetDescriptor**:  *`object`* 

*Defined in [spec/spec.ts:22594](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22594)*




<a id="waf.models.ipsetdescriptor.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-ipset-ipsetdescriptors.html"

*Defined in [spec/spec.ts:22595](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22595)*





___
<a id="waf.models.ipsetdescriptor.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::IPSet.IPSetDescriptor"

*Defined in [spec/spec.ts:22610](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22610)*





___
<a id="waf.models.ipsetdescriptor.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22596](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22596)*




<a id="waf.models.ipsetdescriptor.properties-3.type-3"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22597](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22597)*




<a id="waf.models.ipsetdescriptor.properties-3.type-3.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-ipset-ipsetdescriptors.html#cfn-waf-ipset-ipsetdescriptors-type"

*Defined in [spec/spec.ts:22598](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22598)*





___
<a id="waf.models.ipsetdescriptor.properties-3.type-3.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22599](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22599)*





___
<a id="waf.models.ipsetdescriptor.properties-3.type-3.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22600](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22600)*





___
<a id="waf.models.ipsetdescriptor.properties-3.type-3.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22601](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22601)*





___

___
<a id="waf.models.ipsetdescriptor.properties-3.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:22603](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22603)*




<a id="waf.models.ipsetdescriptor.properties-3.value.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-ipset-ipsetdescriptors.html#cfn-waf-ipset-ipsetdescriptors-value"

*Defined in [spec/spec.ts:22604](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22604)*





___
<a id="waf.models.ipsetdescriptor.properties-3.value.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22605](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22605)*





___
<a id="waf.models.ipsetdescriptor.properties-3.value.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22606](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22606)*





___
<a id="waf.models.ipsetdescriptor.properties-3.value.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22607](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22607)*





___

___

___

___
<a id="waf.models.predicate"></a>

###  Predicate

** Predicate**:  *`object`* 

*Defined in [spec/spec.ts:22612](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22612)*




<a id="waf.models.predicate.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html"

*Defined in [spec/spec.ts:22613](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22613)*





___
<a id="waf.models.predicate.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::Rule.Predicate"

*Defined in [spec/spec.ts:22634](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22634)*





___
<a id="waf.models.predicate.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22614](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22614)*




<a id="waf.models.predicate.properties-4.dataid"></a>

###  DataId

** DataId**:  *`object`* 

*Defined in [spec/spec.ts:22615](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22615)*




<a id="waf.models.predicate.properties-4.dataid.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html#cfn-waf-rule-predicates-dataid"

*Defined in [spec/spec.ts:22616](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22616)*





___
<a id="waf.models.predicate.properties-4.dataid.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22617](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22617)*





___
<a id="waf.models.predicate.properties-4.dataid.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22618](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22618)*





___
<a id="waf.models.predicate.properties-4.dataid.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22619](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22619)*





___

___
<a id="waf.models.predicate.properties-4.negated"></a>

###  Negated

** Negated**:  *`object`* 

*Defined in [spec/spec.ts:22621](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22621)*




<a id="waf.models.predicate.properties-4.negated.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html#cfn-waf-rule-predicates-negated"

*Defined in [spec/spec.ts:22622](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22622)*





___
<a id="waf.models.predicate.properties-4.negated.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:22623](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22623)*





___
<a id="waf.models.predicate.properties-4.negated.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22624](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22624)*





___
<a id="waf.models.predicate.properties-4.negated.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22625](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22625)*





___

___
<a id="waf.models.predicate.properties-4.type-4"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22627](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22627)*




<a id="waf.models.predicate.properties-4.type-4.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-rule-predicates.html#cfn-waf-rule-predicates-type"

*Defined in [spec/spec.ts:22628](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22628)*





___
<a id="waf.models.predicate.properties-4.type-4.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22629](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22629)*





___
<a id="waf.models.predicate.properties-4.type-4.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22630](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22630)*





___
<a id="waf.models.predicate.properties-4.type-4.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22631](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22631)*





___

___

___

___
<a id="waf.models.sizeconstraint"></a>

###  SizeConstraint

** SizeConstraint**:  *`object`* 

*Defined in [spec/spec.ts:22636](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22636)*




<a id="waf.models.sizeconstraint.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sizeconstraintset-sizeconstraint.html"

*Defined in [spec/spec.ts:22637](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22637)*





___
<a id="waf.models.sizeconstraint.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::SizeConstraintSet.SizeConstraint"

*Defined in [spec/spec.ts:22664](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22664)*





___
<a id="waf.models.sizeconstraint.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22638](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22638)*




<a id="waf.models.sizeconstraint.properties-5.comparisonoperator"></a>

###  ComparisonOperator

** ComparisonOperator**:  *`object`* 

*Defined in [spec/spec.ts:22639](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22639)*




<a id="waf.models.sizeconstraint.properties-5.comparisonoperator.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sizeconstraintset-sizeconstraint.html#cfn-waf-sizeconstraintset-sizeconstraint-comparisonoperator"

*Defined in [spec/spec.ts:22640](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22640)*





___
<a id="waf.models.sizeconstraint.properties-5.comparisonoperator.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22641](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22641)*





___
<a id="waf.models.sizeconstraint.properties-5.comparisonoperator.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22642](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22642)*





___
<a id="waf.models.sizeconstraint.properties-5.comparisonoperator.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22643](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22643)*





___

___
<a id="waf.models.sizeconstraint.properties-5.fieldtomatch-2"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:22645](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22645)*




<a id="waf.models.sizeconstraint.properties-5.fieldtomatch-2.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sizeconstraintset-sizeconstraint.html#cfn-waf-sizeconstraintset-sizeconstraint-fieldtomatch"

*Defined in [spec/spec.ts:22646](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22646)*





___
<a id="waf.models.sizeconstraint.properties-5.fieldtomatch-2.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22647](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22647)*





___
<a id="waf.models.sizeconstraint.properties-5.fieldtomatch-2.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:22648](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22648)*





___
<a id="waf.models.sizeconstraint.properties-5.fieldtomatch-2.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22649](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22649)*





___

___
<a id="waf.models.sizeconstraint.properties-5.size"></a>

###  Size

** Size**:  *`object`* 

*Defined in [spec/spec.ts:22651](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22651)*




<a id="waf.models.sizeconstraint.properties-5.size.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sizeconstraintset-sizeconstraint.html#cfn-waf-sizeconstraintset-sizeconstraint-size"

*Defined in [spec/spec.ts:22652](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22652)*





___
<a id="waf.models.sizeconstraint.properties-5.size.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:22653](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22653)*





___
<a id="waf.models.sizeconstraint.properties-5.size.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22654](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22654)*





___
<a id="waf.models.sizeconstraint.properties-5.size.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22655](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22655)*





___

___
<a id="waf.models.sizeconstraint.properties-5.texttransformation-1"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:22657](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22657)*




<a id="waf.models.sizeconstraint.properties-5.texttransformation-1.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sizeconstraintset-sizeconstraint.html#cfn-waf-sizeconstraintset-sizeconstraint-texttransformation"

*Defined in [spec/spec.ts:22658](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22658)*





___
<a id="waf.models.sizeconstraint.properties-5.texttransformation-1.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22659](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22659)*





___
<a id="waf.models.sizeconstraint.properties-5.texttransformation-1.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22660](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22660)*





___
<a id="waf.models.sizeconstraint.properties-5.texttransformation-1.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22661](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22661)*





___

___

___

___
<a id="waf.models.sqlinjectionmatchtuple"></a>

###  SqlInjectionMatchTuple

** SqlInjectionMatchTuple**:  *`object`* 

*Defined in [spec/spec.ts:22666](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22666)*




<a id="waf.models.sqlinjectionmatchtuple.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuples.html"

*Defined in [spec/spec.ts:22667](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22667)*





___
<a id="waf.models.sqlinjectionmatchtuple.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::SqlInjectionMatchSet.SqlInjectionMatchTuple"

*Defined in [spec/spec.ts:22682](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22682)*





___
<a id="waf.models.sqlinjectionmatchtuple.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22668](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22668)*




<a id="waf.models.sqlinjectionmatchtuple.properties-6.fieldtomatch-3"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:22669](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22669)*




<a id="waf.models.sqlinjectionmatchtuple.properties-6.fieldtomatch-3.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuples.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuples-fieldtomatch"

*Defined in [spec/spec.ts:22670](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22670)*





___
<a id="waf.models.sqlinjectionmatchtuple.properties-6.fieldtomatch-3.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22671](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22671)*





___
<a id="waf.models.sqlinjectionmatchtuple.properties-6.fieldtomatch-3.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:22672](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22672)*





___
<a id="waf.models.sqlinjectionmatchtuple.properties-6.fieldtomatch-3.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22673](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22673)*





___

___
<a id="waf.models.sqlinjectionmatchtuple.properties-6.texttransformation-2"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:22675](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22675)*




<a id="waf.models.sqlinjectionmatchtuple.properties-6.texttransformation-2.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-sqlinjectionmatchset-sqlinjectionmatchtuples.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuples-texttransformation"

*Defined in [spec/spec.ts:22676](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22676)*





___
<a id="waf.models.sqlinjectionmatchtuple.properties-6.texttransformation-2.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22677](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22677)*





___
<a id="waf.models.sqlinjectionmatchtuple.properties-6.texttransformation-2.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22678](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22678)*





___
<a id="waf.models.sqlinjectionmatchtuple.properties-6.texttransformation-2.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22679](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22679)*





___

___

___

___
<a id="waf.models.wafaction"></a>

###  WafAction

** WafAction**:  *`object`* 

*Defined in [spec/spec.ts:22708](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22708)*




<a id="waf.models.wafaction.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html"

*Defined in [spec/spec.ts:22709](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22709)*





___
<a id="waf.models.wafaction.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::WebACL.WafAction"

*Defined in [spec/spec.ts:22718](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22718)*





___
<a id="waf.models.wafaction.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22710](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22710)*




<a id="waf.models.wafaction.properties-7.type-7"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22711](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22711)*




<a id="waf.models.wafaction.properties-7.type-7.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-webacl-action.html#cfn-waf-webacl-action-type"

*Defined in [spec/spec.ts:22712](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22712)*





___
<a id="waf.models.wafaction.properties-7.type-7.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22713](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22713)*





___
<a id="waf.models.wafaction.properties-7.type-7.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22714](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22714)*





___
<a id="waf.models.wafaction.properties-7.type-7.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22715](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22715)*





___

___

___

___
<a id="waf.models.xssmatchtuple"></a>

###  XssMatchTuple

** XssMatchTuple**:  *`object`* 

*Defined in [spec/spec.ts:22720](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22720)*




<a id="waf.models.xssmatchtuple.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-xssmatchset-xssmatchtuple.html"

*Defined in [spec/spec.ts:22721](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22721)*





___
<a id="waf.models.xssmatchtuple.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::XssMatchSet.XssMatchTuple"

*Defined in [spec/spec.ts:22736](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22736)*





___
<a id="waf.models.xssmatchtuple.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22722](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22722)*




<a id="waf.models.xssmatchtuple.properties-8.fieldtomatch-4"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:22723](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22723)*




<a id="waf.models.xssmatchtuple.properties-8.fieldtomatch-4.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-xssmatchset-xssmatchtuple.html#cfn-waf-xssmatchset-xssmatchtuple-fieldtomatch"

*Defined in [spec/spec.ts:22724](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22724)*





___
<a id="waf.models.xssmatchtuple.properties-8.fieldtomatch-4.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22725](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22725)*





___
<a id="waf.models.xssmatchtuple.properties-8.fieldtomatch-4.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:22726](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22726)*





___
<a id="waf.models.xssmatchtuple.properties-8.fieldtomatch-4.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22727](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22727)*





___

___
<a id="waf.models.xssmatchtuple.properties-8.texttransformation-3"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:22729](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22729)*




<a id="waf.models.xssmatchtuple.properties-8.texttransformation-3.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-waf-xssmatchset-xssmatchtuple.html#cfn-waf-xssmatchset-xssmatchtuple-texttransformation"

*Defined in [spec/spec.ts:22730](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22730)*





___
<a id="waf.models.xssmatchtuple.properties-8.texttransformation-3.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22731](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22731)*





___
<a id="waf.models.xssmatchtuple.properties-8.texttransformation-3.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22732](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22732)*





___
<a id="waf.models.xssmatchtuple.properties-8.texttransformation-3.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22733](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22733)*





___

___

___

___

___
<a id="waf.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:22379](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22379)*




<a id="waf.resources.bytematchset"></a>

###  ByteMatchSet

** ByteMatchSet**:  *`object`* 

*Defined in [spec/spec.ts:22380](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22380)*




<a id="waf.resources.bytematchset.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html"

*Defined in [spec/spec.ts:22381](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22381)*





___
<a id="waf.resources.bytematchset.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::ByteMatchSet"

*Defined in [spec/spec.ts:22398](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22398)*





___
<a id="waf.resources.bytematchset.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22382](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22382)*




<a id="waf.resources.bytematchset.properties-9.bytematchtuples"></a>

###  ByteMatchTuples

** ByteMatchTuples**:  *`object`* 

*Defined in [spec/spec.ts:22383](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22383)*




<a id="waf.resources.bytematchset.properties-9.bytematchtuples.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-bytematchtuples"

*Defined in [spec/spec.ts:22384](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22384)*





___
<a id="waf.resources.bytematchset.properties-9.bytematchtuples.duplicatesallowed"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22385](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22385)*





___
<a id="waf.resources.bytematchset.properties-9.bytematchtuples.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ByteMatchTuple"

*Defined in [spec/spec.ts:22386](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22386)*





___
<a id="waf.resources.bytematchset.properties-9.bytematchtuples.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22387](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22387)*





___
<a id="waf.resources.bytematchset.properties-9.bytematchtuples.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22388](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22388)*





___
<a id="waf.resources.bytematchset.properties-9.bytematchtuples.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22389](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22389)*





___

___
<a id="waf.resources.bytematchset.properties-9.name-10"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22391](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22391)*




<a id="waf.resources.bytematchset.properties-9.name-10.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-bytematchset.html#cfn-waf-bytematchset-name"

*Defined in [spec/spec.ts:22392](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22392)*





___
<a id="waf.resources.bytematchset.properties-9.name-10.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22393](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22393)*





___
<a id="waf.resources.bytematchset.properties-9.name-10.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22394](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22394)*





___
<a id="waf.resources.bytematchset.properties-9.name-10.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22395](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22395)*





___

___

___

___
<a id="waf.resources.ipset"></a>

###  IPSet

** IPSet**:  *`object`* 

*Defined in [spec/spec.ts:22400](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22400)*




<a id="waf.resources.ipset.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html"

*Defined in [spec/spec.ts:22401](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22401)*





___
<a id="waf.resources.ipset.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::IPSet"

*Defined in [spec/spec.ts:22418](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22418)*





___
<a id="waf.resources.ipset.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22402](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22402)*




<a id="waf.resources.ipset.properties-10.ipsetdescriptors"></a>

###  IPSetDescriptors

** IPSetDescriptors**:  *`object`* 

*Defined in [spec/spec.ts:22403](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22403)*




<a id="waf.resources.ipset.properties-10.ipsetdescriptors.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-ipsetdescriptors"

*Defined in [spec/spec.ts:22404](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22404)*





___
<a id="waf.resources.ipset.properties-10.ipsetdescriptors.duplicatesallowed-1"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22405](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22405)*





___
<a id="waf.resources.ipset.properties-10.ipsetdescriptors.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "IPSetDescriptor"

*Defined in [spec/spec.ts:22406](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22406)*





___
<a id="waf.resources.ipset.properties-10.ipsetdescriptors.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22407](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22407)*





___
<a id="waf.resources.ipset.properties-10.ipsetdescriptors.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22408](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22408)*





___
<a id="waf.resources.ipset.properties-10.ipsetdescriptors.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22409](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22409)*





___

___
<a id="waf.resources.ipset.properties-10.name-12"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22411](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22411)*




<a id="waf.resources.ipset.properties-10.name-12.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-ipset.html#cfn-waf-ipset-name"

*Defined in [spec/spec.ts:22412](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22412)*





___
<a id="waf.resources.ipset.properties-10.name-12.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22413](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22413)*





___
<a id="waf.resources.ipset.properties-10.name-12.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22414](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22414)*





___
<a id="waf.resources.ipset.properties-10.name-12.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22415](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22415)*





___

___

___

___
<a id="waf.resources.rule"></a>

###  Rule

** Rule**:  *`object`* 

*Defined in [spec/spec.ts:22420](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22420)*




<a id="waf.resources.rule.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html"

*Defined in [spec/spec.ts:22421](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22421)*





___
<a id="waf.resources.rule.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::Rule"

*Defined in [spec/spec.ts:22444](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22444)*





___
<a id="waf.resources.rule.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22422](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22422)*




<a id="waf.resources.rule.properties-11.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:22423](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22423)*




<a id="waf.resources.rule.properties-11.metricname.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-metricname"

*Defined in [spec/spec.ts:22424](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22424)*





___
<a id="waf.resources.rule.properties-11.metricname.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22425](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22425)*





___
<a id="waf.resources.rule.properties-11.metricname.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22426](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22426)*





___
<a id="waf.resources.rule.properties-11.metricname.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22427](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22427)*





___

___
<a id="waf.resources.rule.properties-11.name-14"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22429](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22429)*




<a id="waf.resources.rule.properties-11.name-14.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-name"

*Defined in [spec/spec.ts:22430](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22430)*





___
<a id="waf.resources.rule.properties-11.name-14.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22431](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22431)*





___
<a id="waf.resources.rule.properties-11.name-14.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22432](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22432)*





___
<a id="waf.resources.rule.properties-11.name-14.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22433](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22433)*





___

___
<a id="waf.resources.rule.properties-11.predicates"></a>

###  Predicates

** Predicates**:  *`object`* 

*Defined in [spec/spec.ts:22435](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22435)*




<a id="waf.resources.rule.properties-11.predicates.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-rule.html#cfn-waf-rule-predicates"

*Defined in [spec/spec.ts:22436](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22436)*





___
<a id="waf.resources.rule.properties-11.predicates.duplicatesallowed-2"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22437](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22437)*





___
<a id="waf.resources.rule.properties-11.predicates.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Predicate"

*Defined in [spec/spec.ts:22438](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22438)*





___
<a id="waf.resources.rule.properties-11.predicates.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22439](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22439)*





___
<a id="waf.resources.rule.properties-11.predicates.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22440](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22440)*





___
<a id="waf.resources.rule.properties-11.predicates.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22441](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22441)*





___

___

___

___
<a id="waf.resources.sizeconstraintset"></a>

###  SizeConstraintSet

** SizeConstraintSet**:  *`object`* 

*Defined in [spec/spec.ts:22446](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22446)*




<a id="waf.resources.sizeconstraintset.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html"

*Defined in [spec/spec.ts:22447](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22447)*





___
<a id="waf.resources.sizeconstraintset.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::SizeConstraintSet"

*Defined in [spec/spec.ts:22464](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22464)*





___
<a id="waf.resources.sizeconstraintset.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22448](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22448)*




<a id="waf.resources.sizeconstraintset.properties-12.name-16"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22449](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22449)*




<a id="waf.resources.sizeconstraintset.properties-12.name-16.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-name"

*Defined in [spec/spec.ts:22450](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22450)*





___
<a id="waf.resources.sizeconstraintset.properties-12.name-16.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22451](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22451)*





___
<a id="waf.resources.sizeconstraintset.properties-12.name-16.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22452](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22452)*





___
<a id="waf.resources.sizeconstraintset.properties-12.name-16.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22453](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22453)*





___

___
<a id="waf.resources.sizeconstraintset.properties-12.sizeconstraints"></a>

###  SizeConstraints

** SizeConstraints**:  *`object`* 

*Defined in [spec/spec.ts:22455](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22455)*




<a id="waf.resources.sizeconstraintset.properties-12.sizeconstraints.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sizeconstraintset.html#cfn-waf-sizeconstraintset-sizeconstraints"

*Defined in [spec/spec.ts:22456](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22456)*





___
<a id="waf.resources.sizeconstraintset.properties-12.sizeconstraints.duplicatesallowed-3"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22457](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22457)*





___
<a id="waf.resources.sizeconstraintset.properties-12.sizeconstraints.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "SizeConstraint"

*Defined in [spec/spec.ts:22458](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22458)*





___
<a id="waf.resources.sizeconstraintset.properties-12.sizeconstraints.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22459](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22459)*





___
<a id="waf.resources.sizeconstraintset.properties-12.sizeconstraints.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22460](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22460)*





___
<a id="waf.resources.sizeconstraintset.properties-12.sizeconstraints.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22461](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22461)*





___

___

___

___
<a id="waf.resources.sqlinjectionmatchset"></a>

###  SqlInjectionMatchSet

** SqlInjectionMatchSet**:  *`object`* 

*Defined in [spec/spec.ts:22466](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22466)*




<a id="waf.resources.sqlinjectionmatchset.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html"

*Defined in [spec/spec.ts:22467](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22467)*





___
<a id="waf.resources.sqlinjectionmatchset.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::SqlInjectionMatchSet"

*Defined in [spec/spec.ts:22484](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22484)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22468](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22468)*




<a id="waf.resources.sqlinjectionmatchset.properties-13.name-18"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22469](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22469)*




<a id="waf.resources.sqlinjectionmatchset.properties-13.name-18.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-name"

*Defined in [spec/spec.ts:22470](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22470)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.name-18.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22471](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22471)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.name-18.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22472](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22472)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.name-18.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22473](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22473)*





___

___
<a id="waf.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples"></a>

###  SqlInjectionMatchTuples

** SqlInjectionMatchTuples**:  *`object`* 

*Defined in [spec/spec.ts:22475](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22475)*




<a id="waf.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-sqlinjectionmatchset.html#cfn-waf-sqlinjectionmatchset-sqlinjectionmatchtuples"

*Defined in [spec/spec.ts:22476](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22476)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.duplicatesallowed-4"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22477](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22477)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "SqlInjectionMatchTuple"

*Defined in [spec/spec.ts:22478](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22478)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22479](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22479)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22480](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22480)*





___
<a id="waf.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22481](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22481)*





___

___

___

___
<a id="waf.resources.webacl"></a>

###  WebACL

** WebACL**:  *`object`* 

*Defined in [spec/spec.ts:22486](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22486)*




<a id="waf.resources.webacl.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html"

*Defined in [spec/spec.ts:22487](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22487)*





___
<a id="waf.resources.webacl.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::WebACL"

*Defined in [spec/spec.ts:22516](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22516)*





___
<a id="waf.resources.webacl.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22488](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22488)*




<a id="waf.resources.webacl.properties-14.defaultaction"></a>

###  DefaultAction

** DefaultAction**:  *`object`* 

*Defined in [spec/spec.ts:22489](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22489)*




<a id="waf.resources.webacl.properties-14.defaultaction.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-defaultaction"

*Defined in [spec/spec.ts:22490](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22490)*





___
<a id="waf.resources.webacl.properties-14.defaultaction.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22491](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22491)*





___
<a id="waf.resources.webacl.properties-14.defaultaction.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "WafAction"

*Defined in [spec/spec.ts:22492](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22492)*





___
<a id="waf.resources.webacl.properties-14.defaultaction.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22493](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22493)*





___

___
<a id="waf.resources.webacl.properties-14.metricname-1"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:22495](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22495)*




<a id="waf.resources.webacl.properties-14.metricname-1.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-metricname"

*Defined in [spec/spec.ts:22496](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22496)*





___
<a id="waf.resources.webacl.properties-14.metricname-1.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22497](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22497)*





___
<a id="waf.resources.webacl.properties-14.metricname-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22498](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22498)*





___
<a id="waf.resources.webacl.properties-14.metricname-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22499](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22499)*





___

___
<a id="waf.resources.webacl.properties-14.name-20"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22501](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22501)*




<a id="waf.resources.webacl.properties-14.name-20.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-name"

*Defined in [spec/spec.ts:22502](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22502)*





___
<a id="waf.resources.webacl.properties-14.name-20.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22503](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22503)*





___
<a id="waf.resources.webacl.properties-14.name-20.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22504](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22504)*





___
<a id="waf.resources.webacl.properties-14.name-20.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22505](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22505)*





___

___
<a id="waf.resources.webacl.properties-14.rules"></a>

###  Rules

** Rules**:  *`object`* 

*Defined in [spec/spec.ts:22507](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22507)*




<a id="waf.resources.webacl.properties-14.rules.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-webacl.html#cfn-waf-webacl-rules"

*Defined in [spec/spec.ts:22508](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22508)*





___
<a id="waf.resources.webacl.properties-14.rules.duplicatesallowed-5"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22509](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22509)*





___
<a id="waf.resources.webacl.properties-14.rules.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ActivatedRule"

*Defined in [spec/spec.ts:22510](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22510)*





___
<a id="waf.resources.webacl.properties-14.rules.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22511](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22511)*





___
<a id="waf.resources.webacl.properties-14.rules.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22512](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22512)*





___
<a id="waf.resources.webacl.properties-14.rules.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22513](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22513)*





___

___

___

___
<a id="waf.resources.xssmatchset"></a>

###  XssMatchSet

** XssMatchSet**:  *`object`* 

*Defined in [spec/spec.ts:22518](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22518)*




<a id="waf.resources.xssmatchset.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html"

*Defined in [spec/spec.ts:22519](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22519)*





___
<a id="waf.resources.xssmatchset.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAF::XssMatchSet"

*Defined in [spec/spec.ts:22536](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22536)*





___
<a id="waf.resources.xssmatchset.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22520](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22520)*




<a id="waf.resources.xssmatchset.properties-15.name-22"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22521](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22521)*




<a id="waf.resources.xssmatchset.properties-15.name-22.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-name"

*Defined in [spec/spec.ts:22522](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22522)*





___
<a id="waf.resources.xssmatchset.properties-15.name-22.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22523](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22523)*





___
<a id="waf.resources.xssmatchset.properties-15.name-22.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22524](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22524)*





___
<a id="waf.resources.xssmatchset.properties-15.name-22.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22525](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22525)*





___

___
<a id="waf.resources.xssmatchset.properties-15.xssmatchtuples"></a>

###  XssMatchTuples

** XssMatchTuples**:  *`object`* 

*Defined in [spec/spec.ts:22527](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22527)*




<a id="waf.resources.xssmatchset.properties-15.xssmatchtuples.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-waf-xssmatchset.html#cfn-waf-xssmatchset-xssmatchtuples"

*Defined in [spec/spec.ts:22528](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22528)*





___
<a id="waf.resources.xssmatchset.properties-15.xssmatchtuples.duplicatesallowed-6"></a>

###  DuplicatesAllowed

**●  DuplicatesAllowed**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22529](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22529)*





___
<a id="waf.resources.xssmatchset.properties-15.xssmatchtuples.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "XssMatchTuple"

*Defined in [spec/spec.ts:22530](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22530)*





___
<a id="waf.resources.xssmatchset.properties-15.xssmatchtuples.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22531](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22531)*





___
<a id="waf.resources.xssmatchset.properties-15.xssmatchtuples.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22532](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22532)*





___
<a id="waf.resources.xssmatchset.properties-15.xssmatchtuples.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22533](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22533)*





___

___

___

___

___

<a id="wafregional"></a>

## Object literal: WAFRegional


<a id="wafregional.models"></a>

###  Models

** Models**:  *`object`* 

*Defined in [spec/spec.ts:22912](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22912)*




<a id="wafregional.models.action"></a>

###  Action

** Action**:  *`object`* 

*Defined in [spec/spec.ts:23057](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23057)*




<a id="wafregional.models.action.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html"

*Defined in [spec/spec.ts:23058](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23058)*





___
<a id="wafregional.models.action.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::WebACL.Action"

*Defined in [spec/spec.ts:23067](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23067)*





___
<a id="wafregional.models.action.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:23059](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23059)*




<a id="wafregional.models.action.properties.type"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:23060](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23060)*




<a id="wafregional.models.action.properties.type.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-action.html#cfn-wafregional-webacl-action-type"

*Defined in [spec/spec.ts:23062](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23062)*





___
<a id="wafregional.models.action.properties.type.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23063](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23063)*





___
<a id="wafregional.models.action.properties.type.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23061](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23061)*





___
<a id="wafregional.models.action.properties.type.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23064](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23064)*





___

___

___

___
<a id="wafregional.models.bytematchtuple"></a>

###  ByteMatchTuple

** ByteMatchTuple**:  *`object`* 

*Defined in [spec/spec.ts:22913](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22913)*




<a id="wafregional.models.bytematchtuple.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-bytematchset-bytematchtuple.html"

*Defined in [spec/spec.ts:22914](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22914)*





___
<a id="wafregional.models.bytematchtuple.name-1"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::ByteMatchSet.ByteMatchTuple"

*Defined in [spec/spec.ts:22947](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22947)*





___
<a id="wafregional.models.bytematchtuple.properties-1"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22915](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22915)*




<a id="wafregional.models.bytematchtuple.properties-1.fieldtomatch"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:22940](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22940)*




<a id="wafregional.models.bytematchtuple.properties-1.fieldtomatch.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-bytematchset-bytematchtuple.html#cfn-wafregional-bytematchset-bytematchtuple-fieldtomatch"

*Defined in [spec/spec.ts:22943](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22943)*





___
<a id="wafregional.models.bytematchtuple.properties-1.fieldtomatch.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22942](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22942)*





___
<a id="wafregional.models.bytematchtuple.properties-1.fieldtomatch.type-1"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:22941](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22941)*





___
<a id="wafregional.models.bytematchtuple.properties-1.fieldtomatch.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22944](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22944)*





___

___
<a id="wafregional.models.bytematchtuple.properties-1.positionalconstraint"></a>

###  PositionalConstraint

** PositionalConstraint**:  *`object`* 

*Defined in [spec/spec.ts:22928](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22928)*




<a id="wafregional.models.bytematchtuple.properties-1.positionalconstraint.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-bytematchset-bytematchtuple.html#cfn-wafregional-bytematchset-bytematchtuple-positionalconstraint"

*Defined in [spec/spec.ts:22930](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22930)*





___
<a id="wafregional.models.bytematchtuple.properties-1.positionalconstraint.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22931](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22931)*





___
<a id="wafregional.models.bytematchtuple.properties-1.positionalconstraint.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22929](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22929)*





___
<a id="wafregional.models.bytematchtuple.properties-1.positionalconstraint.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22932](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22932)*





___

___
<a id="wafregional.models.bytematchtuple.properties-1.targetstring"></a>

###  TargetString

** TargetString**:  *`object`* 

*Defined in [spec/spec.ts:22916](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22916)*




<a id="wafregional.models.bytematchtuple.properties-1.targetstring.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-bytematchset-bytematchtuple.html#cfn-wafregional-bytematchset-bytematchtuple-targetstring"

*Defined in [spec/spec.ts:22918](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22918)*





___
<a id="wafregional.models.bytematchtuple.properties-1.targetstring.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22919](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22919)*





___
<a id="wafregional.models.bytematchtuple.properties-1.targetstring.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22917](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22917)*





___
<a id="wafregional.models.bytematchtuple.properties-1.targetstring.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22920](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22920)*





___

___
<a id="wafregional.models.bytematchtuple.properties-1.targetstringbase64"></a>

###  TargetStringBase64

** TargetStringBase64**:  *`object`* 

*Defined in [spec/spec.ts:22922](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22922)*




<a id="wafregional.models.bytematchtuple.properties-1.targetstringbase64.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-bytematchset-bytematchtuple.html#cfn-wafregional-bytematchset-bytematchtuple-targetstringbase64"

*Defined in [spec/spec.ts:22924](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22924)*





___
<a id="wafregional.models.bytematchtuple.properties-1.targetstringbase64.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22925](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22925)*





___
<a id="wafregional.models.bytematchtuple.properties-1.targetstringbase64.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22923](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22923)*





___
<a id="wafregional.models.bytematchtuple.properties-1.targetstringbase64.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22926](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22926)*





___

___
<a id="wafregional.models.bytematchtuple.properties-1.texttransformation"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:22934](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22934)*




<a id="wafregional.models.bytematchtuple.properties-1.texttransformation.documentation-7"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-bytematchset-bytematchtuple.html#cfn-wafregional-bytematchset-bytematchtuple-texttransformation"

*Defined in [spec/spec.ts:22936](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22936)*





___
<a id="wafregional.models.bytematchtuple.properties-1.texttransformation.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22937](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22937)*





___
<a id="wafregional.models.bytematchtuple.properties-1.texttransformation.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22935](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22935)*





___
<a id="wafregional.models.bytematchtuple.properties-1.texttransformation.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22938](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22938)*





___

___

___

___
<a id="wafregional.models.fieldtomatch-1"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:22949](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22949)*




<a id="wafregional.models.fieldtomatch-1.documentation-8"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-xssmatchset-fieldtomatch.html"

*Defined in [spec/spec.ts:22950](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22950)*





___
<a id="wafregional.models.fieldtomatch-1.name-2"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::XssMatchSet.FieldToMatch"

*Defined in [spec/spec.ts:22965](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22965)*





___
<a id="wafregional.models.fieldtomatch-1.properties-2"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22951](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22951)*




<a id="wafregional.models.fieldtomatch-1.properties-2.data"></a>

###  Data

** Data**:  *`object`* 

*Defined in [spec/spec.ts:22958](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22958)*




<a id="wafregional.models.fieldtomatch-1.properties-2.data.documentation-9"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-xssmatchset-fieldtomatch.html#cfn-wafregional-xssmatchset-fieldtomatch-data"

*Defined in [spec/spec.ts:22960](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22960)*





___
<a id="wafregional.models.fieldtomatch-1.properties-2.data.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22961](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22961)*





___
<a id="wafregional.models.fieldtomatch-1.properties-2.data.required-6"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22959](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22959)*





___
<a id="wafregional.models.fieldtomatch-1.properties-2.data.updatetype-6"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22962](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22962)*





___

___
<a id="wafregional.models.fieldtomatch-1.properties-2.type-2"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22952](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22952)*




<a id="wafregional.models.fieldtomatch-1.properties-2.type-2.documentation-10"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-xssmatchset-fieldtomatch.html#cfn-wafregional-xssmatchset-fieldtomatch-type"

*Defined in [spec/spec.ts:22954](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22954)*





___
<a id="wafregional.models.fieldtomatch-1.properties-2.type-2.primitivetype-6"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22955](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22955)*





___
<a id="wafregional.models.fieldtomatch-1.properties-2.type-2.required-7"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22953](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22953)*





___
<a id="wafregional.models.fieldtomatch-1.properties-2.type-2.updatetype-7"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22956](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22956)*





___

___

___

___
<a id="wafregional.models.ipsetdescriptor"></a>

###  IPSetDescriptor

** IPSetDescriptor**:  *`object`* 

*Defined in [spec/spec.ts:22967](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22967)*




<a id="wafregional.models.ipsetdescriptor.documentation-11"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-ipset-ipsetdescriptor.html"

*Defined in [spec/spec.ts:22968](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22968)*





___
<a id="wafregional.models.ipsetdescriptor.name-3"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::IPSet.IPSetDescriptor"

*Defined in [spec/spec.ts:22983](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22983)*





___
<a id="wafregional.models.ipsetdescriptor.properties-3"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22969](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22969)*




<a id="wafregional.models.ipsetdescriptor.properties-3.type-3"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22970](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22970)*




<a id="wafregional.models.ipsetdescriptor.properties-3.type-3.documentation-12"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-ipset-ipsetdescriptor.html#cfn-wafregional-ipset-ipsetdescriptor-type"

*Defined in [spec/spec.ts:22972](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22972)*





___
<a id="wafregional.models.ipsetdescriptor.properties-3.type-3.primitivetype-7"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22973](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22973)*





___
<a id="wafregional.models.ipsetdescriptor.properties-3.type-3.required-8"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22971](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22971)*





___
<a id="wafregional.models.ipsetdescriptor.properties-3.type-3.updatetype-8"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22974](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22974)*





___

___
<a id="wafregional.models.ipsetdescriptor.properties-3.value"></a>

###  Value

** Value**:  *`object`* 

*Defined in [spec/spec.ts:22976](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22976)*




<a id="wafregional.models.ipsetdescriptor.properties-3.value.documentation-13"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-ipset-ipsetdescriptor.html#cfn-wafregional-ipset-ipsetdescriptor-value"

*Defined in [spec/spec.ts:22978](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22978)*





___
<a id="wafregional.models.ipsetdescriptor.properties-3.value.primitivetype-8"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22979](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22979)*





___
<a id="wafregional.models.ipsetdescriptor.properties-3.value.required-9"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22977](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22977)*





___
<a id="wafregional.models.ipsetdescriptor.properties-3.value.updatetype-9"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22980](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22980)*





___

___

___

___
<a id="wafregional.models.predicate"></a>

###  Predicate

** Predicate**:  *`object`* 

*Defined in [spec/spec.ts:22985](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22985)*




<a id="wafregional.models.predicate.documentation-14"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-rule-predicate.html"

*Defined in [spec/spec.ts:22986](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22986)*





___
<a id="wafregional.models.predicate.name-4"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::Rule.Predicate"

*Defined in [spec/spec.ts:23007](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23007)*





___
<a id="wafregional.models.predicate.properties-4"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22987](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22987)*




<a id="wafregional.models.predicate.properties-4.dataid"></a>

###  DataId

** DataId**:  *`object`* 

*Defined in [spec/spec.ts:22994](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22994)*




<a id="wafregional.models.predicate.properties-4.dataid.documentation-15"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-rule-predicate.html#cfn-wafregional-rule-predicate-dataid"

*Defined in [spec/spec.ts:22996](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22996)*





___
<a id="wafregional.models.predicate.properties-4.dataid.primitivetype-9"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22997](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22997)*





___
<a id="wafregional.models.predicate.properties-4.dataid.required-10"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22995](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22995)*





___
<a id="wafregional.models.predicate.properties-4.dataid.updatetype-10"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22998](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22998)*





___

___
<a id="wafregional.models.predicate.properties-4.negated"></a>

###  Negated

** Negated**:  *`object`* 

*Defined in [spec/spec.ts:23000](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23000)*




<a id="wafregional.models.predicate.properties-4.negated.documentation-16"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-rule-predicate.html#cfn-wafregional-rule-predicate-negated"

*Defined in [spec/spec.ts:23002](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23002)*





___
<a id="wafregional.models.predicate.properties-4.negated.primitivetype-10"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:23003](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23003)*





___
<a id="wafregional.models.predicate.properties-4.negated.required-11"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23001](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23001)*





___
<a id="wafregional.models.predicate.properties-4.negated.updatetype-11"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23004](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23004)*





___

___
<a id="wafregional.models.predicate.properties-4.type-4"></a>

###  Type

** Type**:  *`object`* 

*Defined in [spec/spec.ts:22988](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22988)*




<a id="wafregional.models.predicate.properties-4.type-4.documentation-17"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-rule-predicate.html#cfn-wafregional-rule-predicate-type"

*Defined in [spec/spec.ts:22990](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22990)*





___
<a id="wafregional.models.predicate.properties-4.type-4.primitivetype-11"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22991](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22991)*





___
<a id="wafregional.models.predicate.properties-4.type-4.required-12"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22989](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22989)*





___
<a id="wafregional.models.predicate.properties-4.type-4.updatetype-12"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22992](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22992)*





___

___

___

___
<a id="wafregional.models.rule"></a>

###  Rule

** Rule**:  *`object`* 

*Defined in [spec/spec.ts:23069](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23069)*




<a id="wafregional.models.rule.documentation-18"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-rule.html"

*Defined in [spec/spec.ts:23070](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23070)*





___
<a id="wafregional.models.rule.name-5"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::WebACL.Rule"

*Defined in [spec/spec.ts:23091](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23091)*





___
<a id="wafregional.models.rule.properties-5"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:23071](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23071)*




<a id="wafregional.models.rule.properties-5.action-1"></a>

###  Action

** Action**:  *`object`* 

*Defined in [spec/spec.ts:23072](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23072)*




<a id="wafregional.models.rule.properties-5.action-1.documentation-19"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-rule.html#cfn-wafregional-webacl-rule-action"

*Defined in [spec/spec.ts:23075](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23075)*





___
<a id="wafregional.models.rule.properties-5.action-1.required-13"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23074](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23074)*





___
<a id="wafregional.models.rule.properties-5.action-1.type-5"></a>

###  Type

**●  Type**:  *`string`*  = "Action"

*Defined in [spec/spec.ts:23073](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23073)*





___
<a id="wafregional.models.rule.properties-5.action-1.updatetype-13"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23076](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23076)*





___

___
<a id="wafregional.models.rule.properties-5.priority"></a>

###  Priority

** Priority**:  *`object`* 

*Defined in [spec/spec.ts:23078](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23078)*




<a id="wafregional.models.rule.properties-5.priority.documentation-20"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-rule.html#cfn-wafregional-webacl-rule-priority"

*Defined in [spec/spec.ts:23080](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23080)*





___
<a id="wafregional.models.rule.properties-5.priority.primitivetype-12"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:23081](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23081)*





___
<a id="wafregional.models.rule.properties-5.priority.required-14"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23079](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23079)*





___
<a id="wafregional.models.rule.properties-5.priority.updatetype-14"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23082](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23082)*





___

___
<a id="wafregional.models.rule.properties-5.ruleid"></a>

###  RuleId

** RuleId**:  *`object`* 

*Defined in [spec/spec.ts:23084](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23084)*




<a id="wafregional.models.rule.properties-5.ruleid.documentation-21"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-webacl-rule.html#cfn-wafregional-webacl-rule-ruleid"

*Defined in [spec/spec.ts:23086](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23086)*





___
<a id="wafregional.models.rule.properties-5.ruleid.primitivetype-13"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23087](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23087)*





___
<a id="wafregional.models.rule.properties-5.ruleid.required-15"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23085](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23085)*





___
<a id="wafregional.models.rule.properties-5.ruleid.updatetype-15"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23088](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23088)*





___

___

___

___
<a id="wafregional.models.sizeconstraint"></a>

###  SizeConstraint

** SizeConstraint**:  *`object`* 

*Defined in [spec/spec.ts:23009](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23009)*




<a id="wafregional.models.sizeconstraint.documentation-22"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sizeconstraintset-sizeconstraint.html"

*Defined in [spec/spec.ts:23010](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23010)*





___
<a id="wafregional.models.sizeconstraint.name-6"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::SizeConstraintSet.SizeConstraint"

*Defined in [spec/spec.ts:23037](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23037)*





___
<a id="wafregional.models.sizeconstraint.properties-6"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:23011](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23011)*




<a id="wafregional.models.sizeconstraint.properties-6.comparisonoperator"></a>

###  ComparisonOperator

** ComparisonOperator**:  *`object`* 

*Defined in [spec/spec.ts:23012](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23012)*




<a id="wafregional.models.sizeconstraint.properties-6.comparisonoperator.documentation-23"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sizeconstraintset-sizeconstraint.html#cfn-wafregional-sizeconstraintset-sizeconstraint-comparisonoperator"

*Defined in [spec/spec.ts:23014](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23014)*





___
<a id="wafregional.models.sizeconstraint.properties-6.comparisonoperator.primitivetype-14"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23015](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23015)*





___
<a id="wafregional.models.sizeconstraint.properties-6.comparisonoperator.required-16"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23013](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23013)*





___
<a id="wafregional.models.sizeconstraint.properties-6.comparisonoperator.updatetype-16"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23016](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23016)*





___

___
<a id="wafregional.models.sizeconstraint.properties-6.fieldtomatch-2"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:23030](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23030)*




<a id="wafregional.models.sizeconstraint.properties-6.fieldtomatch-2.documentation-24"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sizeconstraintset-sizeconstraint.html#cfn-wafregional-sizeconstraintset-sizeconstraint-fieldtomatch"

*Defined in [spec/spec.ts:23033](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23033)*





___
<a id="wafregional.models.sizeconstraint.properties-6.fieldtomatch-2.required-17"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23032](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23032)*





___
<a id="wafregional.models.sizeconstraint.properties-6.fieldtomatch-2.type-6"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:23031](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23031)*





___
<a id="wafregional.models.sizeconstraint.properties-6.fieldtomatch-2.updatetype-17"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23034](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23034)*





___

___
<a id="wafregional.models.sizeconstraint.properties-6.size"></a>

###  Size

** Size**:  *`object`* 

*Defined in [spec/spec.ts:23018](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23018)*




<a id="wafregional.models.sizeconstraint.properties-6.size.documentation-25"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sizeconstraintset-sizeconstraint.html#cfn-wafregional-sizeconstraintset-sizeconstraint-size"

*Defined in [spec/spec.ts:23020](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23020)*





___
<a id="wafregional.models.sizeconstraint.properties-6.size.primitivetype-15"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Integer"

*Defined in [spec/spec.ts:23021](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23021)*





___
<a id="wafregional.models.sizeconstraint.properties-6.size.required-18"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23019](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23019)*





___
<a id="wafregional.models.sizeconstraint.properties-6.size.updatetype-18"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23022](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23022)*





___

___
<a id="wafregional.models.sizeconstraint.properties-6.texttransformation-1"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:23024](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23024)*




<a id="wafregional.models.sizeconstraint.properties-6.texttransformation-1.documentation-26"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sizeconstraintset-sizeconstraint.html#cfn-wafregional-sizeconstraintset-sizeconstraint-texttransformation"

*Defined in [spec/spec.ts:23026](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23026)*





___
<a id="wafregional.models.sizeconstraint.properties-6.texttransformation-1.primitivetype-16"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23027](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23027)*





___
<a id="wafregional.models.sizeconstraint.properties-6.texttransformation-1.required-19"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23025](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23025)*





___
<a id="wafregional.models.sizeconstraint.properties-6.texttransformation-1.updatetype-19"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23028](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23028)*





___

___

___

___
<a id="wafregional.models.sqlinjectionmatchtuple"></a>

###  SqlInjectionMatchTuple

** SqlInjectionMatchTuple**:  *`object`* 

*Defined in [spec/spec.ts:23039](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23039)*




<a id="wafregional.models.sqlinjectionmatchtuple.documentation-27"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sqlinjectionmatchset-sqlinjectionmatchtuple.html"

*Defined in [spec/spec.ts:23040](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23040)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.name-7"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::SqlInjectionMatchSet.SqlInjectionMatchTuple"

*Defined in [spec/spec.ts:23055](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23055)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:23041](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23041)*




<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.fieldtomatch-3"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:23048](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23048)*




<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.fieldtomatch-3.documentation-28"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sqlinjectionmatchset-sqlinjectionmatchtuple.html#cfn-wafregional-sqlinjectionmatchset-sqlinjectionmatchtuple-fieldtomatch"

*Defined in [spec/spec.ts:23051](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23051)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.fieldtomatch-3.required-20"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23050](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23050)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.fieldtomatch-3.type-7"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:23049](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23049)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.fieldtomatch-3.updatetype-20"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23052](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23052)*





___

___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.texttransformation-2"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:23042](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23042)*




<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.texttransformation-2.documentation-29"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-sqlinjectionmatchset-sqlinjectionmatchtuple.html#cfn-wafregional-sqlinjectionmatchset-sqlinjectionmatchtuple-texttransformation"

*Defined in [spec/spec.ts:23044](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23044)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.texttransformation-2.primitivetype-17"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23045](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23045)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.texttransformation-2.required-21"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23043](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23043)*





___
<a id="wafregional.models.sqlinjectionmatchtuple.properties-7.texttransformation-2.updatetype-21"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23046](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23046)*





___

___

___

___
<a id="wafregional.models.xssmatchtuple"></a>

###  XssMatchTuple

** XssMatchTuple**:  *`object`* 

*Defined in [spec/spec.ts:23093](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23093)*




<a id="wafregional.models.xssmatchtuple.documentation-30"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-xssmatchset-xssmatchtuple.html"

*Defined in [spec/spec.ts:23094](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23094)*





___
<a id="wafregional.models.xssmatchtuple.name-8"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::XssMatchSet.XssMatchTuple"

*Defined in [spec/spec.ts:23109](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23109)*





___
<a id="wafregional.models.xssmatchtuple.properties-8"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:23095](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23095)*




<a id="wafregional.models.xssmatchtuple.properties-8.fieldtomatch-4"></a>

###  FieldToMatch

** FieldToMatch**:  *`object`* 

*Defined in [spec/spec.ts:23102](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23102)*




<a id="wafregional.models.xssmatchtuple.properties-8.fieldtomatch-4.documentation-31"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-xssmatchset-xssmatchtuple.html#cfn-wafregional-xssmatchset-xssmatchtuple-fieldtomatch"

*Defined in [spec/spec.ts:23105](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23105)*





___
<a id="wafregional.models.xssmatchtuple.properties-8.fieldtomatch-4.required-22"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23104](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23104)*





___
<a id="wafregional.models.xssmatchtuple.properties-8.fieldtomatch-4.type-8"></a>

###  Type

**●  Type**:  *`string`*  = "FieldToMatch"

*Defined in [spec/spec.ts:23103](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23103)*





___
<a id="wafregional.models.xssmatchtuple.properties-8.fieldtomatch-4.updatetype-22"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23106](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23106)*





___

___
<a id="wafregional.models.xssmatchtuple.properties-8.texttransformation-3"></a>

###  TextTransformation

** TextTransformation**:  *`object`* 

*Defined in [spec/spec.ts:23096](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23096)*




<a id="wafregional.models.xssmatchtuple.properties-8.texttransformation-3.documentation-32"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafregional-xssmatchset-xssmatchtuple.html#cfn-wafregional-xssmatchset-xssmatchtuple-texttransformation"

*Defined in [spec/spec.ts:23098](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23098)*





___
<a id="wafregional.models.xssmatchtuple.properties-8.texttransformation-3.primitivetype-18"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23099](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23099)*





___
<a id="wafregional.models.xssmatchtuple.properties-8.texttransformation-3.required-23"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23097](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23097)*





___
<a id="wafregional.models.xssmatchtuple.properties-8.texttransformation-3.updatetype-23"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:23100](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23100)*





___

___

___

___

___
<a id="wafregional.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:22741](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22741)*




<a id="wafregional.resources.bytematchset"></a>

###  ByteMatchSet

** ByteMatchSet**:  *`object`* 

*Defined in [spec/spec.ts:22742](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22742)*




<a id="wafregional.resources.bytematchset.documentation-33"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html"

*Defined in [spec/spec.ts:22743](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22743)*





___
<a id="wafregional.resources.bytematchset.name-9"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::ByteMatchSet"

*Defined in [spec/spec.ts:22759](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22759)*





___
<a id="wafregional.resources.bytematchset.properties-9"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22744](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22744)*




<a id="wafregional.resources.bytematchset.properties-9.bytematchtuples"></a>

###  ByteMatchTuples

** ByteMatchTuples**:  *`object`* 

*Defined in [spec/spec.ts:22745](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22745)*




<a id="wafregional.resources.bytematchset.properties-9.bytematchtuples.documentation-34"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-bytematchtuples"

*Defined in [spec/spec.ts:22748](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22748)*





___
<a id="wafregional.resources.bytematchset.properties-9.bytematchtuples.itemtype"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "ByteMatchTuple"

*Defined in [spec/spec.ts:22749](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22749)*





___
<a id="wafregional.resources.bytematchset.properties-9.bytematchtuples.required-24"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22747](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22747)*





___
<a id="wafregional.resources.bytematchset.properties-9.bytematchtuples.type-9"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22746](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22746)*





___
<a id="wafregional.resources.bytematchset.properties-9.bytematchtuples.updatetype-24"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22750](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22750)*





___

___
<a id="wafregional.resources.bytematchset.properties-9.name-10"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22752](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22752)*




<a id="wafregional.resources.bytematchset.properties-9.name-10.documentation-35"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-bytematchset.html#cfn-wafregional-bytematchset-name"

*Defined in [spec/spec.ts:22754](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22754)*





___
<a id="wafregional.resources.bytematchset.properties-9.name-10.primitivetype-19"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22755](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22755)*





___
<a id="wafregional.resources.bytematchset.properties-9.name-10.required-25"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22753](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22753)*





___
<a id="wafregional.resources.bytematchset.properties-9.name-10.updatetype-25"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22756](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22756)*





___

___

___

___
<a id="wafregional.resources.ipset"></a>

###  IPSet

** IPSet**:  *`object`* 

*Defined in [spec/spec.ts:22761](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22761)*




<a id="wafregional.resources.ipset.documentation-36"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html"

*Defined in [spec/spec.ts:22762](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22762)*





___
<a id="wafregional.resources.ipset.name-11"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::IPSet"

*Defined in [spec/spec.ts:22778](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22778)*





___
<a id="wafregional.resources.ipset.properties-10"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22763](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22763)*




<a id="wafregional.resources.ipset.properties-10.ipsetdescriptors"></a>

###  IPSetDescriptors

** IPSetDescriptors**:  *`object`* 

*Defined in [spec/spec.ts:22764](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22764)*




<a id="wafregional.resources.ipset.properties-10.ipsetdescriptors.documentation-37"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-ipsetdescriptors"

*Defined in [spec/spec.ts:22767](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22767)*





___
<a id="wafregional.resources.ipset.properties-10.ipsetdescriptors.itemtype-1"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "IPSetDescriptor"

*Defined in [spec/spec.ts:22768](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22768)*





___
<a id="wafregional.resources.ipset.properties-10.ipsetdescriptors.required-26"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22766](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22766)*





___
<a id="wafregional.resources.ipset.properties-10.ipsetdescriptors.type-10"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22765](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22765)*





___
<a id="wafregional.resources.ipset.properties-10.ipsetdescriptors.updatetype-26"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22769](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22769)*





___

___
<a id="wafregional.resources.ipset.properties-10.name-12"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22771](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22771)*




<a id="wafregional.resources.ipset.properties-10.name-12.documentation-38"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-ipset.html#cfn-wafregional-ipset-name"

*Defined in [spec/spec.ts:22773](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22773)*





___
<a id="wafregional.resources.ipset.properties-10.name-12.primitivetype-20"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22774](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22774)*





___
<a id="wafregional.resources.ipset.properties-10.name-12.required-27"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22772](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22772)*





___
<a id="wafregional.resources.ipset.properties-10.name-12.updatetype-27"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22775](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22775)*





___

___

___

___
<a id="wafregional.resources.rule-1"></a>

###  Rule

** Rule**:  *`object`* 

*Defined in [spec/spec.ts:22780](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22780)*




<a id="wafregional.resources.rule-1.documentation-39"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html"

*Defined in [spec/spec.ts:22781](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22781)*





___
<a id="wafregional.resources.rule-1.name-13"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::Rule"

*Defined in [spec/spec.ts:22803](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22803)*





___
<a id="wafregional.resources.rule-1.properties-11"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22782](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22782)*




<a id="wafregional.resources.rule-1.properties-11.metricname"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:22783](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22783)*




<a id="wafregional.resources.rule-1.properties-11.metricname.documentation-40"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-metricname"

*Defined in [spec/spec.ts:22785](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22785)*





___
<a id="wafregional.resources.rule-1.properties-11.metricname.primitivetype-21"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22786](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22786)*





___
<a id="wafregional.resources.rule-1.properties-11.metricname.required-28"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22784](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22784)*





___
<a id="wafregional.resources.rule-1.properties-11.metricname.updatetype-28"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22787](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22787)*





___

___
<a id="wafregional.resources.rule-1.properties-11.name-14"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22796](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22796)*




<a id="wafregional.resources.rule-1.properties-11.name-14.documentation-41"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-name"

*Defined in [spec/spec.ts:22798](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22798)*





___
<a id="wafregional.resources.rule-1.properties-11.name-14.primitivetype-22"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22799](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22799)*





___
<a id="wafregional.resources.rule-1.properties-11.name-14.required-29"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22797](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22797)*





___
<a id="wafregional.resources.rule-1.properties-11.name-14.updatetype-29"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22800](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22800)*





___

___
<a id="wafregional.resources.rule-1.properties-11.predicates"></a>

###  Predicates

** Predicates**:  *`object`* 

*Defined in [spec/spec.ts:22789](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22789)*




<a id="wafregional.resources.rule-1.properties-11.predicates.documentation-42"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-rule.html#cfn-wafregional-rule-predicates"

*Defined in [spec/spec.ts:22792](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22792)*





___
<a id="wafregional.resources.rule-1.properties-11.predicates.itemtype-2"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Predicate"

*Defined in [spec/spec.ts:22793](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22793)*





___
<a id="wafregional.resources.rule-1.properties-11.predicates.required-30"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22791](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22791)*





___
<a id="wafregional.resources.rule-1.properties-11.predicates.type-11"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22790](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22790)*





___
<a id="wafregional.resources.rule-1.properties-11.predicates.updatetype-30"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22794](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22794)*





___

___

___

___
<a id="wafregional.resources.sizeconstraintset"></a>

###  SizeConstraintSet

** SizeConstraintSet**:  *`object`* 

*Defined in [spec/spec.ts:22805](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22805)*




<a id="wafregional.resources.sizeconstraintset.documentation-43"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html"

*Defined in [spec/spec.ts:22806](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22806)*





___
<a id="wafregional.resources.sizeconstraintset.name-15"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::SizeConstraintSet"

*Defined in [spec/spec.ts:22822](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22822)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22807](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22807)*




<a id="wafregional.resources.sizeconstraintset.properties-12.name-16"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22815](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22815)*




<a id="wafregional.resources.sizeconstraintset.properties-12.name-16.documentation-44"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-name"

*Defined in [spec/spec.ts:22817](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22817)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12.name-16.primitivetype-23"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22818](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22818)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12.name-16.required-31"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22816](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22816)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12.name-16.updatetype-31"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22819](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22819)*





___

___
<a id="wafregional.resources.sizeconstraintset.properties-12.sizeconstraints"></a>

###  SizeConstraints

** SizeConstraints**:  *`object`* 

*Defined in [spec/spec.ts:22808](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22808)*




<a id="wafregional.resources.sizeconstraintset.properties-12.sizeconstraints.documentation-45"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sizeconstraintset.html#cfn-wafregional-sizeconstraintset-sizeconstraints"

*Defined in [spec/spec.ts:22811](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22811)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12.sizeconstraints.itemtype-3"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "SizeConstraint"

*Defined in [spec/spec.ts:22812](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22812)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12.sizeconstraints.required-32"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22810](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22810)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12.sizeconstraints.type-12"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22809](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22809)*





___
<a id="wafregional.resources.sizeconstraintset.properties-12.sizeconstraints.updatetype-32"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22813](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22813)*





___

___

___

___
<a id="wafregional.resources.sqlinjectionmatchset"></a>

###  SqlInjectionMatchSet

** SqlInjectionMatchSet**:  *`object`* 

*Defined in [spec/spec.ts:22824](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22824)*




<a id="wafregional.resources.sqlinjectionmatchset.documentation-46"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html"

*Defined in [spec/spec.ts:22825](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22825)*





___
<a id="wafregional.resources.sqlinjectionmatchset.name-17"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::SqlInjectionMatchSet"

*Defined in [spec/spec.ts:22841](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22841)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22826](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22826)*




<a id="wafregional.resources.sqlinjectionmatchset.properties-13.name-18"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22834](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22834)*




<a id="wafregional.resources.sqlinjectionmatchset.properties-13.name-18.documentation-47"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-name"

*Defined in [spec/spec.ts:22836](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22836)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.name-18.primitivetype-24"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22837](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22837)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.name-18.required-33"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22835](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22835)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.name-18.updatetype-33"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22838](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22838)*





___

___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples"></a>

###  SqlInjectionMatchTuples

** SqlInjectionMatchTuples**:  *`object`* 

*Defined in [spec/spec.ts:22827](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22827)*




<a id="wafregional.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.documentation-48"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-sqlinjectionmatchset.html#cfn-wafregional-sqlinjectionmatchset-sqlinjectionmatchtuples"

*Defined in [spec/spec.ts:22830](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22830)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.itemtype-4"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "SqlInjectionMatchTuple"

*Defined in [spec/spec.ts:22831](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22831)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.required-34"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22829](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22829)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.type-13"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22828](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22828)*





___
<a id="wafregional.resources.sqlinjectionmatchset.properties-13.sqlinjectionmatchtuples.updatetype-34"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22832](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22832)*





___

___

___

___
<a id="wafregional.resources.webacl"></a>

###  WebACL

** WebACL**:  *`object`* 

*Defined in [spec/spec.ts:22843](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22843)*




<a id="wafregional.resources.webacl.documentation-49"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html"

*Defined in [spec/spec.ts:22844](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22844)*





___
<a id="wafregional.resources.webacl.name-19"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::WebACL"

*Defined in [spec/spec.ts:22872](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22872)*





___
<a id="wafregional.resources.webacl.properties-14"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22845](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22845)*




<a id="wafregional.resources.webacl.properties-14.defaultaction"></a>

###  DefaultAction

** DefaultAction**:  *`object`* 

*Defined in [spec/spec.ts:22852](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22852)*




<a id="wafregional.resources.webacl.properties-14.defaultaction.documentation-50"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-defaultaction"

*Defined in [spec/spec.ts:22855](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22855)*





___
<a id="wafregional.resources.webacl.properties-14.defaultaction.required-35"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22854](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22854)*





___
<a id="wafregional.resources.webacl.properties-14.defaultaction.type-14"></a>

###  Type

**●  Type**:  *`string`*  = "Action"

*Defined in [spec/spec.ts:22853](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22853)*





___
<a id="wafregional.resources.webacl.properties-14.defaultaction.updatetype-35"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22856](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22856)*





___

___
<a id="wafregional.resources.webacl.properties-14.metricname-1"></a>

###  MetricName

** MetricName**:  *`object`* 

*Defined in [spec/spec.ts:22846](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22846)*




<a id="wafregional.resources.webacl.properties-14.metricname-1.documentation-51"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-metricname"

*Defined in [spec/spec.ts:22848](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22848)*





___
<a id="wafregional.resources.webacl.properties-14.metricname-1.primitivetype-25"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22849](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22849)*





___
<a id="wafregional.resources.webacl.properties-14.metricname-1.required-36"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22847](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22847)*





___
<a id="wafregional.resources.webacl.properties-14.metricname-1.updatetype-36"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22850](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22850)*





___

___
<a id="wafregional.resources.webacl.properties-14.name-20"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22865](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22865)*




<a id="wafregional.resources.webacl.properties-14.name-20.documentation-52"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-name"

*Defined in [spec/spec.ts:22867](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22867)*





___
<a id="wafregional.resources.webacl.properties-14.name-20.primitivetype-26"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22868](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22868)*





___
<a id="wafregional.resources.webacl.properties-14.name-20.required-37"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22866](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22866)*





___
<a id="wafregional.resources.webacl.properties-14.name-20.updatetype-37"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22869](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22869)*





___

___
<a id="wafregional.resources.webacl.properties-14.rules"></a>

###  Rules

** Rules**:  *`object`* 

*Defined in [spec/spec.ts:22858](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22858)*




<a id="wafregional.resources.webacl.properties-14.rules.documentation-53"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webacl.html#cfn-wafregional-webacl-rules"

*Defined in [spec/spec.ts:22861](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22861)*





___
<a id="wafregional.resources.webacl.properties-14.rules.itemtype-5"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "Rule"

*Defined in [spec/spec.ts:22862](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22862)*





___
<a id="wafregional.resources.webacl.properties-14.rules.required-38"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22860](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22860)*





___
<a id="wafregional.resources.webacl.properties-14.rules.type-15"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22859](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22859)*





___
<a id="wafregional.resources.webacl.properties-14.rules.updatetype-38"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22863](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22863)*





___

___

___

___
<a id="wafregional.resources.webaclassociation"></a>

###  WebACLAssociation

** WebACLAssociation**:  *`object`* 

*Defined in [spec/spec.ts:22874](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22874)*




<a id="wafregional.resources.webaclassociation.documentation-54"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html"

*Defined in [spec/spec.ts:22875](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22875)*





___
<a id="wafregional.resources.webaclassociation.name-21"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::WebACLAssociation"

*Defined in [spec/spec.ts:22890](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22890)*





___
<a id="wafregional.resources.webaclassociation.properties-15"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22876](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22876)*




<a id="wafregional.resources.webaclassociation.properties-15.resourcearn"></a>

###  ResourceArn

** ResourceArn**:  *`object`* 

*Defined in [spec/spec.ts:22877](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22877)*




<a id="wafregional.resources.webaclassociation.properties-15.resourcearn.documentation-55"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-resourcearn"

*Defined in [spec/spec.ts:22879](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22879)*





___
<a id="wafregional.resources.webaclassociation.properties-15.resourcearn.primitivetype-27"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22880](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22880)*





___
<a id="wafregional.resources.webaclassociation.properties-15.resourcearn.required-39"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22878](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22878)*





___
<a id="wafregional.resources.webaclassociation.properties-15.resourcearn.updatetype-39"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22881](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22881)*





___

___
<a id="wafregional.resources.webaclassociation.properties-15.webaclid"></a>

###  WebACLId

** WebACLId**:  *`object`* 

*Defined in [spec/spec.ts:22883](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22883)*




<a id="wafregional.resources.webaclassociation.properties-15.webaclid.documentation-56"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-webaclassociation.html#cfn-wafregional-webaclassociation-webaclid"

*Defined in [spec/spec.ts:22885](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22885)*





___
<a id="wafregional.resources.webaclassociation.properties-15.webaclid.primitivetype-28"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22886](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22886)*





___
<a id="wafregional.resources.webaclassociation.properties-15.webaclid.required-40"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22884](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22884)*





___
<a id="wafregional.resources.webaclassociation.properties-15.webaclid.updatetype-40"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22887](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22887)*





___

___

___

___
<a id="wafregional.resources.xssmatchset"></a>

###  XssMatchSet

** XssMatchSet**:  *`object`* 

*Defined in [spec/spec.ts:22892](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22892)*




<a id="wafregional.resources.xssmatchset.documentation-57"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html"

*Defined in [spec/spec.ts:22893](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22893)*





___
<a id="wafregional.resources.xssmatchset.name-22"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WAFRegional::XssMatchSet"

*Defined in [spec/spec.ts:22909](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22909)*





___
<a id="wafregional.resources.xssmatchset.properties-16"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:22894](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22894)*




<a id="wafregional.resources.xssmatchset.properties-16.name-23"></a>

###  Name

** Name**:  *`object`* 

*Defined in [spec/spec.ts:22902](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22902)*




<a id="wafregional.resources.xssmatchset.properties-16.name-23.documentation-58"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-name"

*Defined in [spec/spec.ts:22904](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22904)*





___
<a id="wafregional.resources.xssmatchset.properties-16.name-23.primitivetype-29"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:22905](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22905)*





___
<a id="wafregional.resources.xssmatchset.properties-16.name-23.required-41"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:22903](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22903)*





___
<a id="wafregional.resources.xssmatchset.properties-16.name-23.updatetype-41"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:22906](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22906)*





___

___
<a id="wafregional.resources.xssmatchset.properties-16.xssmatchtuples"></a>

###  XssMatchTuples

** XssMatchTuples**:  *`object`* 

*Defined in [spec/spec.ts:22895](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22895)*




<a id="wafregional.resources.xssmatchset.properties-16.xssmatchtuples.documentation-59"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wafregional-xssmatchset.html#cfn-wafregional-xssmatchset-xssmatchtuples"

*Defined in [spec/spec.ts:22898](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22898)*





___
<a id="wafregional.resources.xssmatchset.properties-16.xssmatchtuples.itemtype-6"></a>

###  ItemType

**●  ItemType**:  *`string`*  = "XssMatchTuple"

*Defined in [spec/spec.ts:22899](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22899)*





___
<a id="wafregional.resources.xssmatchset.properties-16.xssmatchtuples.required-42"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:22897](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22897)*





___
<a id="wafregional.resources.xssmatchset.properties-16.xssmatchtuples.type-16"></a>

###  Type

**●  Type**:  *`string`*  = "List"

*Defined in [spec/spec.ts:22896](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22896)*





___
<a id="wafregional.resources.xssmatchset.properties-16.xssmatchtuples.updatetype-42"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Mutable"

*Defined in [spec/spec.ts:22900](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L22900)*





___

___

___

___

___

<a id="workspaces"></a>

## Object literal: WorkSpaces


<a id="workspaces.models"></a>

###  Models

**●  Models**:  *`object`* 

*Defined in [spec/spec.ts:23158](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23158)*


#### Type declaration





___
<a id="workspaces.resources"></a>

###  Resources

** Resources**:  *`object`* 

*Defined in [spec/spec.ts:23114](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23114)*




<a id="workspaces.resources.workspace"></a>

###  Workspace

** Workspace**:  *`object`* 

*Defined in [spec/spec.ts:23115](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23115)*




<a id="workspaces.resources.workspace.documentation"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html"

*Defined in [spec/spec.ts:23116](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23116)*





___
<a id="workspaces.resources.workspace.name"></a>

###  Name

**●  Name**:  *`string`*  = "AWS::WorkSpaces::Workspace"

*Defined in [spec/spec.ts:23155](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23155)*





___
<a id="workspaces.resources.workspace.properties"></a>

###  Properties

** Properties**:  *`object`* 

*Defined in [spec/spec.ts:23117](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23117)*




<a id="workspaces.resources.workspace.properties.bundleid"></a>

###  BundleId

** BundleId**:  *`object`* 

*Defined in [spec/spec.ts:23118](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23118)*




<a id="workspaces.resources.workspace.properties.bundleid.documentation-1"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-bundleid"

*Defined in [spec/spec.ts:23119](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23119)*





___
<a id="workspaces.resources.workspace.properties.bundleid.primitivetype"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23120](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23120)*





___
<a id="workspaces.resources.workspace.properties.bundleid.required"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23121](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23121)*





___
<a id="workspaces.resources.workspace.properties.bundleid.updatetype"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:23122](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23122)*





___

___
<a id="workspaces.resources.workspace.properties.directoryid"></a>

###  DirectoryId

** DirectoryId**:  *`object`* 

*Defined in [spec/spec.ts:23124](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23124)*




<a id="workspaces.resources.workspace.properties.directoryid.documentation-2"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-directoryid"

*Defined in [spec/spec.ts:23125](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23125)*





___
<a id="workspaces.resources.workspace.properties.directoryid.primitivetype-1"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23126](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23126)*





___
<a id="workspaces.resources.workspace.properties.directoryid.required-1"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23127](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23127)*





___
<a id="workspaces.resources.workspace.properties.directoryid.updatetype-1"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:23128](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23128)*





___

___
<a id="workspaces.resources.workspace.properties.rootvolumeencryptionenabled"></a>

###  RootVolumeEncryptionEnabled

** RootVolumeEncryptionEnabled**:  *`object`* 

*Defined in [spec/spec.ts:23130](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23130)*




<a id="workspaces.resources.workspace.properties.rootvolumeencryptionenabled.documentation-3"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-rootvolumeencryptionenabled"

*Defined in [spec/spec.ts:23131](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23131)*





___
<a id="workspaces.resources.workspace.properties.rootvolumeencryptionenabled.primitivetype-2"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:23132](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23132)*





___
<a id="workspaces.resources.workspace.properties.rootvolumeencryptionenabled.required-2"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:23133](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23133)*





___
<a id="workspaces.resources.workspace.properties.rootvolumeencryptionenabled.updatetype-2"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:23134](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23134)*





___

___
<a id="workspaces.resources.workspace.properties.username"></a>

###  UserName

** UserName**:  *`object`* 

*Defined in [spec/spec.ts:23136](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23136)*




<a id="workspaces.resources.workspace.properties.username.documentation-4"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-username"

*Defined in [spec/spec.ts:23137](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23137)*





___
<a id="workspaces.resources.workspace.properties.username.primitivetype-3"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23138](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23138)*





___
<a id="workspaces.resources.workspace.properties.username.required-3"></a>

###  Required

**●  Required**:  *`boolean`*  = true

*Defined in [spec/spec.ts:23139](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23139)*





___
<a id="workspaces.resources.workspace.properties.username.updatetype-3"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Immutable"

*Defined in [spec/spec.ts:23140](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23140)*





___

___
<a id="workspaces.resources.workspace.properties.uservolumeencryptionenabled"></a>

###  UserVolumeEncryptionEnabled

** UserVolumeEncryptionEnabled**:  *`object`* 

*Defined in [spec/spec.ts:23142](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23142)*




<a id="workspaces.resources.workspace.properties.uservolumeencryptionenabled.documentation-5"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-uservolumeencryptionenabled"

*Defined in [spec/spec.ts:23143](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23143)*





___
<a id="workspaces.resources.workspace.properties.uservolumeencryptionenabled.primitivetype-4"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "Boolean"

*Defined in [spec/spec.ts:23144](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23144)*





___
<a id="workspaces.resources.workspace.properties.uservolumeencryptionenabled.required-4"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:23145](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23145)*





___
<a id="workspaces.resources.workspace.properties.uservolumeencryptionenabled.updatetype-4"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:23146](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23146)*





___

___
<a id="workspaces.resources.workspace.properties.volumeencryptionkey"></a>

###  VolumeEncryptionKey

** VolumeEncryptionKey**:  *`object`* 

*Defined in [spec/spec.ts:23148](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23148)*




<a id="workspaces.resources.workspace.properties.volumeencryptionkey.documentation-6"></a>

###  Documentation

**●  Documentation**:  *`string`*  = "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-workspace.html#cfn-workspaces-workspace-volumeencryptionkey"

*Defined in [spec/spec.ts:23149](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23149)*





___
<a id="workspaces.resources.workspace.properties.volumeencryptionkey.primitivetype-5"></a>

###  PrimitiveType

**●  PrimitiveType**:  *`string`*  = "String"

*Defined in [spec/spec.ts:23150](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23150)*





___
<a id="workspaces.resources.workspace.properties.volumeencryptionkey.required-5"></a>

###  Required

**●  Required**:  *`boolean`*  = false

*Defined in [spec/spec.ts:23151](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23151)*





___
<a id="workspaces.resources.workspace.properties.volumeencryptionkey.updatetype-5"></a>

###  UpdateType

**●  UpdateType**:  *`string`*  = "Conditional"

*Defined in [spec/spec.ts:23152](https://github.com/arminhammer/wolkenkratzer/blob/2158320/src/spec/spec.ts#L23152)*





___

___

___

___

___


