-
Notifications
You must be signed in to change notification settings - Fork 1
/
wordbook.json
13302 lines (13302 loc) · 552 KB
/
wordbook.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"no": "1",
"en": "following",
"ja": "次の",
"example_en": "Following the AWS documentation will help you set up your services correctly",
"example_ja": "次のAWSドキュメントに従うことで、サービスを正しく設定できます"
},
{
"no": "2",
"en": "using",
"ja": "使用して",
"example_en": "Using AWS services can help you scale your applications easily",
"example_ja": "AWSサービスを使用することで、アプリケーションを簡単にスケールできます"
},
{
"no": "3",
"en": "data",
"ja": "データ",
"example_en": "Data stored in AWS S3 is highly durable and available",
"example_ja": "AWS S3に格納されたデータは非常に耐久性が高く、利用可能です"
},
{
"no": "4",
"en": "service",
"ja": "サービス",
"example_en": "AWS provides a wide range of services to meet various customer needs",
"example_ja": "AWSは、さまざまな顧客ニーズに対応する幅広いサービスを提供しています"
},
{
"no": "5",
"en": "instance",
"ja": "インスタンス",
"example_en": "You can launch an EC2 instance in AWS to run your applications",
"example_ja": "アプリケーションを実行するために、AWSでEC2インスタンスを起動できます"
},
{
"no": "6",
"en": "access",
"ja": "アクセス",
"example_en": "You can control access to your AWS resources using IAM policies",
"example_ja": "AWSリソースへのアクセスをIAMポリシーを使用して制御できます"
},
{
"no": "7",
"en": "request",
"ja": "リクエスト",
"example_en": "You can send a request to AWS API to perform various actions",
"example_ja": "AWS APIにリクエストを送信して、さまざまなアクションを実行できます"
},
{
"no": "8",
"en": "cluster",
"ja": "クラスタ",
"example_en": "AWS Redshift is a managed data warehouse service that uses clusters for storage",
"example_ja": "AWS Redshiftは、クラスタを使用してストレージを提供するマネージドデータウェアハウスサービスです"
},
{
"no": "9",
"en": "action",
"ja": "アクション",
"example_en": "You can perform actions like creating, deleting and modifying AWS resources",
"example_ja": "AWSリソースの作成、削除、変更などのアクションを実行できます"
},
{
"no": "10",
"en": "version",
"ja": "バージョン",
"example_en": "It is important to use the latest version of AWS SDK for better performance and security",
"example_ja": "AWS SDKの最新バージョンを使用することで、パフォーマンスとセキュリティが向上します"
},
{
"no": "11",
"en": "application",
"ja": "アプリケーション",
"example_en": "You can deploy your application on AWS using various services like EC2 and Lambda",
"example_ja": "あなたはEC2やLambdaのようなさまざまなサービスを使ってAWS上にアプリケーションをデプロイできます"
},
{
"no": "12",
"en": "account",
"ja": "アカウント",
"example_en": "You can create multiple AWS accounts to manage different projects and environments",
"example_ja": "異なるプロジェクトや環境を管理するために複数のAWSアカウントを作成することができます"
},
{
"no": "13",
"en": "console",
"ja": "コンソール",
"example_en": "AWS Management Console provides a web-based interface to manage your AWS resources",
"example_ja": " AWS管理コンソールは、AWSリソースを管理するためのウェブベースのインターフェースを提供します"
},
{
"no": "14",
"en": "database",
"ja": "データベース",
"example_en": "Amazon RDS is a managed relational database service that supports multiple database engines",
"example_ja": "Amazon RDSは複数のデータベースエンジンをサポートするマネージドリレーショナルデータベースサービスです"
},
{
"no": "15",
"en": "language-specific",
"ja": "言語固有の",
"example_en": "AWS SDKs are available in multiple language-specific versions such as Python, Java and JavaScript.",
"example_ja": " AWS SDKはPython、Java、JavaScriptなどの複数の言語固有のバージョンで利用可能です"
},
{
"no": "16",
"en": "scaling",
"ja": "スケーリング",
"example_en": "Auto Scaling helps you maintain application availability and automatically adjusts capacity based on demand",
"example_ja": "オートスケーリングはアプリケーションの可用性を維持し、需要に応じて容量を自動的に調整します"
},
{
"no": "17",
"en": "parameter",
"ja": "パラメータ",
"example_en": "You can pass parameters to your AWS Lambda function using environment variables",
"example_ja": "環境変数を使ってAWS Lambda関数にパラメータを渡すことができます"
},
{
"no": "18",
"en": "permission",
"ja": "権限",
"example_en": "You can use AWS Identity and Access Management (IAM) to define permissions for your users and resources",
"example_ja": " AWS Identity and Access Management(IAM)を使用して、ユーザーとリソースの権限を定義できます"
},
{
"no": "19",
"en": "user",
"ja": "ユーザー",
"example_en": "You can create and manage users in your AWS account using AWS IAM",
"example_ja": " AWS IAMを使用してAWSアカウント内のユーザーを作成および管理できます"
},
{
"no": "20",
"en": "resource",
"ja": "リソース",
"example_en": "You can allocate resources to your AWS services according to your needs.",
"example_ja": "ニーズに応じてAWSサービスにリソースを割り当てることができます。"
},
{
"no": "21",
"en": "configuration",
"ja": "設定",
"example_en": "You need to update the configuration of your Amazon RDS instance.",
"example_ja": "Amazon RDSインスタンスの設定を更新する必要があります。"
},
{
"no": "22",
"en": "common",
"ja": "共通",
"example_en": "Amazon S3 is a common storage service used by many AWS customers.",
"example_ja": "Amazon S3は多くのAWS顧客によって使用される共通のストレージサービスです。"
},
{
"no": "23",
"en": "object",
"ja": "オブジェクト",
"example_en": "You can store and retrieve objects in Amazon S3.",
"example_ja": "Amazon S3でオブジェクトを保存および取得できます。"
},
{
"no": "24",
"en": "specify",
"ja": "指定する",
"example_en": "You need to specify the instance type when launching an EC2 instance.",
"example_ja": "EC2インスタンスを起動する際にインスタンスタイプを指定する必要があります。"
},
{
"no": "25",
"en": "task",
"ja": "タスク",
"example_en": "You can run multiple tasks in parallel using AWS Batch.",
"example_ja": "AWS Batchを使用して複数のタスクを並行して実行できます。"
},
{
"no": "26",
"en": "role",
"ja": "ロール",
"example_en": "You can create an IAM role to grant permissions to your AWS resources.",
"example_ja": "AWSリソースへのアクセス許可を付与するためにIAMロールを作成できます。"
},
{
"no": "27",
"en": "format",
"ja": "形式",
"example_en": "The data is stored in JSON format in the S3 bucket.",
"example_ja": "データはS3バケットにJSON形式で保存されています。"
},
{
"no": "28",
"en": "response",
"ja": "応答",
"example_en": "The Lambda function returns an HTTP response with a status code of 200.",
"example_ja": "Lambda関数は、ステータスコード200のHTTPレスポンスを返します。"
},
{
"no": "29",
"en": "metric",
"ja": "メトリック",
"example_en": "Amazon CloudWatch provides various metrics to monitor the performance of your AWS resources.",
"example_ja": "Amazon CloudWatchは、AWSリソースのパフォーマンスを監視するためのさまざまなメトリックを提供します。"
},
{
"no": "30",
"en": "use",
"ja": "使用する",
"example_en": "You can use AWS Identity and Access Management (IAM) to control access to your AWS resources.",
"example_ja": "AWS Identity and Access Management(IAM)を使用して、AWSリソースへのアクセスを制御できます。"
},
{
"no": "31",
"en": "default",
"ja": "デフォルト",
"example_en": "The default setting for the Amazon EC2 instance type is t2.micro.",
"example_ja": "Amazon EC2インスタンスタイプのデフォルト設定はt2.microです。"
},
{
"no": "32",
"en": "policy",
"ja": "ポリシー",
"example_en": "You can create an IAM policy to grant specific permissions to your users.",
"example_ja": "特定の権限をユーザーに付与するために、IAMポリシーを作成できます。"
},
{
"no": "33",
"en": "command",
"ja": "コマンド",
"example_en": "You can use the AWS CLI command to create an Amazon S3 bucket.",
"example_ja": "AWS CLIコマンドを使用して、Amazon S3バケットを作成できます。"
},
{
"no": "34",
"en": "available",
"ja": "利用可能な",
"example_en": "Amazon EC2 provides various instance types that are available for different workloads.",
"example_ja": "Amazon EC2は、さまざまなワークロードに対応するためのさまざまなインスタンスタイプを提供しています。"
},
{
"no": "35",
"en": "value",
"ja": "値",
"example_en": "You need to provide a value for the access key when configuring the AWS CLI.",
"example_ja": "AWS CLIを設定する際に、アクセスキーの値を提供する必要があります。"
},
{
"no": "36",
"en": "key",
"ja": "キー",
"example_en": "The key pair is required to securely access your EC2 instances.",
"example_ja": "キーペアは、EC2インスタンスに安全にアクセスするために必要です。"
},
{
"no": "37",
"en": "log",
"ja": "ログ",
"example_en": "You can view the CloudWatch Logs to monitor your Lambda function.",
"example_ja": "Lambda関数を監視するには、CloudWatch Logsを表示できます。"
},
{
"no": "38",
"en": "file",
"ja": "ファイル",
"example_en": "You can upload a file to an S3 bucket using the AWS Management Console.",
"example_ja": "AWS管理コンソールを使用して、ファイルをS3バケットにアップロードできます。"
},
{
"no": "39",
"en": "auto",
"ja": "自動",
"example_en": "AWS Auto Scaling helps you maintain the desired number of instances.",
"example_ja": "AWS Auto Scalingは、必要なインスタンス数を維持するのに役立ちます。"
},
{
"no": "40",
"en": "query",
"ja": "クエリ",
"example_en": "You can use AWS Athena to run SQL queries on data stored in S3.",
"example_ja": "S3に格納されたデータに対してSQLクエリを実行するには、AWS Athenaを使用できます。"
},
{
"no": "41",
"en": "list",
"ja": "リスト",
"example_en": "You can view the list of available AWS services in the AWS Management Console.",
"example_ja": "AWSマネジメントコンソールで利用可能なAWSサービスのリストを表示できます。"
},
{
"no": "42",
"en": "backup",
"ja": "バックアップ",
"example_en": "You can create a backup of your Amazon RDS database using AWS Backup.",
"example_ja": "AWSバックアップを使用してAmazon RDSデータベースのバックアップを作成できます。"
},
{
"no": "43",
"en": "type",
"ja": "タイプ",
"example_en": "You can choose the instance type for your Amazon EC2 instances based on your requirements.",
"example_ja": "要件に基づいてAmazon EC2インスタンスのインスタンスタイプを選択できます。"
},
{
"no": "44",
"en": "container",
"ja": "コンテナ",
"example_en": "You can use Amazon ECS to manage and deploy Docker containers.",
"example_ja": "Dockerコンテナを管理およびデプロイするためにAmazon ECSを使用できます。"
},
{
"no": "45",
"en": "function",
"ja": "関数",
"example_en": "You can create a Lambda function to process events in your application.",
"example_ja": "アプリケーション内のイベントを処理するためにLambda関数を作成できます。"
},
{
"no": "46",
"en": "management",
"ja": "管理",
"example_en": "AWS provides various management tools to help you monitor and manage your resources.",
"example_ja": "AWSはリソースを監視および管理するためのさまざまな管理ツールを提供しています。"
},
{
"no": "47",
"en": "error",
"ja": "エラー",
"example_en": "You can use Amazon CloudWatch to monitor and troubleshoot errors in your application.",
"example_ja": "Amazon CloudWatchを使用してアプリケーションのエラーを監視およびトラブルシューティングできます。"
},
{
"no": "48",
"en": "storage",
"ja": "ストレージ",
"example_en": "You can use Amazon S3 for scalable and durable storage of your data.",
"example_ja": "データのスケーラブルで耐久性のあるストレージとしてAmazon S3を使用できます。"
},
{
"no": "49",
"en": "used",
"ja": "使用される",
"example_en": "This instance type is used for running web applications.",
"example_ja": "このインスタンスタイプは、ウェブアプリケーションを実行するために使用されます。"
},
{
"no": "50",
"en": "returned",
"ja": "返される",
"example_en": "The query result is returned as a JSON object.",
"example_ja": "クエリ結果はJSONオブジェクトとして返されます。"
},
{
"no": "51",
"en": "might",
"ja": "かもしれない",
"example_en": "You might need to increase the instance size if the performance is not satisfactory.",
"example_ja": "パフォーマンスが十分でない場合、インスタンスサイズを増やす必要があるかもしれません。"
},
{
"no": "52",
"en": "specific",
"ja": "特定の",
"example_en": "You can use tags to organize your resources by specific projects.",
"example_ja": "タグを使用して、特定のプロジェクトごとにリソースを整理できます。"
},
{
"no": "53",
"en": "configure",
"ja": "設定する",
"example_en": "You need to configure the security group to allow incoming traffic on port 80.",
"example_ja": "セキュリティグループを設定して、ポート80での受信トラフィックを許可する必要があります。"
},
{
"no": "54",
"en": "source",
"ja": "ソース",
"example_en": "The source code for the Lambda function is stored in an S3 bucket.",
"example_ja": "Lambda関数のソースコードはS3バケットに保存されています。"
},
{
"no": "55",
"en": "send",
"ja": "送る",
"example_en": "Amazon SNS can send notifications to multiple subscribers at once.",
"example_ja": "Amazon SNSは一度に複数のサブスクライバーに通知を送ることができます。"
},
{
"no": "56",
"en": "event",
"ja": "イベント",
"example_en": "You can use Amazon EventBridge to trigger Lambda functions based on specific events.",
"example_ja": "特定のイベントに基づいてLambda関数をトリガーするために、Amazon EventBridgeを使用できます。"
},
{
"no": "57",
"en": "server",
"ja": "サーバー",
"example_en": "The application is hosted on an AWS server.",
"example_ja": "アプリケーションはAWSサーバー上にホストされています。"
},
{
"no": "58",
"en": "replication",
"ja": "レプリケーション",
"example_en": "Amazon RDS supports multi-AZ replication for high availability.",
"example_ja": "Amazon RDSは高可用性のためにマルチAZレプリケーションをサポートしています。"
},
{
"no": "59",
"en": "supported",
"ja": "サポートされている",
"example_en": "Amazon S3 supports versioning to keep multiple versions of an object.",
"example_ja": "Amazon S3はオブジェクトの複数バージョンを保持するためのバージョニングをサポートしています。"
},
{
"no": "60",
"en": "perform",
"ja": "実行する",
"example_en": "You can perform a backup of your data using AWS Backup.",
"example_ja": "AWS Backupを使用してデータのバックアップを実行できます。"
},
{
"no": "61",
"en": "security",
"ja": "セキュリティ",
"example_en": "AWS provides various security features to protect your data and applications.",
"example_ja": "AWSはデータやアプリケーションを保護するためのさまざまなセキュリティ機能を提供しています。"
},
{
"no": "62",
"en": "provide",
"ja": "提供する",
"example_en": "AWS provides a wide range of services to meet your business needs.",
"example_ja": "AWSはビジネスニーズに対応する幅広いサービスを提供しています。"
},
{
"no": "63",
"en": "create",
"ja": "作成する",
"example_en": "You can create an Amazon EC2 instance using the AWS Management Console.",
"example_ja": "AWS Management Consoleを使用してAmazon EC2インスタンスを作成できます。"
},
{
"no": "64",
"en": "custom",
"ja": "カスタム",
"example_en": "You can create custom Amazon CloudWatch metrics to monitor your application.",
"example_ja": "アプリケーションを監視するためにカスタムAmazon CloudWatchメトリクスを作成できます。"
},
{
"no": "65",
"en": "operation",
"ja": "操作",
"example_en": "You can monitor the status of your AWS operations using CloudWatch.",
"example_ja": "AWSの操作の状況をCloudWatchを使って監視することができます。"
},
{
"no": "66",
"en": "client",
"ja": "クライアント",
"example_en": "The AWS SDK provides a client for interacting with AWS services.",
"example_ja": "AWS SDKは、AWSサービスとやり取りするためのクライアントを提供します。"
},
{
"no": "67",
"en": "delete",
"ja": "削除",
"example_en": "You can delete an Amazon S3 bucket using the AWS Management Console.",
"example_ja": "AWS Management Consoleを使用して、Amazon S3バケットを削除できます。"
},
{
"no": "68",
"en": "multiple",
"ja": "複数",
"example_en": "You can create multiple instances of an Amazon RDS database for load balancing.",
"example_ja": "負荷分散のために、Amazon RDSデータベースの複数のインスタンスを作成できます。"
},
{
"no": "69",
"en": "manage",
"ja": "管理",
"example_en": "AWS provides managed services to help you manage your infrastructure.",
"example_ja": "AWSは、インフラストラクチャを管理するのに役立つマネージドサービスを提供します。"
},
{
"no": "70",
"en": "support",
"ja": "サポート",
"example_en": "AWS provides technical support to help you troubleshoot issues with your AWS resources.",
"example_ja": "AWSは、AWSリソースの問題をトラブルシューティングするのに役立つ技術サポートを提供します。"
},
{
"no": "71",
"en": "region",
"ja": "リージョン",
"example_en": "The S3 bucket is located in the us-west-2 region.",
"example_ja": "S3バケットはus-west-2リージョンにあります。"
},
{
"no": "72",
"en": "include",
"ja": "含む",
"example_en": "The AWS service package includes compute, storage, and database services.",
"example_ja": "AWSサービスパッケージには、コンピュート、ストレージ、データベースサービスが含まれています。"
},
{
"no": "73",
"en": "automatically",
"ja": "自動的に",
"example_en": "The AWS Lambda function is automatically triggered when a new file is uploaded to the S3 bucket.",
"example_ja": "新しいファイルがS3バケットにアップロードされると、AWS Lambda関数が自動的にトリガーされます。"
},
{
"no": "74",
"en": "run",
"ja": "実行する",
"example_en": "You can run your applications on AWS EC2 instances.",
"example_ja": "AWS EC2インスタンスでアプリケーションを実行できます。"
},
{
"no": "75",
"en": "endpoint",
"ja": "エンドポイント",
"example_en": "The API Gateway provides an endpoint for your application to interact with.",
"example_ja": "API Gatewayは、アプリケーションがやり取りするためのエンドポイントを提供します。"
},
{
"no": "76",
"en": "code",
"ja": "コード",
"example_en": "You can deploy your code to AWS Lambda and run it in response to events.",
"example_ja": "AWS Lambdaにコードをデプロイして、イベントに応じて実行できます。"
},
{
"no": "77",
"en": "detail",
"ja": "詳細",
"example_en": "You can find more details about the AWS service in the documentation.",
"example_ja": "AWSサービスの詳細については、ドキュメントで確認できます。"
},
{
"no": "78",
"en": "section",
"ja": "セクション",
"example_en": "Please refer to the security section of the AWS documentation for best practices.",
"example_ja": "AWSドキュメントのセキュリティセクションを参照して、ベストプラクティスを確認してください。"
},
{
"no": "79",
"en": "associate",
"ja": "関連付ける",
"example_en": "You need to associate the Elastic IP address with the EC2 instance.",
"example_ja": "Elastic IPアドレスをEC2インスタンスに関連付ける必要があります。"
},
{
"no": "80",
"en": "setting",
"ja": "設定",
"example_en": "You can modify the settings of your RDS instance through the AWS Management Console.",
"example_ja": "AWSマネジメントコンソールを通じて、RDSインスタンスの設定を変更できます。"
},
{
"no": "81",
"en": "group",
"ja": "グループ",
"example_en": "You can create security groups in AWS to control inbound and outbound traffic.",
"example_ja": "AWSでセキュリティグループを作成して、インバウンドとアウトバウンドのトラフィックを制御できます。"
},
{
"no": "82",
"en": "exist",
"ja": "存在する",
"example_en": "You can use the AWS CLI to check if the specified S3 bucket exists.",
"example_ja": "AWS CLIを使用して、指定されたS3バケットが存在するかどうかを確認できます。"
},
{
"no": "83",
"en": "return",
"ja": "戻す",
"example_en": "The Lambda function returns the result of the computation to the API Gateway.",
"example_ja": "Lambda関数は、計算結果をAPI Gatewayに返します。"
},
{
"no": "84",
"en": "network",
"ja": "ネットワーク",
"example_en": "You can create a virtual private network on AWS for your resources.",
"example_ja": "AWS上でリソースのための仮想プライベートネットワークを作成することができます。"
},
{
"no": "85",
"en": "image",
"ja": "イメージ",
"example_en": "You can use an Amazon Machine Image to launch an EC2 instance.",
"example_ja": "Amazonマシンイメージを使用してEC2インスタンスを起動することができます。"
},
{
"no": "86",
"en": "connect",
"ja": "接続する",
"example_en": "You can connect to your EC2 instance using SSH.",
"example_ja": "SSHを使用してEC2インスタンスに接続することができます。"
},
{
"no": "87",
"en": "connection",
"ja": "接続",
"example_en": "Ensure that the connection between your VPC and on-premises network is secure.",
"example_ja": "VPCとオンプレミスネットワーク間の接続が安全であることを確認してください。"
},
{
"no": "88",
"en": "capacity",
"ja": "容量",
"example_en": "Monitor the capacity of your EBS volumes to ensure optimal performance.",
"example_ja": "最適なパフォーマンスを確保するためにEBSボリュームの容量を監視してください。"
},
{
"no": "89",
"en": "contain",
"ja": "含む",
"example_en": "The AWS Management Console contains various tools to manage your resources.",
"example_ja": "AWSマネジメントコンソールには、リソースを管理するためのさまざまなツールが含まれています。"
},
{
"no": "90",
"en": "additional",
"ja": "追加の",
"example_en": "You may need to provision additional EC2 instances to handle increased traffic.",
"example_ja": "増加したトラフィックを処理するために、追加のEC2インスタンスをプロビジョニングする必要があるかもしれません。"
},
{
"no": "91",
"en": "load",
"ja": "負荷",
"example_en": "Use Amazon CloudWatch to monitor the load on your EC2 instances.",
"example_ja": "Amazon CloudWatchを使用してEC2インスタンスの負荷を監視してください。"
},
{
"no": "92",
"en": "activity",
"ja": "活動",
"example_en": "The activity log shows all the actions performed in the AWS Management Console.",
"example_ja": "AWS管理コンソールで実行されたすべてのアクションがアクティビティログに表示されます。"
},
{
"no": "93",
"en": "recommend",
"ja": "推奨する",
"example_en": "We recommend using the latest version of AWS SDK for better performance.",
"example_ja": "より良いパフォーマンスのために、最新バージョンのAWS SDKを使用することを推奨します。"
},
{
"no": "94",
"en": "update",
"ja": "更新する",
"example_en": "You can update the instance type of your EC2 instance to improve its performance.",
"example_ja": "パフォーマンスを向上させるために、EC2インスタンスのインスタンスタイプを更新できます。"
},
{
"no": "95",
"en": "option",
"ja": "オプション",
"example_en": "You can choose different storage options for your S3 bucket depending on your needs.",
"example_ja": "ニーズに応じて、S3バケットに異なるストレージオプションを選択できます。"
},
{
"no": "96",
"en": "step",
"ja": "手順",
"example_en": "Follow these steps to create a new IAM user in your AWS account.",
"example_ja": "AWSアカウントに新しいIAMユーザーを作成するには、これらの手順に従ってください。"
},
{
"no": "97",
"en": "enable",
"ja": "有効にする",
"example_en": "Enable AWS CloudTrail to monitor and log API calls made in your account.",
"example_ja": "アカウントで行われたAPI呼び出しを監視およびログに記録するには、AWS CloudTrailを有効にします。"
},
{
"no": "98",
"en": "example",
"ja": "例",
"example_en": "For example,you can use AWS Lambda to automatically resize images uploaded to S3.",
"example_ja": "例えば、AWS Lambdaを使用して、S3にアップロードされた画像を自動的にリサイズできます。"
},
{
"no": "99",
"en": "within",
"ja": "以内",
"example_en": "You can set up an alarm in Amazon CloudWatch to notify you if the CPU usage exceeds 80% within a specified time period.",
"example_ja": "指定された期間内にCPU使用率が80%を超えた場合に通知するアラームをAmazon CloudWatchで設定できます。"
},
{
"no": "100",
"en": "change",
"ja": "変更",
"example_en": "You can change the security group rules to allow or deny specific traffic to your EC2 instances.",
"example_ja": "セキュリティグループのルールを変更して、特定のトラフィックをEC2インスタンスに許可または拒否できます。"
},
{
"no": "101",
"en": "process",
"ja": "プロセス",
"example_en": "The process of creating an EC2 instance involves selecting an AMI and configuring the instance details.",
"example_ja": "EC2インスタンスを作成するプロセスには、AMIの選択とインスタンスの詳細の設定が含まれます。"
},
{
"no": "102",
"en": "tag",
"ja": "タグ",
"example_en": "You can add tags to your resources to help you organize and manage them.",
"example_ja": "リソースにタグを追加して、それらを整理・管理するのに役立てることができます。"
},
{
"no": "103",
"en": "agent",
"ja": "エージェント",
"example_en": "The AWS Systems Manager Agent must be installed on your instances to use certain features.",
"example_ja": "特定の機能を使用するために、AWS Systems Managerエージェントをインスタンスにインストールする必要があります。"
},
{
"no": "104",
"en": "workflow",
"ja": "ワークフロー",
"example_en": "You can use AWS Step Functions to create a serverless workflow that orchestrates your AWS Lambda functions.",
"example_ja": "AWS Lambda関数をオーケストレーションするサーバーレスワークフローを作成するために、AWS Step Functionsを使用できます。"
},
{
"no": "105",
"en": "engine",
"ja": "エンジン",
"example_en": "Amazon RDS supports multiple database engines including MySQL PostgreSQL and Oracle.",
"example_ja": "Amazon RDSは、MySQL、PostgreSQL、Oracleなどの複数のデータベースエンジンをサポートしています。"
},
{
"no": "106",
"en": "credential",
"ja": "資格情報",
"example_en": "You need to store your AWS credentials securely to prevent unauthorized access.",
"example_ja": "不正なアクセスを防ぐために、AWSの資格情報を安全に保管する必要があります。"
},
{
"no": "107",
"en": "feature",
"ja": "機能",
"example_en": "Amazon S3 offers features such as versioning and lifecycle policies to help you manage your objects.",
"example_ja": "Amazon S3は、バージョニングやライフサイクルポリシーなどの機能を提供して、オブジェクトの管理を支援します。"
},
{
"no": "108",
"en": "procedure",
"ja": "手順",
"example_en": "Follow the procedure to create an Amazon S3 bucket.",
"example_ja": "Amazon S3バケットを作成する手順に従ってください。"
},
{
"no": "109",
"en": "usage",
"ja": "使用法",
"example_en": "Monitor your AWS usage to control costs.",
"example_ja": "コストを抑えるためにAWSの使用状況を監視してください。"
},
{
"no": "110",
"en": "based",
"ja": "基づいて",
"example_en": "Choose an AWS region based on your requirements.",
"example_ja": "要件に基づいてAWSリージョンを選択してください。"
},
{
"no": "111",
"en": "complete",
"ja": "完了する",
"example_en": "Wait for the AWS CloudFormation stack to complete before proceeding.",
"example_ja": "進む前にAWS CloudFormationスタックが完了するのを待ってください。"
},
{
"no": "112",
"en": "accept",
"ja": "受け入れる",
"example_en": "Accept the invitation to join an AWS Organizations account.",
"example_ja": "AWS Organizationsアカウントに参加するための招待を受け入れてください。"
},
{
"no": "113",
"en": "launch",
"ja": "起動する",
"example_en": "Launch an Amazon RDS instance with the specified configuration.",
"example_ja": "指定された設定でAmazon RDSインスタンスを起動してください。"
},
{
"no": "114",
"en": "require",
"ja": "必要とする",
"example_en": "This AWS service requires additional permissions to function properly.",
"example_ja": "このAWSサービスは、適切に機能するために追加の権限が必要です。"
},
{
"no": "115",
"en": "availability",
"ja": "可用性",
"example_en": "Ensure high availability of your application by using Amazon RDS Multi-AZ deployment.",
"example_ja": "Amazon RDS Multi-AZデプロイメントを使用してアプリケーションの高可用性を確保してください。"
},
{
"no": "116",
"en": "system",
"ja": "システム",
"example_en": "The AWS Management Console provides a web-based interface for managing your AWS systems.",
"example_ja": "AWSマネジメントコンソールは、AWSシステムを管理するためのウェブベースのインターフェースを提供します。"
},
{
"no": "117",
"en": "replica",
"ja": "レプリカ",
"example_en": "AWS RDS allows you to create read replicas to offload read traffic from your primary database instance.",
"example_ja": "AWS RDSでは、プライマリデータベースインスタンスからの読み取りトラフィックをオフロードするために、リードレプリカを作成できます。"
},
{
"no": "118",
"en": "cache",
"ja": "キャッシュ",
"example_en": "Amazon ElastiCache is a web service that makes it easy to deploy and run Memcached or Redis protocol-compliant server nodes in the cloud.",
"example_ja": "Amazon ElastiCacheは、クラウドでMemcachedまたはRedisプロトコル準拠のサーバーノードを簡単にデプロイおよび実行できるウェブサービスです。"
},
{
"no": "119",
"en": "definition",
"ja": "定義",
"example_en": "The AWS CloudFormation template is a JSON or YAML formatted text file that defines the AWS resources and their properties.",
"example_ja": "AWS CloudFormationテンプレートは、AWSリソースとそのプロパティを定義するJSONまたはYAML形式のテキストファイルです。"
},
{
"no": "120",
"en": "status",
"ja": "ステータス",
"example_en": "You can check the status of your AWS resources in the AWS Management Console.",
"example_ja": "AWSマネジメントコンソールでAWSリソースのステータスを確認できます。"
},
{
"no": "121",
"en": "domain",
"ja": "ドメイン",
"example_en": "Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web service.",
"example_ja": "Amazon Route 53は、高可用性でスケーラブルなドメイン名システム(DNS)ウェブサービスです。"
},
{
"no": "122",
"en": "insight",
"ja": "インサイト",
"example_en": "Amazon CloudWatch provides insights to monitor your applications respond to system-wide performance changes and optimize resource utilization.",
"example_ja": "Amazon CloudWatchは、アプリケーションの監視、システム全体のパフォーマンス変更への対応、およびリソース利用の最適化に関するインサイトを提供します。"
},
{
"no": "123",
"en": "encryption",
"ja": "暗号化",
"example_en": "Amazon S3 provides server-side encryption to protect your data at rest.",
"example_ja": "Amazon S3は、サーバーサイド暗号化を提供して、データを保護します。"
},
{
"no": "124",
"en": "target",
"ja": "ターゲット",
"example_en": "You can create an Application Load Balancer to distribute incoming traffic across multiple targets.",
"example_ja": "アプリケーションロードバランサーを作成して、複数のターゲットに対して受信トラフィックを分散させることができます。"
},
{
"no": "125",
"en": "environment",
"ja": "環境",
"example_en": "You need to set up the AWS environment before deploying your application.",
"example_ja": "AWS環境を設定してからアプリケーションをデプロイする必要があります。"
},
{
"no": "126",
"en": "identity",
"ja": "識別子",
"example_en": "Amazon Cognito provides identity management for your users.",
"example_ja": "Amazon Cognitoはユーザーの識別子管理を提供します。"
},
{
"no": "127",
"en": "upgrade",
"ja": "アップグレード",
"example_en": "You should upgrade your AWS services to the latest version for better performance.",
"example_ja": "より良いパフォーマンスのために、AWSサービスを最新バージョンにアップグレードする必要があります。"
},
{
"no": "128",
"en": "allow",
"ja": "許可する",
"example_en": "You need to allow access to the S3 bucket for your users.",
"example_ja": "ユーザーがS3バケットにアクセスできるように許可する必要があります。"
},
{
"no": "129",
"en": "apply",
"ja": "適用する",
"example_en": "You can apply a security group to your EC2 instances for better protection.",
"example_ja": "より良い保護のために、セキュリティグループをEC2インスタンスに適用することができます。"
},
{
"no": "130",
"en": "node",
"ja": "ノード",
"example_en": "You can add more nodes to your Amazon Elasticsearch cluster for better performance.",
"example_ja": "より良いパフォーマンスのために、Amazon Elasticsearchクラスタにさらにノードを追加することができます。"
},
{
"no": "131",
"en": "whether",
"ja": "かどうか",
"example_en": "You should check whether your AWS resources are properly configured.",
"example_ja": "AWSリソースが適切に設定されているかどうか確認する必要があります。"
},
{
"no": "132",
"en": "state",
"ja": "状態",
"example_en": "You can monitor the state of your AWS resources using Amazon CloudWatch.",
"example_ja": "Amazon CloudWatchを使用して、AWSリソースの状態を監視することができます。"
},
{
"no": "133",
"en": "snapshot",
"ja": "スナップショット",
"example_en": "You can create a snapshot of your Amazon EBS volume for backup purposes.",
"example_ja": "Amazon EBSボリュームのスナップショットをバックアップ目的で作成できます。"
},
{
"no": "134",
"en": "template",
"ja": "テンプレート",
"example_en": "You can use AWS CloudFormation templates to create and manage your AWS resources.",
"example_ja": "AWS CloudFormationテンプレートを使用して、AWSリソースを作成および管理できます。"
},
{
"no": "135",
"en": "origin",
"ja": "オリジン",
"example_en": "You need to specify the origin server for your Amazon CloudFront distribution.",
"example_ja": "Amazon CloudFrontディストリビューションのオリジンサーバーを指定する必要があります。"
},
{
"no": "136",
"en": "manager",
"ja": "マネージャー",
"example_en": "AWS Certificate Manager helps you manage SSL/TLS certificates for your AWS resources.",
"example_ja": "AWS Certificate Managerは、AWSリソースのSSL/TLS証明書を管理するのに役立ちます。"
},
{
"no": "137",
"en": "describe",
"ja": "説明する",
"example_en": "The DescribeInstances API action returns information about your Amazon EC2 instances.",
"example_ja": "DescribeInstances APIアクションは、Amazon EC2インスタンスに関する情報を返します。"
},
{
"no": "138",
"en": "private",
"ja": "プライベート",
"example_en": "You can create a private subnet in your Amazon VPC to isolate your resources.",
"example_ja": "Amazon VPC内にプライベートサブネットを作成して、リソースを隔離できます。"
},
{
"no": "139",
"en": "proxy",
"ja": "プロキシ",
"example_en": "You can use Amazon API Gateway as a proxy for your backend services.",
"example_ja": "Amazon API Gatewayをバックエンドサービスのプロキシとして使用できます。"
},
{
"no": "140",
"en": "modify",
"ja": "変更する",
"example_en": "You can modify the instance type of your EC2 instance in the AWS Management Console.",
"example_ja": "AWS管理コンソールでEC2インスタンスのインスタンスタイプを変更することができます。"
},
{
"no": "141",
"en": "runner",
"ja": "実行者",
"example_en": "The AWS CodePipeline runner is responsible for executing the pipeline stages.",
"example_ja": "AWS CodePipelineのランナーは、パイプラインの各ステージを実行する責任があります。"
},
{
"no": "142",
"en": "primary",
"ja": "主要な",
"example_en": "The primary key is used to uniquely identify items in a DynamoDB table.",
"example_ja": "プライマリキーは、DynamoDBテーブル内のアイテムを一意に識別するために使用されます。"
},
{
"no": "143",
"en": "documentation",
"ja": "ドキュメント",
"example_en": "AWS provides extensive documentation for all of its services to help users understand and use them effectively.",