1. Packages
  2. AWS Classic
  3. API Docs
  4. ssmcontacts
  5. Contact

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

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

aws.ssmcontacts.Contact

Explore with Pulumi AI

aws logo

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

AWS Classic v6.32.0 published on Friday, Apr 19, 2024 by Pulumi

    Resource for managing an AWS SSM Contact.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.ssmcontacts.Contact("example", {
        alias: "alias",
        type: "PERSONAL",
    }, {
        dependsOn: [exampleAwsSsmincidentsReplicationSet],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.ssmcontacts.Contact("example",
        alias="alias",
        type="PERSONAL",
        opts=pulumi.ResourceOptions(depends_on=[example_aws_ssmincidents_replication_set]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssmcontacts"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ssmcontacts.NewContact(ctx, "example", &ssmcontacts.ContactArgs{
    			Alias: pulumi.String("alias"),
    			Type:  pulumi.String("PERSONAL"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			exampleAwsSsmincidentsReplicationSet,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SsmContacts.Contact("example", new()
        {
            Alias = "alias",
            Type = "PERSONAL",
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                exampleAwsSsmincidentsReplicationSet, 
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ssmcontacts.Contact;
    import com.pulumi.aws.ssmcontacts.ContactArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 example = new Contact("example", ContactArgs.builder()        
                .alias("alias")
                .type("PERSONAL")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(exampleAwsSsmincidentsReplicationSet)
                    .build());
    
        }
    }
    
    resources:
      example:
        type: aws:ssmcontacts:Contact
        properties:
          alias: alias
          type: PERSONAL
        options:
          dependson:
            - ${exampleAwsSsmincidentsReplicationSet}
    

    Usage With All Fields

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.ssmcontacts.Contact("example", {
        alias: "alias",
        displayName: "displayName",
        type: "ESCALATION",
        tags: {
            key: "value",
        },
    }, {
        dependsOn: [exampleAwsSsmincidentsReplicationSet],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.ssmcontacts.Contact("example",
        alias="alias",
        display_name="displayName",
        type="ESCALATION",
        tags={
            "key": "value",
        },
        opts=pulumi.ResourceOptions(depends_on=[example_aws_ssmincidents_replication_set]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ssmcontacts"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ssmcontacts.NewContact(ctx, "example", &ssmcontacts.ContactArgs{
    			Alias:       pulumi.String("alias"),
    			DisplayName: pulumi.String("displayName"),
    			Type:        pulumi.String("ESCALATION"),
    			Tags: pulumi.StringMap{
    				"key": pulumi.String("value"),
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			exampleAwsSsmincidentsReplicationSet,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SsmContacts.Contact("example", new()
        {
            Alias = "alias",
            DisplayName = "displayName",
            Type = "ESCALATION",
            Tags = 
            {
                { "key", "value" },
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                exampleAwsSsmincidentsReplicationSet, 
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.ssmcontacts.Contact;
    import com.pulumi.aws.ssmcontacts.ContactArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 example = new Contact("example", ContactArgs.builder()        
                .alias("alias")
                .displayName("displayName")
                .type("ESCALATION")
                .tags(Map.of("key", "value"))
                .build(), CustomResourceOptions.builder()
                    .dependsOn(exampleAwsSsmincidentsReplicationSet)
                    .build());
    
        }
    }
    
    resources:
      example:
        type: aws:ssmcontacts:Contact
        properties:
          alias: alias
          displayName: displayName
          type: ESCALATION
          tags:
            key: value
        options:
          dependson:
            - ${exampleAwsSsmincidentsReplicationSet}
    

    Create Contact Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Contact(name: string, args: ContactArgs, opts?: CustomResourceOptions);
    @overload
    def Contact(resource_name: str,
                args: ContactArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Contact(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                alias: Optional[str] = None,
                type: Optional[str] = None,
                display_name: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None)
    func NewContact(ctx *Context, name string, args ContactArgs, opts ...ResourceOption) (*Contact, error)
    public Contact(string name, ContactArgs args, CustomResourceOptions? opts = null)
    public Contact(String name, ContactArgs args)
    public Contact(String name, ContactArgs args, CustomResourceOptions options)
    
    type: aws:ssmcontacts:Contact
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ContactArgs
    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 ContactArgs
    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 ContactArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ContactArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ContactArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var contactResource = new Aws.SsmContacts.Contact("contactResource", new()
    {
        Alias = "string",
        Type = "string",
        DisplayName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := ssmcontacts.NewContact(ctx, "contactResource", &ssmcontacts.ContactArgs{
    	Alias:       pulumi.String("string"),
    	Type:        pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var contactResource = new Contact("contactResource", ContactArgs.builder()        
        .alias("string")
        .type("string")
        .displayName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    contact_resource = aws.ssmcontacts.Contact("contactResource",
        alias="string",
        type="string",
        display_name="string",
        tags={
            "string": "string",
        })
    
    const contactResource = new aws.ssmcontacts.Contact("contactResource", {
        alias: "string",
        type: "string",
        displayName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: aws:ssmcontacts:Contact
    properties:
        alias: string
        displayName: string
        tags:
            string: string
        type: string
    

    Contact 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 Contact resource accepts the following input properties:

    Alias string
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    Type string

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    DisplayName string
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource.
    Alias string
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    Type string

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    DisplayName string
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    Tags map[string]string
    Map of tags to assign to the resource.
    alias String
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    type String

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    displayName String
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags Map<String,String>
    Map of tags to assign to the resource.
    alias string
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    type string

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    displayName string
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags {[key: string]: string}
    Map of tags to assign to the resource.
    alias str
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    type str

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    display_name str
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags Mapping[str, str]
    Map of tags to assign to the resource.
    alias String
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    type String

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    displayName String
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags Map<String>
    Map of tags to assign to the resource.

    Outputs

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

    Arn string
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing Contact Resource

    Get an existing Contact 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?: ContactState, opts?: CustomResourceOptions): Contact
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alias: Optional[str] = None,
            arn: Optional[str] = None,
            display_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            type: Optional[str] = None) -> Contact
    func GetContact(ctx *Context, name string, id IDInput, state *ContactState, opts ...ResourceOption) (*Contact, error)
    public static Contact Get(string name, Input<string> id, ContactState? state, CustomResourceOptions? opts = null)
    public static Contact get(String name, Output<String> id, ContactState 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:
    Alias string
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    Arn string
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    DisplayName string
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    Tags Dictionary<string, string>
    Map of tags to assign to the resource.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Type string

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    Alias string
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    Arn string
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    DisplayName string
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    Tags map[string]string
    Map of tags to assign to the resource.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Type string

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    alias String
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    arn String
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    displayName String
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags Map<String,String>
    Map of tags to assign to the resource.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type String

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    alias string
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    arn string
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    displayName string
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags {[key: string]: string}
    Map of tags to assign to the resource.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type string

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    alias str
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    arn str
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    display_name str
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags Mapping[str, str]
    Map of tags to assign to the resource.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type str

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    alias String
    A unique and identifiable alias for the contact or escalation plan. Must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), and hyphens (-).
    arn String
    The Amazon Resource Name (ARN) of the contact or escalation plan.
    displayName String
    Full friendly name of the contact or escalation plan. If set, must be between 1 and 255 characters, and may contain alphanumerics, underscores (_), hyphens (-), periods (.), and spaces.
    tags Map<String>
    Map of tags to assign to the resource.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type String

    The type of contact engaged. A single contact is type PERSONAL and an escalation plan is type ESCALATION.

    The following arguments are optional:

    Import

    Using pulumi import, import SSM Contact using the ARN. For example:

    $ pulumi import aws:ssmcontacts/contact:Contact example {ARNValue}
    

    To learn more about importing existing cloud resources, see Importing resources.

    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 v6.32.0 published on Friday, Apr 19, 2024 by Pulumi