File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
src/tooling/docs-assembler/Cli Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 1717using Elastic . Documentation . Tooling . Diagnostics . Console ;
1818using Elastic . Documentation . Tooling . Filters ;
1919using Microsoft . Extensions . Logging ;
20+ using DescribeKeyValueStoreRequest = Amazon . CloudFront . Model . DescribeKeyValueStoreRequest ;
2021
2122namespace Documentation . Assembler . Cli ;
2223
@@ -143,10 +144,7 @@ public async Task<int> UpdateRedirects(
143144 var kvsClient = new AmazonCloudFrontKeyValueStoreClient ( ) ;
144145
145146 ConsoleApp . Log ( "Describing KVS" ) ;
146- var describeResponse = await cfClient . DescribeKeyValueStoreAsync ( new Amazon . CloudFront . Model . DescribeKeyValueStoreRequest ( )
147- {
148- Name = kvsName
149- } , ctx ) ;
147+ var describeResponse = await cfClient . DescribeKeyValueStoreAsync ( new DescribeKeyValueStoreRequest { Name = kvsName } , ctx ) ;
150148
151149 var kvsArn = describeResponse . KeyValueStore . ARN ;
152150 var eTag = describeResponse . ETag ;
You can’t perform that action at this time.
0 commit comments