Class CfnMaintenanceWindowTask.MaintenanceWindowRunCommandParametersProperty
The MaintenanceWindowRunCommandParameters
property type specifies the parameters for a RUN_COMMAND
task type for a maintenance window task in AWS Systems Manager .
public class CfnMaintenanceWindowTask.MaintenanceWindowRunCommandParametersProperty : CfnMaintenanceWindowTask.IMaintenanceWindowRunCommandParametersProperty
- Inheritance
-
CfnMaintenanceWindowTask.MaintenanceWindowRunCommandParametersProperty
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.SSM;
var parameters;
var maintenanceWindowRunCommandParametersProperty = new MaintenanceWindowRunCommandParametersProperty {
CloudWatchOutputConfig = new CloudWatchOutputConfigProperty {
CloudWatchLogGroupName = "cloudWatchLogGroupName",
CloudWatchOutputEnabled = false
},
Comment = "comment",
DocumentHash = "documentHash",
DocumentHashType = "documentHashType",
DocumentVersion = "documentVersion",
NotificationConfig = new NotificationConfigProperty {
NotificationArn = "notificationArn",
// the properties below are optional
NotificationEvents = new [] { "notificationEvents" },
NotificationType = "notificationType"
},
OutputS3BucketName = "outputS3BucketName",
OutputS3KeyPrefix = "outputS3KeyPrefix",
Parameters = parameters,
ServiceRoleArn = "serviceRoleArn",
TimeoutSeconds = 123
};
Remarks
This means that these parameters are the same as those for the SendCommand
API call. For more information about SendCommand
parameters, see SendCommand in the AWS Systems Manager API Reference .
For information about available parameters in SSM Command documents, you can view the content of the document itself in the Systems Manager console. For information, see Viewing SSM command document content in the AWS Systems Manager User Guide .
MaintenanceWindowRunCommandParameters
is a property of the TaskInvocationParameters property type.
ExampleMetadata: fixture=_generated
Constructors
MaintenanceWindowRunCommandParametersProperty()
public MaintenanceWindowRunCommandParametersProperty()
Properties
CloudWatchOutputConfig
Configuration options for sending command output to Amazon CloudWatch Logs.
public object? CloudWatchOutputConfig { get; set; }
Property Value
Remarks
Comment
Information about the command or commands to run.
public string? Comment { get; set; }
Property Value
Remarks
DocumentHash
The SHA-256 or SHA-1 hash created by the system when the document was created.
public string? DocumentHash { get; set; }
Property Value
Remarks
SHA-1 hashes have been deprecated.
DocumentHashType
The SHA-256 or SHA-1 hash type.
public string? DocumentHashType { get; set; }
Property Value
Remarks
SHA-1 hashes are deprecated.
DocumentVersion
The AWS Systems Manager document (SSM document) version to use in the request.
public string? DocumentVersion { get; set; }
Property Value
Remarks
You can specify $DEFAULT
, $LATEST
, or a specific version number. If you run commands by using the AWS CLI, then you must escape the first two options by using a backslash. If you specify a version number, then you don't need to use the backslash. For example:
--document-version "$DEFAULT"
--document-version "$LATEST"
--document-version "3"
NotificationConfig
Configurations for sending notifications about command status changes on a per-managed node basis.
public object? NotificationConfig { get; set; }
Property Value
Remarks
OutputS3BucketName
The name of the Amazon Simple Storage Service (Amazon S3) bucket.
public string? OutputS3BucketName { get; set; }
Property Value
Remarks
OutputS3KeyPrefix
The S3 bucket subfolder.
public string? OutputS3KeyPrefix { get; set; }
Property Value
Remarks
Parameters
The parameters for the RUN_COMMAND
task execution.
public object? Parameters { get; set; }
Property Value
Remarks
The supported parameters are the same as those for the SendCommand
API call. For more information, see SendCommand in the AWS Systems Manager API Reference .
ServiceRoleArn
The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) service role to use to publish Amazon Simple Notification Service (Amazon SNS) notifications for maintenance window Run Command tasks.
public string? ServiceRoleArn { get; set; }
Property Value
Remarks
TimeoutSeconds
If this time is reached and the command hasn't already started running, it doesn't run.
public double? TimeoutSeconds { get; set; }