aws.imagebuilder.getContainerRecipes
Use this data source to get the ARNs and names of Image Builder Container Recipes matching the specified criteria.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = Aws.ImageBuilder.GetContainerRecipes.Invoke(new()
{
Filters = new[]
{
new Aws.ImageBuilder.Inputs.GetContainerRecipesFilterInputArgs
{
Name = "platform",
Values = new[]
{
"Linux",
},
},
},
Owner = "Self",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/imagebuilder"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := imagebuilder.GetContainerRecipes(ctx, &imagebuilder.GetContainerRecipesArgs{
Filters: []imagebuilder.GetContainerRecipesFilter{
{
Name: "platform",
Values: []string{
"Linux",
},
},
},
Owner: pulumi.StringRef("Self"),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.imagebuilder.ImagebuilderFunctions;
import com.pulumi.aws.imagebuilder.inputs.GetContainerRecipesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = ImagebuilderFunctions.getContainerRecipes(GetContainerRecipesArgs.builder()
.filters(GetContainerRecipesFilterArgs.builder()
.name("platform")
.values("Linux")
.build())
.owner("Self")
.build());
}
}
import pulumi
import pulumi_aws as aws
example = aws.imagebuilder.get_container_recipes(filters=[aws.imagebuilder.GetContainerRecipesFilterArgs(
name="platform",
values=["Linux"],
)],
owner="Self")
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = aws.imagebuilder.getContainerRecipes({
filters: [{
name: "platform",
values: ["Linux"],
}],
owner: "Self",
});
variables:
example:
fn::invoke:
Function: aws:imagebuilder:getContainerRecipes
Arguments:
filters:
- name: platform
values:
- Linux
owner: Self
Using getContainerRecipes
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 getContainerRecipes(args: GetContainerRecipesArgs, opts?: InvokeOptions): Promise<GetContainerRecipesResult>
function getContainerRecipesOutput(args: GetContainerRecipesOutputArgs, opts?: InvokeOptions): Output<GetContainerRecipesResult>
def get_container_recipes(filters: Optional[Sequence[GetContainerRecipesFilter]] = None,
owner: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetContainerRecipesResult
def get_container_recipes_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerRecipesFilterArgs]]]] = None,
owner: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetContainerRecipesResult]
func GetContainerRecipes(ctx *Context, args *GetContainerRecipesArgs, opts ...InvokeOption) (*GetContainerRecipesResult, error)
func GetContainerRecipesOutput(ctx *Context, args *GetContainerRecipesOutputArgs, opts ...InvokeOption) GetContainerRecipesResultOutput
> Note: This function is named GetContainerRecipes
in the Go SDK.
public static class GetContainerRecipes
{
public static Task<GetContainerRecipesResult> InvokeAsync(GetContainerRecipesArgs args, InvokeOptions? opts = null)
public static Output<GetContainerRecipesResult> Invoke(GetContainerRecipesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetContainerRecipesResult> getContainerRecipes(GetContainerRecipesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: aws:imagebuilder/getContainerRecipes:getContainerRecipes
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Container Recipes Filter> Configuration block(s) for filtering. Detailed below.
- Owner string
Owner of the container recipes. Valid values are
Self
,Shared
andAmazon
. Defaults toSelf
.
- Filters
[]Get
Container Recipes Filter Configuration block(s) for filtering. Detailed below.
- Owner string
Owner of the container recipes. Valid values are
Self
,Shared
andAmazon
. Defaults toSelf
.
- filters
List<Get
Container Recipes Filter> Configuration block(s) for filtering. Detailed below.
- owner String
Owner of the container recipes. Valid values are
Self
,Shared
andAmazon
. Defaults toSelf
.
- filters
Get
Container Recipes Filter[] Configuration block(s) for filtering. Detailed below.
- owner string
Owner of the container recipes. Valid values are
Self
,Shared
andAmazon
. Defaults toSelf
.
- filters
Sequence[Get
Container Recipes Filter] Configuration block(s) for filtering. Detailed below.
- owner str
Owner of the container recipes. Valid values are
Self
,Shared
andAmazon
. Defaults toSelf
.
- filters List<Property Map>
Configuration block(s) for filtering. Detailed below.
- owner String
Owner of the container recipes. Valid values are
Self
,Shared
andAmazon
. Defaults toSelf
.
getContainerRecipes Result
The following output properties are available:
Supporting Types
GetContainerRecipesFilter
- Name string
Name of the filter field. Valid values can be found in the Image Builder ListContainerRecipes 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
Name of the filter field. Valid values can be found in the Image Builder ListContainerRecipes 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
Name of the filter field. Valid values can be found in the Image Builder ListContainerRecipes 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
Name of the filter field. Valid values can be found in the Image Builder ListContainerRecipes 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
Name of the filter field. Valid values can be found in the Image Builder ListContainerRecipes 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
Name of the filter field. Valid values can be found in the Image Builder ListContainerRecipes 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.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.