constellix.ContactLists
Explore with Pulumi AI
Create ContactLists Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ContactLists(name: string, args: ContactListsArgs, opts?: CustomResourceOptions);
@overload
def ContactLists(resource_name: str,
args: ContactListsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ContactLists(resource_name: str,
opts: Optional[ResourceOptions] = None,
email_addresses: Optional[Sequence[str]] = None,
contact_lists_id: Optional[str] = None,
name: Optional[str] = None)
func NewContactLists(ctx *Context, name string, args ContactListsArgs, opts ...ResourceOption) (*ContactLists, error)
public ContactLists(string name, ContactListsArgs args, CustomResourceOptions? opts = null)
public ContactLists(String name, ContactListsArgs args)
public ContactLists(String name, ContactListsArgs args, CustomResourceOptions options)
type: constellix:ContactLists
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 ContactListsArgs
- 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 ContactListsArgs
- 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 ContactListsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ContactListsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ContactListsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var contactListsResource = new Constellix.ContactLists("contactListsResource", new()
{
EmailAddresses = new[]
{
"string",
},
ContactListsId = "string",
Name = "string",
});
example, err := constellix.NewContactLists(ctx, "contactListsResource", &constellix.ContactListsArgs{
EmailAddresses: pulumi.StringArray{
pulumi.String("string"),
},
ContactListsId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var contactListsResource = new ContactLists("contactListsResource", ContactListsArgs.builder()
.emailAddresses("string")
.contactListsId("string")
.name("string")
.build());
contact_lists_resource = constellix.ContactLists("contactListsResource",
email_addresses=["string"],
contact_lists_id="string",
name="string")
const contactListsResource = new constellix.ContactLists("contactListsResource", {
emailAddresses: ["string"],
contactListsId: "string",
name: "string",
});
type: constellix:ContactLists
properties:
contactListsId: string
emailAddresses:
- string
name: string
ContactLists Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ContactLists resource accepts the following input properties:
- Email
Addresses List<string> - Contact
Lists stringId - Name string
- Email
Addresses []string - Contact
Lists stringId - Name string
- email
Addresses List<String> - contact
Lists StringId - name String
- email
Addresses string[] - contact
Lists stringId - name string
- email_
addresses Sequence[str] - contact_
lists_ strid - name str
- email
Addresses List<String> - contact
Lists StringId - name String
Outputs
All input properties are implicitly available as output properties. Additionally, the ContactLists resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ContactLists Resource
Get an existing ContactLists 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?: ContactListsState, opts?: CustomResourceOptions): ContactLists
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
contact_lists_id: Optional[str] = None,
email_addresses: Optional[Sequence[str]] = None,
name: Optional[str] = None) -> ContactLists
func GetContactLists(ctx *Context, name string, id IDInput, state *ContactListsState, opts ...ResourceOption) (*ContactLists, error)
public static ContactLists Get(string name, Input<string> id, ContactListsState? state, CustomResourceOptions? opts = null)
public static ContactLists get(String name, Output<String> id, ContactListsState state, CustomResourceOptions options)
resources: _: type: constellix:ContactLists get: id: ${id}
- 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.
- Contact
Lists stringId - Email
Addresses List<string> - Name string
- Contact
Lists stringId - Email
Addresses []string - Name string
- contact
Lists StringId - email
Addresses List<String> - name String
- contact
Lists stringId - email
Addresses string[] - name string
- contact_
lists_ strid - email_
addresses Sequence[str] - name str
- contact
Lists StringId - email
Addresses List<String> - name String
Package Details
- Repository
- constellix constellix/terraform-provider-constellix
- License
- Notes
- This Pulumi package is based on the
constellix
Terraform Provider.