Skip to content

Commit be0bb5f

Browse files
committed
aws docs
1 parent 2f77230 commit be0bb5f

File tree

945 files changed

+9005
-11840
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

945 files changed

+9005
-11840
lines changed

docs/aws-docs/providers/aws/accessanalyzer/analyzers/index.md

Lines changed: 24 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -79,38 +79,36 @@ WHERE region = 'us-east-1';
7979
values={[
8080
{ label: 'Required Properties', value: 'required', },
8181
{ label: 'All Properties', value: 'all', },
82-
8382
]
8483
}>
8584
<TabItem value="required">
8685

8786
```sql
88-
&lt;&lt;&lt;json
89-
&#123;
87+
<<<json
88+
{
9089
"Type": "{{ Type }}"
91-
&#125;
92-
&gt;&gt;&gt;
90+
}
91+
>>>
9392
--required properties only
9493
INSERT INTO aws.accessanalyzer.analyzers (
9594
Type,
9695
region
9796
)
9897
SELECT
99-
&#123;&#123; Type &#125;&#125;,
98+
{{ .Type }},
10099
'us-east-1';
101100
```
102-
103101
</TabItem>
104102
<TabItem value="all">
105103

106104
```sql
107-
&lt;&lt;&lt;json
108-
&#123;
105+
<<<json
106+
{
109107
"AnalyzerName": "{{ AnalyzerName }}",
110108
"ArchiveRules": [
111-
&#123;
109+
{
112110
"Filter": [
113-
&#123;
111+
{
114112
"Contains": [
115113
"{{ Contains[0] }}"
116114
],
@@ -122,25 +120,25 @@ SELECT
122120
"Neq": [
123121
"{{ Neq[0] }}"
124122
]
125-
&#125;
123+
}
126124
],
127125
"RuleName": "{{ RuleName }}"
128-
&#125;
126+
}
129127
],
130128
"Tags": [
131-
&#123;
129+
{
132130
"Key": "{{ Key }}",
133131
"Value": "{{ Value }}"
134-
&#125;
132+
}
135133
],
136134
"Type": "{{ Type }}",
137-
"AnalyzerConfiguration": &#123;
138-
"UnusedAccessConfiguration": &#123;
135+
"AnalyzerConfiguration": {
136+
"UnusedAccessConfiguration": {
139137
"UnusedAccessAge": "{{ UnusedAccessAge }}"
140-
&#125;
141-
&#125;
142-
&#125;
143-
&gt;&gt;&gt;
138+
}
139+
}
140+
}
141+
>>>
144142
--all properties
145143
INSERT INTO aws.accessanalyzer.analyzers (
146144
AnalyzerName,
@@ -151,14 +149,13 @@ INSERT INTO aws.accessanalyzer.analyzers (
151149
region
152150
)
153151
SELECT
154-
&#123;&#123; AnalyzerName &#125;&#125;,
155-
&#123;&#123; ArchiveRules &#125;&#125;,
156-
&#123;&#123; Tags &#125;&#125;,
157-
&#123;&#123; Type &#125;&#125;,
158-
&#123;&#123; AnalyzerConfiguration &#125;&#125;,
152+
{{ .AnalyzerName }},
153+
{{ .ArchiveRules }},
154+
{{ .Tags }},
155+
{{ .Type }},
156+
{{ .AnalyzerConfiguration }},
159157
'us-east-1';
160158
```
161-
162159
</TabItem>
163160
</Tabs>
164161

