Backfill argument not working in cli

0

Hey I am currently extending our CI. Wanted to set Backfill to automatic via the cli but this throws me an error: "unknown options: --backfill-mode "AUTOMATIC" ". Did something change or is it documented wrongly?

Here is my CLI command: ` aws gamelift create-matchmaking-configuration --name "DEVELOPMENT-ONEVSZERO" --rule-set-name "DEVELOPMENT-ONEVSZERO" --game-session-queue-arns arn:******

Also: aws gamelift create-matchmaking-configuration --generate-cli-skeleton Doesnt return anything backfill related: { "Name": "", "Description": "", "GameSessionQueueArns": [ "" ], "RequestTimeoutSeconds": 0, "AcceptanceTimeoutSeconds": 0, "AcceptanceRequired": true, "RuleSetName": "", "NotificationTarget": "", "AdditionalPlayerCount": 0, "CustomEventData": "", "GameProperties": [ { "Key": "", "Value": "" } ], "GameSessionData": "" }

https://docs.aws.amazon.com/gamelift/latest/developerguide/match-create-configuration.html

Thanks, Kris

gefragt vor 4 Jahren192 Aufrufe
2 Antworten
0

I just tried this locally and it worked -- perhaps you need to upgrade the version of the cli that you're using?

Here's the version I have:

% aws --version aws-cli/1.16.263 Python/3.6.9 Linux/4.9.184-0.1.ac.235.83.329.metal1.x86_64 botocore/1.12.253

beantwortet vor 4 Jahren
0

Ahh updating did do the trick:

{ "Name": "", "Description": "", "GameSessionQueueArns": [ "" ], "RequestTimeoutSeconds": 0, "AcceptanceTimeoutSeconds": 0, "AcceptanceRequired": true, "RuleSetName": "", "NotificationTarget": "", "AdditionalPlayerCount": 0, "CustomEventData": "", "GameProperties": [ { "Key": "", "Value": "" } ], "GameSessionData": "", "BackfillMode": "MANUAL" }

Thanks!

beantwortet vor 4 Jahren

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen