package
4.38.1
Repository: https://github.com/pulumi/pulumi-aws.git
Documentation: pkg.go.dev

# Functions

No description provided by the author
GetActivation gets an existing Activation resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetAssociation gets an existing Association resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetDocument gets an existing Document resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMaintenanceWindow gets an existing MaintenanceWindow resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMaintenanceWindowTarget gets an existing MaintenanceWindowTarget resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetMaintenanceWindowTask gets an existing MaintenanceWindowTask resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetParameter gets an existing Parameter resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
No description provided by the author
No description provided by the author
GetPatchBaseline gets an existing PatchBaseline resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetPatchGroup gets an existing PatchGroup resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetResourceDataSync gets an existing ResourceDataSync resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
Gets the contents of the specified Systems Manager document.
No description provided by the author
Provides an SSM Parameter data source.
No description provided by the author
Provides an SSM Patch Baseline data source.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewActivation registers a new resource with the given unique name, arguments, and options.
NewAssociation registers a new resource with the given unique name, arguments, and options.
NewDocument registers a new resource with the given unique name, arguments, and options.
NewMaintenanceWindow registers a new resource with the given unique name, arguments, and options.
NewMaintenanceWindowTarget registers a new resource with the given unique name, arguments, and options.
NewMaintenanceWindowTask registers a new resource with the given unique name, arguments, and options.
NewParameter registers a new resource with the given unique name, arguments, and options.
NewPatchBaseline registers a new resource with the given unique name, arguments, and options.
NewPatchGroup registers a new resource with the given unique name, arguments, and options.
NewResourceDataSync registers a new resource with the given unique name, arguments, and options.
No description provided by the author
No description provided by the author

# Constants

No description provided by the author
No description provided by the author
No description provided by the author

# Structs

