Skip to content

Commit af7f0d0

Browse files
committed
Minor touchup
1 parent 7760710 commit af7f0d0

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/tooling/docs-assembler/Cli/DeployCommands.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
using Elastic.Documentation.Tooling.Diagnostics.Console;
1818
using Elastic.Documentation.Tooling.Filters;
1919
using Microsoft.Extensions.Logging;
20+
using DescribeKeyValueStoreRequest = Amazon.CloudFront.Model.DescribeKeyValueStoreRequest;
2021

2122
namespace 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;

0 commit comments

Comments
 (0)