docs/aws-docs/providers/aws/acmpca/certificate_authorities/index.md

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ WHERE region = 'us-east-1';
7979
values={[
8080
{ label: 'Required Properties', value: 'required', },
8181
{ label: 'All Properties', value: 'all', },
82-
8382
]
8483
}>
8584
<TabItem value="required">
@@ -123,13 +122,12 @@ INSERT INTO aws.acmpca.certificate_authorities (
123122
region
124123
)
125124
SELECT
126-
{{ Type }},
127-
{{ KeyAlgorithm }},
128-
{{ SigningAlgorithm }},
129-
{{ Subject }},
125+
{{ .Type }},
126+
{{ .KeyAlgorithm }},
127+
{{ .SigningAlgorithm }},
128+
{{ .Subject }},
130129
'us-east-1';
131130
```
132-
133131
</TabItem>
134132
<TabItem value="all">
135133

@@ -238,18 +236,17 @@ INSERT INTO aws.acmpca.certificate_authorities (
238236
region
239237
)
240238
SELECT
241-
{{ Type }},
242-
{{ KeyAlgorithm }},
243-
{{ SigningAlgorithm }},
244-
{{ Subject }},
245-
{{ RevocationConfiguration }},
246-
{{ Tags }},
247-
{{ CsrExtensions }},
248-
{{ KeyStorageSecurityStandard }},
249-
{{ UsageMode }},
239+
{{ .Type }},
240+
{{ .KeyAlgorithm }},
241+
{{ .SigningAlgorithm }},
242+
{{ .Subject }},
243+
{{ .RevocationConfiguration }},
244+
{{ .Tags }},
245+
{{ .CsrExtensions }},
246+
{{ .KeyStorageSecurityStandard }},
247+
{{ .UsageMode }},
250248
'us-east-1';
251249
```
252-
253250
</TabItem>
254251
</Tabs>
255252

docs/aws-docs/providers/aws/acmpca/certificate_authority_activations/index.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ WHERE region = 'us-east-1';
7979
values={[
8080
{ label: 'Required Properties', value: 'required', },
8181
{ label: 'All Properties', value: 'all', },
82-
8382
]
8483
}>
8584
<TabItem value="required">
@@ -98,11 +97,10 @@ INSERT INTO aws.acmpca.certificate_authority_activations (
9897
region
9998
)
10099
SELECT
101-
{{ CertificateAuthorityArn }},
102-
{{ Certificate }},
100+
{{ .CertificateAuthorityArn }},
101+
{{ .Certificate }},
103102
'us-east-1';
104103
```
105-
106104
</TabItem>
107105
<TabItem value="all">
108106

@@ -124,13 +122,12 @@ INSERT INTO aws.acmpca.certificate_authority_activations (
124122
region
125123
)
126124
SELECT
127-
{{ CertificateAuthorityArn }},
128-
{{ Certificate }},
129-
{{ CertificateChain }},
130-
{{ Status }},
125+
{{ .CertificateAuthorityArn }},
126+
{{ .Certificate }},
127+
{{ .CertificateChain }},
128+
{{ .Status }},
131129
'us-east-1';
132130
```
133-
134131
</TabItem>
135132
</Tabs>
136133

docs/aws-docs/providers/aws/acmpca/certificates/index.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ WHERE region = 'us-east-1';
8181
values={[
8282
{ label: 'Required Properties', value: 'required', },
8383
{ label: 'All Properties', value: 'all', },
84-
8584
]
8685
}>
8786
<TabItem value="required">
@@ -107,13 +106,12 @@ INSERT INTO aws.acmpca.certificates (
107106
region
108107
)
109108
SELECT
110-
{{ CertificateAuthorityArn }},
111-
{{ CertificateSigningRequest }},
112-
{{ SigningAlgorithm }},
113-
{{ Validity }},
109+
{{ .CertificateAuthorityArn }},
110+
{{ .CertificateSigningRequest }},
111+
{{ .SigningAlgorithm }},
112+
{{ .Validity }},
114113
'us-east-1';
115114
```
116-
117115
</TabItem>
118116
<TabItem value="all">
119117

@@ -224,16 +222,15 @@ INSERT INTO aws.acmpca.certificates (
224222
region
225223
)
226224
SELECT
227-
{{ ApiPassthrough }},
228-
{{ CertificateAuthorityArn }},
229-
{{ CertificateSigningRequest }},
230-
{{ SigningAlgorithm }},
231-
{{ TemplateArn }},
232-
{{ Validity }},
233-
{{ ValidityNotBefore }},
225+
{{ .ApiPassthrough }},
226+
{{ .CertificateAuthorityArn }},
227+
{{ .CertificateSigningRequest }},
228+
{{ .SigningAlgorithm }},
229+
{{ .TemplateArn }},
230+
{{ .Validity }},
231+
{{ .ValidityNotBefore }},
234232
'us-east-1';
235233
```
236-
237234
</TabItem>
238235
</Tabs>
239236