Registers an on-premises server or virtual machine with Amazon EC2 so that it can be managed using Run Command.
The set of arguments for constructing a Activation resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Associates an SSM Document to an instance or EC2 tag.
The set of arguments for constructing a Association resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides an SSM Document resource > **NOTE on updating SSM documents:** Only documents with a schema version of 2.0 or greater can update their content once created, see [SSM Schema Features](http://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-ssm-docs.html#document-schemas-features).
The set of arguments for constructing a Document resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
A collection of arguments for invoking getParametersByPath.
A collection of arguments for invoking getParametersByPath.
A collection of values returned by getParametersByPath.
A collection of values returned by getParametersByPath.
A collection of arguments for invoking getDocument.
A collection of arguments for invoking getDocument.
A collection of values returned by getDocument.
A collection of values returned by getDocument.
A collection of arguments for invoking getParameter.
A collection of arguments for invoking getParameter.
A collection of values returned by getParameter.
A collection of values returned by getParameter.
A collection of arguments for invoking getPatchBaseline.
A collection of arguments for invoking getPatchBaseline.
A collection of values returned by getPatchBaseline.
A collection of values returned by getPatchBaseline.
Provides an SSM Maintenance Window resource ## Example Usage ```go package main import ( "github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.NewMaintenanceWindow(ctx, "production", &ssm.MaintenanceWindowArgs{ Cutoff: pulumi.Int(1), Duration: pulumi.Int(3), Schedule: pulumi.String("cron(0 16 ? * TUE *)"), }) if err != nil { return err } return nil }) } ``` ## Import SSM Maintenance Windows can be imported using the `maintenance window id`, e.g., ```sh $ pulumi import aws:ssm/maintenanceWindow:MaintenanceWindow imported-window mw-0123456789 ```.
The set of arguments for constructing a MaintenanceWindow resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides an SSM Maintenance Window Target resource ## Example Usage ### Instance Target ```go package main import ( "github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { window, err := ssm.NewMaintenanceWindow(ctx, "window", &ssm.MaintenanceWindowArgs{ Schedule: pulumi.String("cron(0 16 ? * TUE *)"), Duration: pulumi.Int(3), Cutoff: pulumi.Int(1), }) if err != nil { return err } _, err = ssm.NewMaintenanceWindowTarget(ctx, "target1", &ssm.MaintenanceWindowTargetArgs{ WindowId: window.ID(), Description: pulumi.String("This is a maintenance window target"), ResourceType: pulumi.String("INSTANCE"), Targets: ssm.MaintenanceWindowTargetTargetArray{ &ssm.MaintenanceWindowTargetTargetArgs{ Key: pulumi.String("tag:Name"), Values: pulumi.StringArray{ pulumi.String("acceptance_test"), }, }, }, }) if err != nil { return err } return nil }) } ``` ### Resource Group Target ```go package main import ( "github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { window, err := ssm.NewMaintenanceWindow(ctx, "window", &ssm.MaintenanceWindowArgs{ Schedule: pulumi.String("cron(0 16 ? * TUE *)"), Duration: pulumi.Int(3), Cutoff: pulumi.Int(1), }) if err != nil { return err } _, err = ssm.NewMaintenanceWindowTarget(ctx, "target1", &ssm.MaintenanceWindowTargetArgs{ WindowId: window.ID(), Description: pulumi.String("This is a maintenance window target"), ResourceType: pulumi.String("RESOURCE_GROUP"), Targets: ssm.MaintenanceWindowTargetTargetArray{ &ssm.MaintenanceWindowTargetTargetArgs{ Key: pulumi.String("resource-groups:ResourceTypeFilters"), Values: pulumi.StringArray{ pulumi.String("AWS::EC2::Instance"), }, }, }, }) if err != nil { return err } return nil }) } ``` ## Import SSM Maintenance Window targets can be imported using `WINDOW_ID/WINDOW_TARGET_ID`, e.g., ```sh $ pulumi import aws:ssm/maintenanceWindowTarget:MaintenanceWindowTarget example mw-0c50858d01EXAMPLE/23639a0b-ddbc-4bca-9e72-78d96EXAMPLE ```.
The set of arguments for constructing a MaintenanceWindowTarget resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides an SSM Maintenance Window Task resource ## Example Usage ### Automation Tasks ```go package main import ( "fmt" "github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.NewMaintenanceWindowTask(ctx, "example", &ssm.MaintenanceWindowTaskArgs{ MaxConcurrency: pulumi.String("2"), MaxErrors: pulumi.String("1"), Priority: pulumi.Int(1), TaskArn: pulumi.String("AWS-RestartEC2Instance"), TaskType: pulumi.String("AUTOMATION"), WindowId: pulumi.Any(aws_ssm_maintenance_window.Example.Id), Targets: ssm.MaintenanceWindowTaskTargetArray{ &ssm.MaintenanceWindowTaskTargetArgs{ Key: pulumi.String("InstanceIds"), Values: pulumi.StringArray{ pulumi.Any(aws_instance.Example.Id), }, }, }, TaskInvocationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersArgs{ AutomationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersAutomationParametersArgs{ DocumentVersion: pulumi.String(fmt.Sprintf("%v%v", "$", "LATEST")), Parameters: ssm.MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArray{ &ssm.MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArgs{ Name: pulumi.String("InstanceId"), Values: pulumi.StringArray{ pulumi.Any(aws_instance.Example.Id), }, }, }, }, }, }) if err != nil { return err } return nil }) } ``` ### Run Command Tasks ```go package main import ( "github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.NewMaintenanceWindowTask(ctx, "example", &ssm.MaintenanceWindowTaskArgs{ MaxConcurrency: pulumi.String("2"), MaxErrors: pulumi.String("1"), Priority: pulumi.Int(1), TaskArn: pulumi.String("AWS-RunShellScript"), TaskType: pulumi.String("RUN_COMMAND"), WindowId: pulumi.Any(aws_ssm_maintenance_window.Example.Id), Targets: ssm.MaintenanceWindowTaskTargetArray{ &ssm.MaintenanceWindowTaskTargetArgs{ Key: pulumi.String("InstanceIds"), Values: pulumi.StringArray{ pulumi.Any(aws_instance.Example.Id), }, }, }, TaskInvocationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersArgs{ RunCommandParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersArgs{ OutputS3Bucket: pulumi.Any(aws_s3_bucket.Example.Bucket), OutputS3KeyPrefix: pulumi.String("output"), ServiceRoleArn: pulumi.Any(aws_iam_role.Example.Arn), TimeoutSeconds: pulumi.Int(600), NotificationConfig: &ssm.MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigArgs{ NotificationArn: pulumi.Any(aws_sns_topic.Example.Arn), NotificationEvents: pulumi.StringArray{ pulumi.String("All"), }, NotificationType: pulumi.String("Command"), }, Parameters: ssm.MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterArray{ &ssm.MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterArgs{ Name: pulumi.String("commands"), Values: pulumi.StringArray{ pulumi.String("date"), }, }, }, }, }, }) if err != nil { return err } return nil }) } ``` ### Step Function Tasks ```go package main import ( "github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.NewMaintenanceWindowTask(ctx, "example", &ssm.MaintenanceWindowTaskArgs{ MaxConcurrency: pulumi.String("2"), MaxErrors: pulumi.String("1"), Priority: pulumi.Int(1), TaskArn: pulumi.Any(aws_sfn_activity.Example.Id), TaskType: pulumi.String("STEP_FUNCTIONS"), WindowId: pulumi.Any(aws_ssm_maintenance_window.Example.Id), Targets: ssm.MaintenanceWindowTaskTargetArray{ &ssm.MaintenanceWindowTaskTargetArgs{ Key: pulumi.String("InstanceIds"), Values: pulumi.StringArray{ pulumi.Any(aws_instance.Example.Id), }, }, }, TaskInvocationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersArgs{ StepFunctionsParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersArgs{ Input: pulumi.String("{\"key1\":\"value1\"}"), Name: pulumi.String("example"), }, }, }) if err != nil { return err } return nil }) } ``` ## Import AWS Maintenance Window Task can be imported using the `window_id` and `window_task_id` separated by `/`.
The set of arguments for constructing a MaintenanceWindowTask resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides an SSM Parameter resource.
The set of arguments for constructing a Parameter resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides an SSM Patch Baseline resource > **NOTE on Patch Baselines:** The `approvedPatches` and `approvalRule` are both marked as optional fields, but the Patch Baseline requires that at least one of them is specified.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The set of arguments for constructing a PatchBaseline resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides an SSM Patch Group resource ## Example Usage ```go package main import ( "github.com/pulumi/pulumi-aws/sdk/v4/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { production, err := ssm.NewPatchBaseline(ctx, "production", &ssm.PatchBaselineArgs{ ApprovedPatches: pulumi.StringArray{ pulumi.String("KB123456"), }, }) if err != nil { return err } _, err = ssm.NewPatchGroup(ctx, "patchgroup", &ssm.PatchGroupArgs{ BaselineId: production.ID(), PatchGroup: pulumi.String("patch-group-name"), }) if err != nil { return err } return nil }) } ```.
The set of arguments for constructing a PatchGroup resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Provides a SSM resource data sync.
The set of arguments for constructing a ResourceDataSync resource.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# Interfaces

ActivationArrayInput is an input type that accepts ActivationArray and ActivationArrayOutput values.
No description provided by the author
ActivationMapInput is an input type that accepts ActivationMap and ActivationMapOutput values.
AssociationArrayInput is an input type that accepts AssociationArray and AssociationArrayOutput values.
No description provided by the author
AssociationMapInput is an input type that accepts AssociationMap and AssociationMapOutput values.
AssociationOutputLocationInput is an input type that accepts AssociationOutputLocationArgs and AssociationOutputLocationOutput values.
AssociationOutputLocationPtrInput is an input type that accepts AssociationOutputLocationArgs, AssociationOutputLocationPtr and AssociationOutputLocationPtrOutput values.
AssociationTargetArrayInput is an input type that accepts AssociationTargetArray and AssociationTargetArrayOutput values.
AssociationTargetInput is an input type that accepts AssociationTargetArgs and AssociationTargetOutput values.
DocumentArrayInput is an input type that accepts DocumentArray and DocumentArrayOutput values.
DocumentAttachmentsSourceArrayInput is an input type that accepts DocumentAttachmentsSourceArray and DocumentAttachmentsSourceArrayOutput values.
DocumentAttachmentsSourceInput is an input type that accepts DocumentAttachmentsSourceArgs and DocumentAttachmentsSourceOutput values.
No description provided by the author
DocumentMapInput is an input type that accepts DocumentMap and DocumentMapOutput values.
DocumentParameterArrayInput is an input type that accepts DocumentParameterArray and DocumentParameterArrayOutput values.
DocumentParameterInput is an input type that accepts DocumentParameterArgs and DocumentParameterOutput values.
MaintenanceWindowArrayInput is an input type that accepts MaintenanceWindowArray and MaintenanceWindowArrayOutput values.
No description provided by the author
MaintenanceWindowMapInput is an input type that accepts MaintenanceWindowMap and MaintenanceWindowMapOutput values.
MaintenanceWindowTargetArrayInput is an input type that accepts MaintenanceWindowTargetArray and MaintenanceWindowTargetArrayOutput values.
No description provided by the author
MaintenanceWindowTargetMapInput is an input type that accepts MaintenanceWindowTargetMap and MaintenanceWindowTargetMapOutput values.
MaintenanceWindowTargetTargetArrayInput is an input type that accepts MaintenanceWindowTargetTargetArray and MaintenanceWindowTargetTargetArrayOutput values.
MaintenanceWindowTargetTargetInput is an input type that accepts MaintenanceWindowTargetTargetArgs and MaintenanceWindowTargetTargetOutput values.
MaintenanceWindowTaskArrayInput is an input type that accepts MaintenanceWindowTaskArray and MaintenanceWindowTaskArrayOutput values.
No description provided by the author
MaintenanceWindowTaskMapInput is an input type that accepts MaintenanceWindowTaskMap and MaintenanceWindowTaskMapOutput values.
MaintenanceWindowTaskTargetArrayInput is an input type that accepts MaintenanceWindowTaskTargetArray and MaintenanceWindowTaskTargetArrayOutput values.
MaintenanceWindowTaskTargetInput is an input type that accepts MaintenanceWindowTaskTargetArgs and MaintenanceWindowTaskTargetOutput values.
MaintenanceWindowTaskTaskInvocationParametersAutomationParametersInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersAutomationParametersArgs and MaintenanceWindowTaskTaskInvocationParametersAutomationParametersOutput values.
MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArrayInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArray and MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArrayOutput values.
MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArgs and MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterOutput values.
MaintenanceWindowTaskTaskInvocationParametersAutomationParametersPtrInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersAutomationParametersArgs, MaintenanceWindowTaskTaskInvocationParametersAutomationParametersPtr and MaintenanceWindowTaskTaskInvocationParametersAutomationParametersPtrOutput values.
MaintenanceWindowTaskTaskInvocationParametersInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersArgs and MaintenanceWindowTaskTaskInvocationParametersOutput values.
MaintenanceWindowTaskTaskInvocationParametersLambdaParametersInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersLambdaParametersArgs and MaintenanceWindowTaskTaskInvocationParametersLambdaParametersOutput values.
MaintenanceWindowTaskTaskInvocationParametersLambdaParametersPtrInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersLambdaParametersArgs, MaintenanceWindowTaskTaskInvocationParametersLambdaParametersPtr and MaintenanceWindowTaskTaskInvocationParametersLambdaParametersPtrOutput values.
MaintenanceWindowTaskTaskInvocationParametersPtrInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersArgs, MaintenanceWindowTaskTaskInvocationParametersPtr and MaintenanceWindowTaskTaskInvocationParametersPtrOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersCloudwatchConfigInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersCloudwatchConfigArgs and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersCloudwatchConfigOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersCloudwatchConfigPtrInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersCloudwatchConfigArgs, MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersCloudwatchConfigPtr and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersCloudwatchConfigPtrOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersArgs and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigArgs and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigPtrInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigArgs, MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigPtr and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigPtrOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterArrayInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterArray and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterArrayOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterArgs and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersParameterOutput values.
MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersPtrInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersArgs, MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersPtr and MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersPtrOutput values.
MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersArgs and MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersOutput values.
MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersPtrInput is an input type that accepts MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersArgs, MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersPtr and MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersPtrOutput values.
ParameterArrayInput is an input type that accepts ParameterArray and ParameterArrayOutput values.
No description provided by the author
ParameterMapInput is an input type that accepts ParameterMap and ParameterMapOutput values.
ParameterTypeInput is an input type that accepts ParameterTypeArgs and ParameterTypeOutput values.
No description provided by the author
PatchBaselineApprovalRuleArrayInput is an input type that accepts PatchBaselineApprovalRuleArray and PatchBaselineApprovalRuleArrayOutput values.
PatchBaselineApprovalRuleInput is an input type that accepts PatchBaselineApprovalRuleArgs and PatchBaselineApprovalRuleOutput values.
PatchBaselineApprovalRulePatchFilterArrayInput is an input type that accepts PatchBaselineApprovalRulePatchFilterArray and PatchBaselineApprovalRulePatchFilterArrayOutput values.
PatchBaselineApprovalRulePatchFilterInput is an input type that accepts PatchBaselineApprovalRulePatchFilterArgs and PatchBaselineApprovalRulePatchFilterOutput values.
PatchBaselineArrayInput is an input type that accepts PatchBaselineArray and PatchBaselineArrayOutput values.
PatchBaselineGlobalFilterArrayInput is an input type that accepts PatchBaselineGlobalFilterArray and PatchBaselineGlobalFilterArrayOutput values.
PatchBaselineGlobalFilterInput is an input type that accepts PatchBaselineGlobalFilterArgs and PatchBaselineGlobalFilterOutput values.
No description provided by the author
PatchBaselineMapInput is an input type that accepts PatchBaselineMap and PatchBaselineMapOutput values.
PatchBaselineSourceArrayInput is an input type that accepts PatchBaselineSourceArray and PatchBaselineSourceArrayOutput values.
PatchBaselineSourceInput is an input type that accepts PatchBaselineSourceArgs and PatchBaselineSourceOutput values.
PatchGroupArrayInput is an input type that accepts PatchGroupArray and PatchGroupArrayOutput values.
No description provided by the author
PatchGroupMapInput is an input type that accepts PatchGroupMap and PatchGroupMapOutput values.
ResourceDataSyncArrayInput is an input type that accepts ResourceDataSyncArray and ResourceDataSyncArrayOutput values.
No description provided by the author
ResourceDataSyncMapInput is an input type that accepts ResourceDataSyncMap and ResourceDataSyncMapOutput values.
ResourceDataSyncS3DestinationInput is an input type that accepts ResourceDataSyncS3DestinationArgs and ResourceDataSyncS3DestinationOutput values.
ResourceDataSyncS3DestinationPtrInput is an input type that accepts ResourceDataSyncS3DestinationArgs, ResourceDataSyncS3DestinationPtr and ResourceDataSyncS3DestinationPtrOutput values.

# Type aliases

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author