AWS Classic
getMaintenanceWindows
Use this data source to get the window IDs of SSM maintenance windows.
Example Usage
using Pulumi;
using Aws = Pulumi.Aws;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Aws.Ssm.GetMaintenanceWindows.InvokeAsync(new Aws.Ssm.GetMaintenanceWindowsArgs
{
Filters =
{
new Aws.Ssm.Inputs.GetMaintenanceWindowsFilterArgs
{
Name = "Enabled",
Values =
{
"true",
},
},
},
}));
}
}
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/ssm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := ssm.GetMaintenanceWindows(ctx, &ssm.GetMaintenanceWindowsArgs{
Filters: []ssm.GetMaintenanceWindowsFilter{
ssm.GetMaintenanceWindowsFilter{
Name: "Enabled",
Values: []string{
"true",
},
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = Output.of(SsmFunctions.getMaintenanceWindows(GetMaintenanceWindowsArgs.builder()
.filters(GetMaintenanceWindowsFilter.builder()
.name("Enabled")
.values("true")
.build())
.build()));
}
}
import pulumi
import pulumi_aws as aws
example = aws.ssm.get_maintenance_windows(filters=[aws.ssm.GetMaintenanceWindowsFilterArgs(
name="Enabled",
values=["true"],
)])
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = pulumi.output(aws.ssm.getMaintenanceWindows({
filters: [{
name: "Enabled",
values: ["true"],
}],
}));
variables:
example:
Fn::Invoke:
Function: aws:ssm:getMaintenanceWindows
Arguments:
filters:
- name: Enabled
values:
- true
Using getMaintenanceWindows
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getMaintenanceWindows(args: GetMaintenanceWindowsArgs, opts?: InvokeOptions): Promise<GetMaintenanceWindowsResult>
function getMaintenanceWindowsOutput(args: GetMaintenanceWindowsOutputArgs, opts?: InvokeOptions): Output<GetMaintenanceWindowsResult>
def get_maintenance_windows(filters: Optional[Sequence[GetMaintenanceWindowsFilter]] = None,
opts: Optional[InvokeOptions] = None) -> GetMaintenanceWindowsResult
def get_maintenance_windows_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetMaintenanceWindowsFilterArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetMaintenanceWindowsResult]
func GetMaintenanceWindows(ctx *Context, args *GetMaintenanceWindowsArgs, opts ...InvokeOption) (*GetMaintenanceWindowsResult, error)
func GetMaintenanceWindowsOutput(ctx *Context, args *GetMaintenanceWindowsOutputArgs, opts ...InvokeOption) GetMaintenanceWindowsResultOutput
> Note: This function is named GetMaintenanceWindows
in the Go SDK.
public static class GetMaintenanceWindows
{
public static Task<GetMaintenanceWindowsResult> InvokeAsync(GetMaintenanceWindowsArgs args, InvokeOptions? opts = null)
public static Output<GetMaintenanceWindowsResult> Invoke(GetMaintenanceWindowsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetMaintenanceWindowsResult> getMaintenanceWindows(GetMaintenanceWindowsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: aws:ssm/getMaintenanceWindows:getMaintenanceWindows
Arguments:
# Arguments dictionary
The following arguments are supported:
- Filters
List<Pulumi.
Aws. Ssm. Inputs. Get Maintenance Windows Filter> Configuration block(s) for filtering. Detailed below.
- Filters
[]Get
Maintenance Windows Filter Configuration block(s) for filtering. Detailed below.
- filters
List
Maintenance Windows Filter> Configuration block(s) for filtering. Detailed below.
- filters
Get
Maintenance Windows Filter[] Configuration block(s) for filtering. Detailed below.
- filters
Sequence[Get
Maintenance Windows Filter] Configuration block(s) for filtering. Detailed below.
getMaintenanceWindows Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
List of window IDs of the matched SSM maintenance windows.
- Filters
List<Pulumi.
Aws. Ssm. Outputs. Get Maintenance Windows Filter>
- Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
List of window IDs of the matched SSM maintenance windows.
- Filters
[]Get
Maintenance Windows Filter
- id String
The provider-assigned unique ID for this managed resource.
- ids
List
List of window IDs of the matched SSM maintenance windows.
- filters
List
Maintenance Windows Filter>
- id string
The provider-assigned unique ID for this managed resource.
- ids string[]
List of window IDs of the matched SSM maintenance windows.
- filters
Get
Maintenance Windows Filter[]
- id str
The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
List of window IDs of the matched SSM maintenance windows.
- filters
Sequence[Get
Maintenance Windows Filter]
Supporting Types
GetMaintenanceWindowsFilter
- Name string
The name of the filter field. Valid values can be found in the SSM DescribeMaintenanceWindows API Reference.
- Values List<string>
Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- Name string
The name of the filter field. Valid values can be found in the SSM DescribeMaintenanceWindows API Reference.
- Values []string
Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name String
The name of the filter field. Valid values can be found in the SSM DescribeMaintenanceWindows API Reference.
- values
List
Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name string
The name of the filter field. Valid values can be found in the SSM DescribeMaintenanceWindows API Reference.
- values string[]
Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name str
The name of the filter field. Valid values can be found in the SSM DescribeMaintenanceWindows API Reference.
- values Sequence[str]
Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
- name String
The name of the filter field. Valid values can be found in the SSM DescribeMaintenanceWindows API Reference.
- values
List
Set of values that are accepted for the given filter field. Results will be selected if any given value matches.
Package Details
- Repository
- https://github.com/pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.