docs/aws-docs/providers/aws/acmpca/permissions/index.md

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ WHERE region = 'us-east-1';
8181
values={[
8282
{ label: 'Required Properties', value: 'required', },
8383
{ label: 'All Properties', value: 'all', },
84-
8584
]
8685
}>
8786
<TabItem value="required">
@@ -104,12 +103,11 @@ INSERT INTO aws.acmpca.permissions (
104103
region
105104
)
106105
SELECT
107-
{{ Actions }},
108-
{{ CertificateAuthorityArn }},
109-
{{ Principal }},
106+
{{ .Actions }},
107+
{{ .CertificateAuthorityArn }},
108+
{{ .Principal }},
110109
'us-east-1';
111110
```
112-
113111
</TabItem>
114112
<TabItem value="all">
115113

@@ -133,13 +131,12 @@ INSERT INTO aws.acmpca.permissions (
133131
region
134132
)
135133
SELECT
136-
{{ Actions }},
137-
{{ CertificateAuthorityArn }},
138-
{{ Principal }},
139-
{{ SourceAccount }},
134+
{{ .Actions }},
135+
{{ .CertificateAuthorityArn }},
136+
{{ .Principal }},
137+
{{ .SourceAccount }},
140138
'us-east-1';
141139
```
142-
143140
</TabItem>
144141
</Tabs>
145142

docs/aws-docs/providers/aws/amplify/apps/index.md

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ WHERE region = 'us-east-1';
7979
values={[
8080
{ label: 'Required Properties', value: 'required', },
8181
{ label: 'All Properties', value: 'all', },
82-
8382
]
8483
}>
8584
<TabItem value="required">
@@ -96,10 +95,9 @@ INSERT INTO aws.amplify.apps (
9695
region
9796
)
9897
SELECT
99-
{{ Name }},
98+
{{ .Name }},
10099
'us-east-1';
101100
```
102-
103101
</TabItem>
104102
<TabItem value="all">
105103

@@ -180,24 +178,23 @@ INSERT INTO aws.amplify.apps (
180178
region
181179
)
182180
SELECT
183-
{{ AccessToken }},
184-
{{ AutoBranchCreationConfig }},
185-
{{ BasicAuthConfig }},
186-
{{ BuildSpec }},
187-
{{ CustomHeaders }},
188-
{{ CustomRules }},
189-
{{ Description }},
190-
{{ EnableBranchAutoDeletion }},
191-
{{ EnvironmentVariables }},
192-
{{ IAMServiceRole }},
193-
{{ Name }},
194-
{{ OauthToken }},
195-
{{ Platform }},
196-
{{ Repository }},
197-
{{ Tags }},
181+
{{ .AccessToken }},
182+
{{ .AutoBranchCreationConfig }},
183+
{{ .BasicAuthConfig }},
184+
{{ .BuildSpec }},
185+
{{ .CustomHeaders }},
186+
{{ .CustomRules }},
187+
{{ .Description }},
188+
{{ .EnableBranchAutoDeletion }},
189+
{{ .EnvironmentVariables }},
190+
{{ .IAMServiceRole }},
191+
{{ .Name }},
192+
{{ .OauthToken }},
193+
{{ .Platform }},
194+
{{ .Repository }},
195+
{{ .Tags }},
198196
'us-east-1';
199197
```
200-
201198
</TabItem>
202199
</Tabs>
203200

0 commit comments

Comments
 (0)