Skip to content

Commit

Permalink
Fix indent of newly merged ecs schema docs to match rest of doc (cart…
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-lane authored Jan 28, 2022
1 parent 7618fb9 commit 50bc4b0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions docs/root/modules/aws/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -2683,7 +2683,7 @@ Representation of an AWS EC2 [Elastic IP address](https://docs.aws.amazon.com/AW
(NetworkInterface)-[ELASTIC_IP_ADDRESS]->(ElasticIPAddress)
```
## ECSCluster
### ECSCluster
Representation of an AWS ECS [Cluster](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_Cluster.html)
Expand All @@ -2707,15 +2707,15 @@ Representation of an AWS ECS [Cluster](https://docs.aws.amazon.com/AmazonECS/lat
| capacity\_providers | The capacity providers associated with the cluster. |
| attachments\_status | The status of the capacity providers associated with the cluster. |
### Relationships
#### Relationships
- ECSClusters are a resource under the AWS Account.
```
(AWSAccount)-[RESOURCE]->(ECSCluster)
```
## ECSContainerInstance
### ECSContainerInstance
Representation of an AWS ECS [Container Instance](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ContainerInstance.html)
Expand All @@ -2738,7 +2738,7 @@ Representation of an AWS ECS [Container Instance](https://docs.aws.amazon.com/Am
| agent\_update\_status | The status of the most recent agent update. If an update wasn't ever requested, this value is NULL. |
| registered\_at | The Unix timestamp for the time when the container instance was registered. |
### Relationships
#### Relationships
- An ECSCluster has ECSContainerInstances
Expand All @@ -2752,7 +2752,7 @@ Representation of an AWS ECS [Container Instance](https://docs.aws.amazon.com/Am
(ECSContainerInstance)-[HAS_TASK]->(ECSTask)
```
## ECSService
### ECSService
Representation of an AWS ECS [Service](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_Service.html)
Expand Down Expand Up @@ -2785,7 +2785,7 @@ Representation of an AWS ECS [Service](https://docs.aws.amazon.com/AmazonECS/lat
| propagate\_tags | Determines whether to propagate the tags from the task definition or the service to the task. |
| enable\_execute\_command | Determines whether the execute command functionality is enabled for the service. |
### Relationships
#### Relationships
- An ECSCluster has ECSService
Expand All @@ -2799,7 +2799,7 @@ Representation of an AWS ECS [Service](https://docs.aws.amazon.com/AmazonECS/lat
(ECSCluster)-[HAS_CONTAINER_INSTANCE]->(ECSContainerInstance)
```
## ECSTaskDefinition
### ECSTaskDefinition
Representation of an AWS ECS [Task Definition](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_TaskDefinition.html)
Expand Down Expand Up @@ -2830,15 +2830,15 @@ Representation of an AWS ECS [Task Definition](https://docs.aws.amazon.com/Amazo
| registered\_by | The principal that registered the task definition. |
| ephemeral\_storage\_size\_in\_gib | The total amount, in GiB, of ephemeral storage to set for the task. |
### Relationships
#### Relationships
- ECSTaskDefinition are a resource under the AWS Account.
```
(AWSAccount)-[RESOURCE]->(ECSTaskDefinition)
```
## ECSContainerDefinition
### ECSContainerDefinition
Representation of an AWS ECS [Container Definition](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_ContainerDefinition.html)
Expand Down Expand Up @@ -2871,15 +2871,15 @@ Representation of an AWS ECS [Container Definition](https://docs.aws.amazon.com/
| interactive | When this parameter is true, you can deploy containerized applications that require stdin or a tty to be allocated. |
| pseudo\_terminal | When this parameter is true, a TTY is allocated. |
### Relationships
#### Relationships
- ECSTaskDefinitions have ECSContainerDefinitions
```
(ECSTaskDefinition)-[HAS_CONTAINER_DEFINITION]->(ECSContainerDefinition)
```
## ECSTask
### ECSTask
Representation of an AWS ECS [Task](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_Task.html)
Expand Down Expand Up @@ -2920,7 +2920,7 @@ Representation of an AWS ECS [Task](https://docs.aws.amazon.com/AmazonECS/latest
| version | The version counter for the task. |
| ephemeral\_storage\_size\_in\_gib | The total amount, in GiB, of ephemeral storage to set for the task. |
### Relationships
#### Relationships
- ECSClusters have ECSTasks
Expand All @@ -2940,7 +2940,7 @@ Representation of an AWS ECS [Task](https://docs.aws.amazon.com/AmazonECS/latest
(ECSContainerInstance)-[HAS_TASK_DEFINITION]->(ECSTask)
```
## ECSContainer
### ECSContainer
Representation of an AWS ECS [Container](https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_Container.html)
Expand All @@ -2965,7 +2965,7 @@ Representation of an AWS ECS [Container](https://docs.aws.amazon.com/AmazonECS/l
| memory\_reservation | The soft limit (in MiB) of memory set for the container. |
| gpu\_ids | The IDs of each GPU assigned to the container. |
### Relationships
#### Relationships
- ECSTasks have ECSContainers
Expand Down

0 comments on commit 50bc4b0

Please sign in to comment.