Skip to content

Commit 7bad07e

Browse files
committed
fix unrelated changes
1 parent 42bb919 commit 7bad07e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/integrations/data-ingestion/clickpipes/aws-privatelink.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ To set up PrivateLink with VPC resource:
5454
2. Create a resource configuration
5555
3. Create a resource share
5656

57-
#### 1. Create a resource gateway {#create-resource gateway}
57+
#### 1. Create a resource gateway {#create-resource-gateway}
5858

5959
Resource gateway is the point that receives traffic for specified resources in your VPC.
6060

@@ -66,10 +66,10 @@ For each VPC endpoint (each Reverse Private Endpoint), AWS requires a consecutiv
6666
If this requirement is not met, Reverse Private Endpoint will transition to a failed state.
6767
:::
6868

69-
You can create a resource gateway from the [AWS console](https://docs.aws.amazon.com/vpc/latest/privatelink/create-resource gateway.html) or with the following command:
69+
You can create a resource gateway from the [AWS console](https://docs.aws.amazon.com/vpc/latest/privatelink/create-resource-gateway.html) or with the following command:
7070

7171
```bash
72-
aws vpc-lattice create-resource gateway \
72+
aws vpc-lattice create-resource-gateway \
7373
--vpc-identifier <VPC_ID> \
7474
--subnet-ids <SUBNET_IDS> \
7575
--security-group-ids <SG_IDs> \
@@ -81,8 +81,8 @@ The output will contain a resource gateway id, which you will need for the next
8181
Before you can proceed, you'll need to wait for the resource gateway to enter into an `Active` state. You can check the state by running the following command:
8282

8383
```bash
84-
aws vpc-lattice get-resource gateway \
85-
--resource gateway-identifier <RESOURCE_GATEWAY_ID>
84+
aws vpc-lattice get-resource-gateway \
85+
--resource-gateway-identifier <RESOURCE_GATEWAY_ID>
8686
```
8787

8888
#### 2. Create a VPC Resource-Configuration {#create-resource-configuration}
@@ -93,7 +93,7 @@ You can create a Resource-Configuration from the [AWS console](https://docs.aws.
9393

9494
```bash
9595
aws vpc-lattice create-resource-configuration \
96-
--resource gateway-identifier <RESOURCE_GATEWAY_ID> \
96+
--resource-gateway-identifier <RESOURCE_GATEWAY_ID> \
9797
--type <RESOURCE_CONFIGURATION_TYPE> \
9898
--resource-configuration-definition <RESOURCE_CONFIGURATION_DEFINITION> \
9999
--name <RESOURCE_CONFIGURATION_NAME>
@@ -107,7 +107,7 @@ For example, to configure with the ARN of an RDS Cluster:
107107
aws vpc-lattice create-resource-configuration \
108108
--name my-rds-cluster-config \
109109
--type ARN \
110-
--resource gateway-identifier rgw-0bba03f3d56060135 \
110+
--resource-gateway-identifier rgw-0bba03f3d56060135 \
111111
--resource-configuration-definition 'arnResource={arn=arn:aws:rds:us-east-1:123456789012:cluster:my-rds-cluster}'
112112
```
113113

0 commit comments

Comments
 (0)