AWS Doc SDK Examples
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
または AWS SDK CreateLogStream
で使用する CLI
以下のコード例は、CreateLogStream
の使用方法を示しています。
- .NET
-
- AWS SDK for .NET
-
注記
の詳細については、「」を参照してください GitHub。用例一覧を検索し、AWS コード例リポジトリ
での設定と実行の方法を確認してください。 using System; using System.Threading.Tasks; using Amazon.CloudWatchLogs; using Amazon.CloudWatchLogs.Model; /// <summary> /// Shows how to create an Amazon CloudWatch Logs stream for a CloudWatch /// log group. /// </summary> public class CreateLogStream { public static async Task Main() { // This client object will be associated with the same AWS Region // as the default user on this system. If you need to use a // different AWS Region, pass it as a parameter to the client // constructor. var client = new AmazonCloudWatchLogsClient(); string logGroupName = "cloudwatchlogs-example-loggroup"; string logStreamName = "cloudwatchlogs-example-logstream"; var request = new CreateLogStreamRequest { LogGroupName = logGroupName, LogStreamName = logStreamName, }; var response = await client.CreateLogStreamAsync(request); if (response.HttpStatusCode == System.Net.HttpStatusCode.OK) { Console.WriteLine($"{logStreamName} successfully created for {logGroupName}."); } else { Console.WriteLine("Could not create stream."); } } }
-
API 詳細については、 リファレンスCreateLogStreamの「」を参照してください。 AWS SDK for .NET API
-
- CLI
-
- AWS CLI
-
次のコマンドは、ロググループ
my-logs
に20150601
という名前のログストリームを作成します。aws logs create-log-stream --log-group-name
my-logs
--log-stream-name20150601
-
API 詳細については、AWS CLI 「 コマンドリファレンスCreateLogStream
」の「」を参照してください。
-
CreateLogGroup
DeleteLogGroup