# Functions
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
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).
GetContactsRotation gets an existing ContactsRotation resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
GetDefaultPatchBaseline gets an existing DefaultPatchBaseline 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).
Use this data source to get the instance IDs of SSM managed instances.
No description provided by the author
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).
Use this data source to get the window IDs of SSM maintenance windows.
No description provided by the author
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).
Data source for retrieving AWS SSM (Systems Manager) Patch Baselines.
No description provided by the author
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).
GetQuicksetupConfigurationManager gets an existing QuicksetupConfigurationManager 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).
GetServiceSetting gets an existing ServiceSetting resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
## Example Usage
### Basic Usage
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.LookupContactsRotation(ctx, &ssm.LookupContactsRotationArgs{ Arn: "arn:aws:ssm-contacts:us-east-1:012345678910:rotation/example", }, nil) if err != nil { return err } return nil }) }
```.
No description provided by the author
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.
NewContactsRotation registers a new resource with the given unique name, arguments, and options.
NewDefaultPatchBaseline 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.
NewQuicksetupConfigurationManager 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.
NewServiceSetting registers a new resource with the given unique name, arguments, and options.
No description provided by the author
No description provided by the author
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
## Example Usage
### Basic Usage
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.NewContactsRotation(ctx, "example", &ssm.ContactsRotationArgs{ ContactIds: pulumi.StringArray{ exampleAwsSsmcontactsContact.Arn, }, Name: pulumi.String("rotation"), Recurrence: &ssm.ContactsRotationRecurrenceArgs{ NumberOfOnCalls: pulumi.Int(1), RecurrenceMultiplier: pulumi.Int(1), DailySettings: ssm.ContactsRotationRecurrenceDailySettingArray{ &ssm.ContactsRotationRecurrenceDailySettingArgs{ HourOfDay: pulumi.Int(9), MinuteOfHour: pulumi.Int(0), }, }, }, TimeZoneId: pulumi.String("Australia/Sydney"), }, pulumi.DependsOn([]pulumi.Resource{ exampleAwsSsmincidentsReplicationSet, })) if err != nil { return err } return nil }) }
```
### Usage with Weekly Settings and Shift Coverages Fields
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.NewContactsRotation(ctx, "example", &ssm.ContactsRotationArgs{ ContactIds: pulumi.StringArray{ exampleAwsSsmcontactsContact.Arn, }, Name: pulumi.String("rotation"), Recurrence: &ssm.ContactsRotationRecurrenceArgs{ NumberOfOnCalls: pulumi.Int(1), RecurrenceMultiplier: pulumi.Int(1), WeeklySettings: ssm.ContactsRotationRecurrenceWeeklySettingArray{ &ssm.ContactsRotationRecurrenceWeeklySettingArgs{ DayOfWeek: pulumi.String("WED"), HandOffTime: &ssm.ContactsRotationRecurrenceWeeklySettingHandOffTimeArgs{ HourOfDay: pulumi.Int(4), MinuteOfHour: pulumi.Int(25), }, }, &ssm.ContactsRotationRecurrenceWeeklySettingArgs{ DayOfWeek: pulumi.String("FRI"), HandOffTime: &ssm.ContactsRotationRecurrenceWeeklySettingHandOffTimeArgs{ HourOfDay: pulumi.Int(15), MinuteOfHour: pulumi.Int(57), }, }, }, ShiftCoverages: ssm.ContactsRotationRecurrenceShiftCoverageArray{ &ssm.ContactsRotationRecurrenceShiftCoverageArgs{ MapBlockKey: pulumi.String("MON"), CoverageTimes: ssm.ContactsRotationRecurrenceShiftCoverageCoverageTimeArray{ &ssm.ContactsRotationRecurrenceShiftCoverageCoverageTimeArgs{ Start: &ssm.ContactsRotationRecurrenceShiftCoverageCoverageTimeStartArgs{ HourOfDay: pulumi.Int(1), MinuteOfHour: pulumi.Int(0), }, End: &ssm.ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs{ HourOfDay: pulumi.Int(23), MinuteOfHour: pulumi.Int(0), }, }, }, }, }, }, StartTime: pulumi.String("2023-07-20T02:21:49+00:00"), TimeZoneId: pulumi.String("Australia/Sydney"), Tags: pulumi.StringMap{ "key1": pulumi.String("tag1"), "key2": pulumi.String("tag2"), }, }, pulumi.DependsOn([]pulumi.Resource{ exampleAwsSsmincidentsReplicationSet, })) if err != nil { return err } return nil }) }
```
### Usage with Monthly Settings Fields
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { _, err := ssm.NewContactsRotation(ctx, "example", &ssm.ContactsRotationArgs{ ContactIds: pulumi.StringArray{ exampleAwsSsmcontactsContact.Arn, }, Name: pulumi.String("rotation"), Recurrence: &ssm.ContactsRotationRecurrenceArgs{ NumberOfOnCalls: pulumi.Int(1), RecurrenceMultiplier: pulumi.Int(1), MonthlySettings: ssm.ContactsRotationRecurrenceMonthlySettingArray{ &ssm.ContactsRotationRecurrenceMonthlySettingArgs{ DayOfMonth: pulumi.Int(20), HandOffTime: &ssm.ContactsRotationRecurrenceMonthlySettingHandOffTimeArgs{ HourOfDay: pulumi.Int(8), MinuteOfHour: pulumi.Int(0), }, }, &ssm.ContactsRotationRecurrenceMonthlySettingArgs{ DayOfMonth: pulumi.Int(13), HandOffTime: &ssm.ContactsRotationRecurrenceMonthlySettingHandOffTimeArgs{ HourOfDay: pulumi.Int(12), MinuteOfHour: pulumi.Int(34), }, }, }, }, TimeZoneId: pulumi.String("Australia/Sydney"), }, pulumi.DependsOn([]pulumi.Resource{ exampleAwsSsmincidentsReplicationSet, })) if err != nil { return err } return nil }) }
```
## Import
Using `pulumi import`, import CodeGuru Profiler Profiling Group using the `arn`.
The set of arguments for constructing a ContactsRotation 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
Resource for registering an AWS Systems Manager Default Patch Baseline.
The set of arguments for constructing a DefaultPatchBaseline 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 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
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
A collection of arguments for invoking getInstances.
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 getInstances.
A collection of values returned by getInstances.
A collection of values returned by getInstances.
A collection of arguments for invoking getMaintenanceWindows.
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 getMaintenanceWindows.
A collection of values returned by getMaintenanceWindows.
A collection of values returned by getMaintenanceWindows.
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.
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 getPatchBaselines.
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 getPatchBaselines.
A collection of values returned by getPatchBaselines.
A collection of values returned by getPatchBaselines.
A collection of arguments for invoking getContactsRotation.
A collection of arguments for invoking getContactsRotation.
A collection of values returned by getContactsRotation.
A collection of values returned by getContactsRotation.
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/v6/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{ Name: pulumi.String("maintenance-window-application"), Schedule: pulumi.String("cron(0 16 ? * TUE *)"), Duration: pulumi.Int(3), Cutoff: pulumi.Int(1), }) if err != nil { return err } return nil }) }
```
## Import
Using `pulumi import`, import SSM Maintenance Windows using the maintenance window `id`.
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/v6/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{ Name: pulumi.String("maintenance-window-webapp"), 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(), Name: pulumi.String("maintenance-window-target"), 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/v6/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{ Name: pulumi.String("maintenance-window-webapp"), 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(), Name: pulumi.String("maintenance-window-target"), 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
Using `pulumi import`, import SSM Maintenance Window targets using `WINDOW_ID/WINDOW_TARGET_ID`.
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 (
"github.com/pulumi/pulumi-aws/sdk/v6/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(exampleAwsSsmMaintenanceWindow.Id), Targets: ssm.MaintenanceWindowTaskTargetArray{ &ssm.MaintenanceWindowTaskTargetArgs{ Key: pulumi.String("InstanceIds"), Values: pulumi.StringArray{ exampleAwsInstance.Id, }, }, }, TaskInvocationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersArgs{ AutomationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersAutomationParametersArgs{ DocumentVersion: pulumi.String("$LATEST"), Parameters: ssm.MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArray{ &ssm.MaintenanceWindowTaskTaskInvocationParametersAutomationParametersParameterArgs{ Name: pulumi.String("InstanceId"), Values: pulumi.StringArray{ exampleAwsInstance.Id, }, }, }, }, }, }) if err != nil { return err } return nil }) }
```
### Lambda Tasks
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssm" "github.com/pulumi/pulumi-std/sdk/go/std" "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() { pulumi.Run(func(ctx *pulumi.Context) error { invokeBase64encode, err := std.Base64encode(ctx, &std.Base64encodeArgs{ Input: "{\"key1\":\"value1\"}", }, nil) if err != nil { return err } _, err = ssm.NewMaintenanceWindowTask(ctx, "example", &ssm.MaintenanceWindowTaskArgs{ MaxConcurrency: pulumi.String("2"), MaxErrors: pulumi.String("1"), Priority: pulumi.Int(1), TaskArn: pulumi.Any(exampleAwsLambdaFunction.Arn), TaskType: pulumi.String("LAMBDA"), WindowId: pulumi.Any(exampleAwsSsmMaintenanceWindow.Id), Targets: ssm.MaintenanceWindowTaskTargetArray{ &ssm.MaintenanceWindowTaskTargetArgs{ Key: pulumi.String("InstanceIds"), Values: pulumi.StringArray{ exampleAwsInstance.Id, }, }, }, TaskInvocationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersArgs{ LambdaParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersLambdaParametersArgs{ ClientContext: pulumi.String(invokeBase64encode.Result), Payload: pulumi.String("{\"key1\":\"value1\"}"), }, }, }) if err != nil { return err } return nil }) }
```
### Run Command Tasks
```go package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/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(exampleAwsSsmMaintenanceWindow.Id), Targets: ssm.MaintenanceWindowTaskTargetArray{ &ssm.MaintenanceWindowTaskTargetArgs{ Key: pulumi.String("InstanceIds"), Values: pulumi.StringArray{ exampleAwsInstance.Id, }, }, }, TaskInvocationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersArgs{ RunCommandParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersArgs{ OutputS3Bucket: pulumi.Any(exampleAwsS3Bucket.Id), OutputS3KeyPrefix: pulumi.String("output"), ServiceRoleArn: pulumi.Any(exampleAwsIamRole.Arn), TimeoutSeconds: pulumi.Int(600), NotificationConfig: &ssm.MaintenanceWindowTaskTaskInvocationParametersRunCommandParametersNotificationConfigArgs{ NotificationArn: pulumi.Any(exampleAwsSnsTopic.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/v6/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(exampleAwsSfnActivity.Id), TaskType: pulumi.String("STEP_FUNCTIONS"), WindowId: pulumi.Any(exampleAwsSsmMaintenanceWindow.Id), Targets: ssm.MaintenanceWindowTaskTargetArray{ &ssm.MaintenanceWindowTaskTargetArgs{ Key: pulumi.String("InstanceIds"), Values: pulumi.StringArray{ exampleAwsInstance.Id, }, }, }, TaskInvocationParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersArgs{ StepFunctionsParameters: &ssm.MaintenanceWindowTaskTaskInvocationParametersStepFunctionsParametersArgs{ Input: pulumi.String("{\"key1\":\"value1\"}"), Name: pulumi.String("example"), }, }, }) if err != nil { return err } return nil }) }
```
## Import
Using `pulumi import`, import AWS Maintenance Window Task 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.
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/v6/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{ Name: pulumi.String("patch-baseline"), 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
Resource for managing an AWS SSM Quick Setup Configuration Manager.
The set of arguments for constructing a QuicksetupConfigurationManager 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
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
This setting defines how a user interacts with or uses a service or a feature of a service.
The set of arguments for constructing a ServiceSetting 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
# 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.
ContactsRotationArrayInput is an input type that accepts ContactsRotationArray and ContactsRotationArrayOutput values.
No description provided by the author
ContactsRotationMapInput is an input type that accepts ContactsRotationMap and ContactsRotationMapOutput values.
ContactsRotationRecurrenceDailySettingArrayInput is an input type that accepts ContactsRotationRecurrenceDailySettingArray and ContactsRotationRecurrenceDailySettingArrayOutput values.
ContactsRotationRecurrenceDailySettingInput is an input type that accepts ContactsRotationRecurrenceDailySettingArgs and ContactsRotationRecurrenceDailySettingOutput values.
ContactsRotationRecurrenceInput is an input type that accepts ContactsRotationRecurrenceArgs and ContactsRotationRecurrenceOutput values.
ContactsRotationRecurrenceMonthlySettingArrayInput is an input type that accepts ContactsRotationRecurrenceMonthlySettingArray and ContactsRotationRecurrenceMonthlySettingArrayOutput values.
ContactsRotationRecurrenceMonthlySettingHandOffTimeInput is an input type that accepts ContactsRotationRecurrenceMonthlySettingHandOffTimeArgs and ContactsRotationRecurrenceMonthlySettingHandOffTimeOutput values.
ContactsRotationRecurrenceMonthlySettingHandOffTimePtrInput is an input type that accepts ContactsRotationRecurrenceMonthlySettingHandOffTimeArgs, ContactsRotationRecurrenceMonthlySettingHandOffTimePtr and ContactsRotationRecurrenceMonthlySettingHandOffTimePtrOutput values.
ContactsRotationRecurrenceMonthlySettingInput is an input type that accepts ContactsRotationRecurrenceMonthlySettingArgs and ContactsRotationRecurrenceMonthlySettingOutput values.
ContactsRotationRecurrencePtrInput is an input type that accepts ContactsRotationRecurrenceArgs, ContactsRotationRecurrencePtr and ContactsRotationRecurrencePtrOutput values.
ContactsRotationRecurrenceShiftCoverageArrayInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageArray and ContactsRotationRecurrenceShiftCoverageArrayOutput values.
ContactsRotationRecurrenceShiftCoverageCoverageTimeArrayInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageCoverageTimeArray and ContactsRotationRecurrenceShiftCoverageCoverageTimeArrayOutput values.
ContactsRotationRecurrenceShiftCoverageCoverageTimeEndInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs and ContactsRotationRecurrenceShiftCoverageCoverageTimeEndOutput values.
ContactsRotationRecurrenceShiftCoverageCoverageTimeEndPtrInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs, ContactsRotationRecurrenceShiftCoverageCoverageTimeEndPtr and ContactsRotationRecurrenceShiftCoverageCoverageTimeEndPtrOutput values.
ContactsRotationRecurrenceShiftCoverageCoverageTimeInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageCoverageTimeArgs and ContactsRotationRecurrenceShiftCoverageCoverageTimeOutput values.
ContactsRotationRecurrenceShiftCoverageCoverageTimeStartInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageCoverageTimeStartArgs and ContactsRotationRecurrenceShiftCoverageCoverageTimeStartOutput values.
ContactsRotationRecurrenceShiftCoverageCoverageTimeStartPtrInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageCoverageTimeStartArgs, ContactsRotationRecurrenceShiftCoverageCoverageTimeStartPtr and ContactsRotationRecurrenceShiftCoverageCoverageTimeStartPtrOutput values.
ContactsRotationRecurrenceShiftCoverageInput is an input type that accepts ContactsRotationRecurrenceShiftCoverageArgs and ContactsRotationRecurrenceShiftCoverageOutput values.
ContactsRotationRecurrenceWeeklySettingArrayInput is an input type that accepts ContactsRotationRecurrenceWeeklySettingArray and ContactsRotationRecurrenceWeeklySettingArrayOutput values.
ContactsRotationRecurrenceWeeklySettingHandOffTimeInput is an input type that accepts ContactsRotationRecurrenceWeeklySettingHandOffTimeArgs and ContactsRotationRecurrenceWeeklySettingHandOffTimeOutput values.
ContactsRotationRecurrenceWeeklySettingHandOffTimePtrInput is an input type that accepts ContactsRotationRecurrenceWeeklySettingHandOffTimeArgs, ContactsRotationRecurrenceWeeklySettingHandOffTimePtr and ContactsRotationRecurrenceWeeklySettingHandOffTimePtrOutput values.
ContactsRotationRecurrenceWeeklySettingInput is an input type that accepts ContactsRotationRecurrenceWeeklySettingArgs and ContactsRotationRecurrenceWeeklySettingOutput values.
DefaultPatchBaselineArrayInput is an input type that accepts DefaultPatchBaselineArray and DefaultPatchBaselineArrayOutput values.
No description provided by the author
DefaultPatchBaselineMapInput is an input type that accepts DefaultPatchBaselineMap and DefaultPatchBaselineMapOutput 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.
GetContactsRotationRecurrenceArrayInput is an input type that accepts GetContactsRotationRecurrenceArray and GetContactsRotationRecurrenceArrayOutput values.
GetContactsRotationRecurrenceDailySettingArrayInput is an input type that accepts GetContactsRotationRecurrenceDailySettingArray and GetContactsRotationRecurrenceDailySettingArrayOutput values.
GetContactsRotationRecurrenceDailySettingInput is an input type that accepts GetContactsRotationRecurrenceDailySettingArgs and GetContactsRotationRecurrenceDailySettingOutput values.
GetContactsRotationRecurrenceInput is an input type that accepts GetContactsRotationRecurrenceArgs and GetContactsRotationRecurrenceOutput values.
GetContactsRotationRecurrenceMonthlySettingArrayInput is an input type that accepts GetContactsRotationRecurrenceMonthlySettingArray and GetContactsRotationRecurrenceMonthlySettingArrayOutput values.
GetContactsRotationRecurrenceMonthlySettingHandOffTimeArrayInput is an input type that accepts GetContactsRotationRecurrenceMonthlySettingHandOffTimeArray and GetContactsRotationRecurrenceMonthlySettingHandOffTimeArrayOutput values.
GetContactsRotationRecurrenceMonthlySettingHandOffTimeInput is an input type that accepts GetContactsRotationRecurrenceMonthlySettingHandOffTimeArgs and GetContactsRotationRecurrenceMonthlySettingHandOffTimeOutput values.
GetContactsRotationRecurrenceMonthlySettingInput is an input type that accepts GetContactsRotationRecurrenceMonthlySettingArgs and GetContactsRotationRecurrenceMonthlySettingOutput values.
GetContactsRotationRecurrenceShiftCoverageArrayInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageArray and GetContactsRotationRecurrenceShiftCoverageArrayOutput values.
GetContactsRotationRecurrenceShiftCoverageCoverageTimeArrayInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageCoverageTimeArray and GetContactsRotationRecurrenceShiftCoverageCoverageTimeArrayOutput values.
GetContactsRotationRecurrenceShiftCoverageCoverageTimeEndArrayInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageCoverageTimeEndArray and GetContactsRotationRecurrenceShiftCoverageCoverageTimeEndArrayOutput values.
GetContactsRotationRecurrenceShiftCoverageCoverageTimeEndInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageCoverageTimeEndArgs and GetContactsRotationRecurrenceShiftCoverageCoverageTimeEndOutput values.
GetContactsRotationRecurrenceShiftCoverageCoverageTimeInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageCoverageTimeArgs and GetContactsRotationRecurrenceShiftCoverageCoverageTimeOutput values.
GetContactsRotationRecurrenceShiftCoverageCoverageTimeStartArrayInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageCoverageTimeStartArray and GetContactsRotationRecurrenceShiftCoverageCoverageTimeStartArrayOutput values.
GetContactsRotationRecurrenceShiftCoverageCoverageTimeStartInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageCoverageTimeStartArgs and GetContactsRotationRecurrenceShiftCoverageCoverageTimeStartOutput values.
GetContactsRotationRecurrenceShiftCoverageInput is an input type that accepts GetContactsRotationRecurrenceShiftCoverageArgs and GetContactsRotationRecurrenceShiftCoverageOutput values.
GetContactsRotationRecurrenceWeeklySettingArrayInput is an input type that accepts GetContactsRotationRecurrenceWeeklySettingArray and GetContactsRotationRecurrenceWeeklySettingArrayOutput values.
GetContactsRotationRecurrenceWeeklySettingHandOffTimeArrayInput is an input type that accepts GetContactsRotationRecurrenceWeeklySettingHandOffTimeArray and GetContactsRotationRecurrenceWeeklySettingHandOffTimeArrayOutput values.
GetContactsRotationRecurrenceWeeklySettingHandOffTimeInput is an input type that accepts GetContactsRotationRecurrenceWeeklySettingHandOffTimeArgs and GetContactsRotationRecurrenceWeeklySettingHandOffTimeOutput values.
GetContactsRotationRecurrenceWeeklySettingInput is an input type that accepts GetContactsRotationRecurrenceWeeklySettingArgs and GetContactsRotationRecurrenceWeeklySettingOutput values.
GetInstancesFilterArrayInput is an input type that accepts GetInstancesFilterArray and GetInstancesFilterArrayOutput values.
GetInstancesFilterInput is an input type that accepts GetInstancesFilterArgs and GetInstancesFilterOutput values.
GetMaintenanceWindowsFilterArrayInput is an input type that accepts GetMaintenanceWindowsFilterArray and GetMaintenanceWindowsFilterArrayOutput values.
GetMaintenanceWindowsFilterInput is an input type that accepts GetMaintenanceWindowsFilterArgs and GetMaintenanceWindowsFilterOutput values.
GetPatchBaselineApprovalRuleArrayInput is an input type that accepts GetPatchBaselineApprovalRuleArray and GetPatchBaselineApprovalRuleArrayOutput values.
GetPatchBaselineApprovalRuleInput is an input type that accepts GetPatchBaselineApprovalRuleArgs and GetPatchBaselineApprovalRuleOutput values.
GetPatchBaselineApprovalRulePatchFilterArrayInput is an input type that accepts GetPatchBaselineApprovalRulePatchFilterArray and GetPatchBaselineApprovalRulePatchFilterArrayOutput values.
GetPatchBaselineApprovalRulePatchFilterInput is an input type that accepts GetPatchBaselineApprovalRulePatchFilterArgs and GetPatchBaselineApprovalRulePatchFilterOutput values.
GetPatchBaselineGlobalFilterArrayInput is an input type that accepts GetPatchBaselineGlobalFilterArray and GetPatchBaselineGlobalFilterArrayOutput values.
GetPatchBaselineGlobalFilterInput is an input type that accepts GetPatchBaselineGlobalFilterArgs and GetPatchBaselineGlobalFilterOutput values.
GetPatchBaselinesBaselineIdentityArrayInput is an input type that accepts GetPatchBaselinesBaselineIdentityArray and GetPatchBaselinesBaselineIdentityArrayOutput values.
GetPatchBaselinesBaselineIdentityInput is an input type that accepts GetPatchBaselinesBaselineIdentityArgs and GetPatchBaselinesBaselineIdentityOutput values.
GetPatchBaselinesFilterArrayInput is an input type that accepts GetPatchBaselinesFilterArray and GetPatchBaselinesFilterArrayOutput values.
GetPatchBaselinesFilterInput is an input type that accepts GetPatchBaselinesFilterArgs and GetPatchBaselinesFilterOutput values.
GetPatchBaselineSourceArrayInput is an input type that accepts GetPatchBaselineSourceArray and GetPatchBaselineSourceArrayOutput values.
GetPatchBaselineSourceInput is an input type that accepts GetPatchBaselineSourceArgs and GetPatchBaselineSourceOutput 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 values of the ParameterType enum A concrete instance of `ParameterTypeInput` can be one of the following:
ParameterTypeString ParameterTypeStringList ParameterTypeSecureString.
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.
QuicksetupConfigurationManagerArrayInput is an input type that accepts QuicksetupConfigurationManagerArray and QuicksetupConfigurationManagerArrayOutput values.
QuicksetupConfigurationManagerConfigurationDefinitionInput is an input type that accepts QuicksetupConfigurationManagerConfigurationDefinitionArgs and QuicksetupConfigurationManagerConfigurationDefinitionOutput values.
QuicksetupConfigurationManagerConfigurationDefinitionPtrInput is an input type that accepts QuicksetupConfigurationManagerConfigurationDefinitionArgs, QuicksetupConfigurationManagerConfigurationDefinitionPtr and QuicksetupConfigurationManagerConfigurationDefinitionPtrOutput values.
No description provided by the author
QuicksetupConfigurationManagerMapInput is an input type that accepts QuicksetupConfigurationManagerMap and QuicksetupConfigurationManagerMapOutput values.
QuicksetupConfigurationManagerStatusSummaryArrayInput is an input type that accepts QuicksetupConfigurationManagerStatusSummaryArray and QuicksetupConfigurationManagerStatusSummaryArrayOutput values.
QuicksetupConfigurationManagerStatusSummaryInput is an input type that accepts QuicksetupConfigurationManagerStatusSummaryArgs and QuicksetupConfigurationManagerStatusSummaryOutput values.
QuicksetupConfigurationManagerTimeoutsInput is an input type that accepts QuicksetupConfigurationManagerTimeoutsArgs and QuicksetupConfigurationManagerTimeoutsOutput values.
QuicksetupConfigurationManagerTimeoutsPtrInput is an input type that accepts QuicksetupConfigurationManagerTimeoutsArgs, QuicksetupConfigurationManagerTimeoutsPtr and QuicksetupConfigurationManagerTimeoutsPtrOutput 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.
ServiceSettingArrayInput is an input type that accepts ServiceSettingArray and ServiceSettingArrayOutput values.
No description provided by the author
ServiceSettingMapInput is an input type that accepts ServiceSettingMap and ServiceSettingMapOutput 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
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