1. Packages
  2. AWS Classic
  3. API Docs
  4. appconfig
  5. Extension

Try AWS Native preview for resources not in the classic version.

AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi

aws.appconfig.Extension

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi

    Provides an AppConfig Extension resource.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var testTopic = new Aws.Sns.Topic("testTopic");
    
        var testPolicyDocument = Aws.Iam.GetPolicyDocument.Invoke(new()
        {
            Statements = new[]
            {
                new Aws.Iam.Inputs.GetPolicyDocumentStatementInputArgs
                {
                    Actions = new[]
                    {
                        "sts:AssumeRole",
                    },
                    Principals = new[]
                    {
                        new Aws.Iam.Inputs.GetPolicyDocumentStatementPrincipalInputArgs
                        {
                            Type = "Service",
                            Identifiers = new[]
                            {
                                "appconfig.amazonaws.com",
                            },
                        },
                    },
                },
            },
        });
    
        var testRole = new Aws.Iam.Role("testRole", new()
        {
            AssumeRolePolicy = testPolicyDocument.Apply(getPolicyDocumentResult => getPolicyDocumentResult.Json),
        });
    
        var testExtension = new Aws.AppConfig.Extension("testExtension", new()
        {
            Description = "test description",
            ActionPoints = new[]
            {
                new Aws.AppConfig.Inputs.ExtensionActionPointArgs
                {
                    Point = "ON_DEPLOYMENT_COMPLETE",
                    Actions = new[]
                    {
                        new Aws.AppConfig.Inputs.ExtensionActionPointActionArgs
                        {
                            Name = "test",
                            RoleArn = testRole.Arn,
                            Uri = testTopic.Arn,
                        },
                    },
                },
            },
            Tags = 
            {
                { "Type", "AppConfig Extension" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/appconfig"
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/iam"
    	"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/sns"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		testTopic, err := sns.NewTopic(ctx, "testTopic", nil)
    		if err != nil {
    			return err
    		}
    		testPolicyDocument, err := iam.GetPolicyDocument(ctx, &iam.GetPolicyDocumentArgs{
    			Statements: []iam.GetPolicyDocumentStatement{
    				{
    					Actions: []string{
    						"sts:AssumeRole",
    					},
    					Principals: []iam.GetPolicyDocumentStatementPrincipal{
    						{
    							Type: "Service",
    							Identifiers: []string{
    								"appconfig.amazonaws.com",
    							},
    						},
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		testRole, err := iam.NewRole(ctx, "testRole", &iam.RoleArgs{
    			AssumeRolePolicy: *pulumi.String(testPolicyDocument.Json),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = appconfig.NewExtension(ctx, "testExtension", &appconfig.ExtensionArgs{
    			Description: pulumi.String("test description"),
    			ActionPoints: appconfig.ExtensionActionPointArray{
    				&appconfig.ExtensionActionPointArgs{
    					Point: pulumi.String("ON_DEPLOYMENT_COMPLETE"),
    					Actions: appconfig.ExtensionActionPointActionArray{
    						&appconfig.ExtensionActionPointActionArgs{
    							Name:    pulumi.String("test"),
    							RoleArn: testRole.Arn,
    							Uri:     testTopic.Arn,
    						},
    					},
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Type": pulumi.String("AppConfig Extension"),
    			},
    		})
    		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.sns.Topic;
    import com.pulumi.aws.iam.IamFunctions;
    import com.pulumi.aws.iam.inputs.GetPolicyDocumentArgs;
    import com.pulumi.aws.iam.Role;
    import com.pulumi.aws.iam.RoleArgs;
    import com.pulumi.aws.appconfig.Extension;
    import com.pulumi.aws.appconfig.ExtensionArgs;
    import com.pulumi.aws.appconfig.inputs.ExtensionActionPointArgs;
    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) {
            var testTopic = new Topic("testTopic");
    
            final var testPolicyDocument = IamFunctions.getPolicyDocument(GetPolicyDocumentArgs.builder()
                .statements(GetPolicyDocumentStatementArgs.builder()
                    .actions("sts:AssumeRole")
                    .principals(GetPolicyDocumentStatementPrincipalArgs.builder()
                        .type("Service")
                        .identifiers("appconfig.amazonaws.com")
                        .build())
                    .build())
                .build());
    
            var testRole = new Role("testRole", RoleArgs.builder()        
                .assumeRolePolicy(testPolicyDocument.applyValue(getPolicyDocumentResult -> getPolicyDocumentResult.json()))
                .build());
    
            var testExtension = new Extension("testExtension", ExtensionArgs.builder()        
                .description("test description")
                .actionPoints(ExtensionActionPointArgs.builder()
                    .point("ON_DEPLOYMENT_COMPLETE")
                    .actions(ExtensionActionPointActionArgs.builder()
                        .name("test")
                        .roleArn(testRole.arn())
                        .uri(testTopic.arn())
                        .build())
                    .build())
                .tags(Map.of("Type", "AppConfig Extension"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    test_topic = aws.sns.Topic("testTopic")
    test_policy_document = aws.iam.get_policy_document(statements=[aws.iam.GetPolicyDocumentStatementArgs(
        actions=["sts:AssumeRole"],
        principals=[aws.iam.GetPolicyDocumentStatementPrincipalArgs(
            type="Service",
            identifiers=["appconfig.amazonaws.com"],
        )],
    )])
    test_role = aws.iam.Role("testRole", assume_role_policy=test_policy_document.json)
    test_extension = aws.appconfig.Extension("testExtension",
        description="test description",
        action_points=[aws.appconfig.ExtensionActionPointArgs(
            point="ON_DEPLOYMENT_COMPLETE",
            actions=[aws.appconfig.ExtensionActionPointActionArgs(
                name="test",
                role_arn=test_role.arn,
                uri=test_topic.arn,
            )],
        )],
        tags={
            "Type": "AppConfig Extension",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const testTopic = new aws.sns.Topic("testTopic", {});
    const testPolicyDocument = aws.iam.getPolicyDocument({
        statements: [{
            actions: ["sts:AssumeRole"],
            principals: [{
                type: "Service",
                identifiers: ["appconfig.amazonaws.com"],
            }],
        }],
    });
    const testRole = new aws.iam.Role("testRole", {assumeRolePolicy: testPolicyDocument.then(testPolicyDocument => testPolicyDocument.json)});
    const testExtension = new aws.appconfig.Extension("testExtension", {
        description: "test description",
        actionPoints: [{
            point: "ON_DEPLOYMENT_COMPLETE",
            actions: [{
                name: "test",
                roleArn: testRole.arn,
                uri: testTopic.arn,
            }],
        }],
        tags: {
            Type: "AppConfig Extension",
        },
    });
    
    resources:
      testTopic:
        type: aws:sns:Topic
      testRole:
        type: aws:iam:Role
        properties:
          assumeRolePolicy: ${testPolicyDocument.json}
      testExtension:
        type: aws:appconfig:Extension
        properties:
          description: test description
          actionPoints:
            - point: ON_DEPLOYMENT_COMPLETE
              actions:
                - name: test
                  roleArn: ${testRole.arn}
                  uri: ${testTopic.arn}
          tags:
            Type: AppConfig Extension
    variables:
      testPolicyDocument:
        fn::invoke:
          Function: aws:iam:getPolicyDocument
          Arguments:
            statements:
              - actions:
                  - sts:AssumeRole
                principals:
                  - type: Service
                    identifiers:
                      - appconfig.amazonaws.com
    

    Create Extension Resource

    new Extension(name: string, args: ExtensionArgs, opts?: CustomResourceOptions);
    @overload
    def Extension(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  action_points: Optional[Sequence[ExtensionActionPointArgs]] = None,
                  description: Optional[str] = None,
                  name: Optional[str] = None,
                  parameters: Optional[Sequence[ExtensionParameterArgs]] = None,
                  tags: Optional[Mapping[str, str]] = None)
    @overload
    def Extension(resource_name: str,
                  args: ExtensionArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewExtension(ctx *Context, name string, args ExtensionArgs, opts ...ResourceOption) (*Extension, error)
    public Extension(string name, ExtensionArgs args, CustomResourceOptions? opts = null)
    public Extension(String name, ExtensionArgs args)
    public Extension(String name, ExtensionArgs args, CustomResourceOptions options)
    
    type: aws:appconfig:Extension
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ExtensionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ExtensionArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ExtensionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExtensionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExtensionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Extension Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Extension resource accepts the following input properties:

    ActionPoints List<ExtensionActionPointArgs>

    The action points defined in the extension. Detailed below.

    Description string

    Information about the extension.

    Name string

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    Parameters List<ExtensionParameterArgs>

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    Tags Dictionary<string, string>

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    ActionPoints []ExtensionActionPointArgs

    The action points defined in the extension. Detailed below.

    Description string

    Information about the extension.

    Name string

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    Parameters []ExtensionParameterArgs

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    Tags map[string]string

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    actionPoints List<ExtensionActionPointArgs>

    The action points defined in the extension. Detailed below.

    description String

    Information about the extension.

    name String

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters List<ExtensionParameterArgs>

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags Map<String,String>

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    actionPoints ExtensionActionPointArgs[]

    The action points defined in the extension. Detailed below.

    description string

    Information about the extension.

    name string

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters ExtensionParameterArgs[]

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags {[key: string]: string}

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    action_points Sequence[ExtensionActionPointArgs]

    The action points defined in the extension. Detailed below.

    description str

    Information about the extension.

    name str

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters Sequence[ExtensionParameterArgs]

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags Mapping[str, str]

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    actionPoints List<Property Map>

    The action points defined in the extension. Detailed below.

    description String

    Information about the extension.

    name String

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters List<Property Map>

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags Map<String>

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Extension resource produces the following output properties:

    Arn string

    ARN of the AppConfig Extension.

    Id string

    The provider-assigned unique ID for this managed resource.

    TagsAll Dictionary<string, string>
    Version int

    The version number for the extension.

    Arn string

    ARN of the AppConfig Extension.

    Id string

    The provider-assigned unique ID for this managed resource.

    TagsAll map[string]string
    Version int

    The version number for the extension.

    arn String

    ARN of the AppConfig Extension.

    id String

    The provider-assigned unique ID for this managed resource.

    tagsAll Map<String,String>
    version Integer

    The version number for the extension.

    arn string

    ARN of the AppConfig Extension.

    id string

    The provider-assigned unique ID for this managed resource.

    tagsAll {[key: string]: string}
    version number

    The version number for the extension.

    arn str

    ARN of the AppConfig Extension.

    id str

    The provider-assigned unique ID for this managed resource.

    tags_all Mapping[str, str]
    version int

    The version number for the extension.

    arn String

    ARN of the AppConfig Extension.

    id String

    The provider-assigned unique ID for this managed resource.

    tagsAll Map<String>
    version Number

    The version number for the extension.

    Look up Existing Extension Resource

    Get an existing Extension resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ExtensionState, opts?: CustomResourceOptions): Extension
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action_points: Optional[Sequence[ExtensionActionPointArgs]] = None,
            arn: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[Sequence[ExtensionParameterArgs]] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            version: Optional[int] = None) -> Extension
    func GetExtension(ctx *Context, name string, id IDInput, state *ExtensionState, opts ...ResourceOption) (*Extension, error)
    public static Extension Get(string name, Input<string> id, ExtensionState? state, CustomResourceOptions? opts = null)
    public static Extension get(String name, Output<String> id, ExtensionState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    ActionPoints List<ExtensionActionPointArgs>

    The action points defined in the extension. Detailed below.

    Arn string

    ARN of the AppConfig Extension.

    Description string

    Information about the extension.

    Name string

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    Parameters List<ExtensionParameterArgs>

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    Tags Dictionary<string, string>

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    TagsAll Dictionary<string, string>
    Version int

    The version number for the extension.

    ActionPoints []ExtensionActionPointArgs

    The action points defined in the extension. Detailed below.

    Arn string

    ARN of the AppConfig Extension.

    Description string

    Information about the extension.

    Name string

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    Parameters []ExtensionParameterArgs

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    Tags map[string]string

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    TagsAll map[string]string
    Version int

    The version number for the extension.

    actionPoints List<ExtensionActionPointArgs>

    The action points defined in the extension. Detailed below.

    arn String

    ARN of the AppConfig Extension.

    description String

    Information about the extension.

    name String

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters List<ExtensionParameterArgs>

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags Map<String,String>

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tagsAll Map<String,String>
    version Integer

    The version number for the extension.

    actionPoints ExtensionActionPointArgs[]

    The action points defined in the extension. Detailed below.

    arn string

    ARN of the AppConfig Extension.

    description string

    Information about the extension.

    name string

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters ExtensionParameterArgs[]

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags {[key: string]: string}

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tagsAll {[key: string]: string}
    version number

    The version number for the extension.

    action_points Sequence[ExtensionActionPointArgs]

    The action points defined in the extension. Detailed below.

    arn str

    ARN of the AppConfig Extension.

    description str

    Information about the extension.

    name str

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters Sequence[ExtensionParameterArgs]

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags Mapping[str, str]

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tags_all Mapping[str, str]
    version int

    The version number for the extension.

    actionPoints List<Property Map>

    The action points defined in the extension. Detailed below.

    arn String

    ARN of the AppConfig Extension.

    description String

    Information about the extension.

    name String

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

    parameters List<Property Map>

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object. Detailed below.

    tags Map<String>

    Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    tagsAll Map<String>
    version Number

    The version number for the extension.

    Supporting Types

    ExtensionActionPoint

    Actions List<ExtensionActionPointAction>

    An action defines the tasks the extension performs during the AppConfig workflow. Detailed below.

    Point string

    The point at which to perform the defined actions. Valid points are PRE_CREATE_HOSTED_CONFIGURATION_VERSION, PRE_START_DEPLOYMENT, ON_DEPLOYMENT_START, ON_DEPLOYMENT_STEP, ON_DEPLOYMENT_BAKING, ON_DEPLOYMENT_COMPLETE, ON_DEPLOYMENT_ROLLED_BACK.

    Actions []ExtensionActionPointAction

    An action defines the tasks the extension performs during the AppConfig workflow. Detailed below.

    Point string

    The point at which to perform the defined actions. Valid points are PRE_CREATE_HOSTED_CONFIGURATION_VERSION, PRE_START_DEPLOYMENT, ON_DEPLOYMENT_START, ON_DEPLOYMENT_STEP, ON_DEPLOYMENT_BAKING, ON_DEPLOYMENT_COMPLETE, ON_DEPLOYMENT_ROLLED_BACK.

    actions List<ExtensionActionPointAction>

    An action defines the tasks the extension performs during the AppConfig workflow. Detailed below.

    point String

    The point at which to perform the defined actions. Valid points are PRE_CREATE_HOSTED_CONFIGURATION_VERSION, PRE_START_DEPLOYMENT, ON_DEPLOYMENT_START, ON_DEPLOYMENT_STEP, ON_DEPLOYMENT_BAKING, ON_DEPLOYMENT_COMPLETE, ON_DEPLOYMENT_ROLLED_BACK.

    actions ExtensionActionPointAction[]

    An action defines the tasks the extension performs during the AppConfig workflow. Detailed below.

    point string

    The point at which to perform the defined actions. Valid points are PRE_CREATE_HOSTED_CONFIGURATION_VERSION, PRE_START_DEPLOYMENT, ON_DEPLOYMENT_START, ON_DEPLOYMENT_STEP, ON_DEPLOYMENT_BAKING, ON_DEPLOYMENT_COMPLETE, ON_DEPLOYMENT_ROLLED_BACK.

    actions Sequence[ExtensionActionPointAction]

    An action defines the tasks the extension performs during the AppConfig workflow. Detailed below.

    point str

    The point at which to perform the defined actions. Valid points are PRE_CREATE_HOSTED_CONFIGURATION_VERSION, PRE_START_DEPLOYMENT, ON_DEPLOYMENT_START, ON_DEPLOYMENT_STEP, ON_DEPLOYMENT_BAKING, ON_DEPLOYMENT_COMPLETE, ON_DEPLOYMENT_ROLLED_BACK.

    actions List<Property Map>

    An action defines the tasks the extension performs during the AppConfig workflow. Detailed below.

    point String

    The point at which to perform the defined actions. Valid points are PRE_CREATE_HOSTED_CONFIGURATION_VERSION, PRE_START_DEPLOYMENT, ON_DEPLOYMENT_START, ON_DEPLOYMENT_STEP, ON_DEPLOYMENT_BAKING, ON_DEPLOYMENT_COMPLETE, ON_DEPLOYMENT_ROLLED_BACK.

    ExtensionActionPointAction

    Name string

    The action name.

    RoleArn string

    An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

    Uri string

    The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.

    Description string

    Information about the action.

    Name string

    The action name.

    RoleArn string

    An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

    Uri string

    The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.

    Description string

    Information about the action.

    name String

    The action name.

    roleArn String

    An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

    uri String

    The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.

    description String

    Information about the action.

    name string

    The action name.

    roleArn string

    An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

    uri string

    The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.

    description string

    Information about the action.

    name str

    The action name.

    role_arn str

    An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

    uri str

    The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.

    description str

    Information about the action.

    name String

    The action name.

    roleArn String

    An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

    uri String

    The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.

    description String

    Information about the action.

    ExtensionParameter

    Name string

    The parameter name.

    Description string

    Information about the parameter.

    Required bool

    Determines if a parameter value must be specified in the extension association.

    Name string

    The parameter name.

    Description string

    Information about the parameter.

    Required bool

    Determines if a parameter value must be specified in the extension association.

    name String

    The parameter name.

    description String

    Information about the parameter.

    required Boolean

    Determines if a parameter value must be specified in the extension association.

    name string

    The parameter name.

    description string

    Information about the parameter.

    required boolean

    Determines if a parameter value must be specified in the extension association.

    name str

    The parameter name.

    description str

    Information about the parameter.

    required bool

    Determines if a parameter value must be specified in the extension association.

    name String

    The parameter name.

    description String

    Information about the parameter.

    required Boolean

    Determines if a parameter value must be specified in the extension association.

    Import

    AppConfig Extensions can be imported using their extension ID, e.g.,

     $ pulumi import aws:appconfig/extension:Extension example 71rxuzt
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the aws Terraform Provider.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v5.41.0 published on Monday, May 15, 2023 by Pulumi