com.pulumi.aws.connect.Instance Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.connect;
import com.pulumi.aws.Utilities;
import com.pulumi.aws.connect.InstanceArgs;
import com.pulumi.aws.connect.inputs.InstanceState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Boolean;
import java.lang.String;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Provides an Amazon Connect instance resource. For more information see
* [Amazon Connect: Getting Started](https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-get-started.html)
*
* !> **WARN:** Amazon Connect enforces a limit of [100 combined instance creation and deletions every 30 days](https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html#feature-limits). For example, if you create 80 instances and delete 20 of them, you must wait 30 days to create or delete another instance. Use care when creating or deleting instances.
*
* ## Example Usage
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.connect.Instance;
* import com.pulumi.aws.connect.InstanceArgs;
* 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 test = new Instance("test", InstanceArgs.builder()
* .identityManagementType("CONNECT_MANAGED")
* .inboundCallsEnabled(true)
* .instanceAlias("friendly-name-connect")
* .outboundCallsEnabled(true)
* .tags(Map.of("hello", "world"))
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ### With Existing Active Directory
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.connect.Instance;
* import com.pulumi.aws.connect.InstanceArgs;
* 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 test = new Instance("test", InstanceArgs.builder()
* .directoryId(testAwsDirectoryServiceDirectory.id())
* .identityManagementType("EXISTING_DIRECTORY")
* .inboundCallsEnabled(true)
* .instanceAlias("friendly-name-connect")
* .outboundCallsEnabled(true)
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ### With SAML
*
* <!--Start PulumiCodeChooser -->
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.connect.Instance;
* import com.pulumi.aws.connect.InstanceArgs;
* 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 test = new Instance("test", InstanceArgs.builder()
* .identityManagementType("SAML")
* .inboundCallsEnabled(true)
* .instanceAlias("friendly-name-connect")
* .outboundCallsEnabled(true)
* .build());
*
* }
* }
* }
*
* <!--End PulumiCodeChooser -->
*
* ## Import
*
* Using `pulumi import`, import Connect instances using the `id`. For example:
*
* ```sh
* $ pulumi import aws:connect/instance:Instance example f1288a1f-6193-445a-b47e-af739b2
* ```
*
*/
@ResourceType(type="aws:connect/instance:Instance")
public class Instance extends com.pulumi.resources.CustomResource {
/**
* Amazon Resource Name (ARN) of the instance.
*
*/
@Export(name="arn", refs={String.class}, tree="[0]")
private Output arn;
/**
* @return Amazon Resource Name (ARN) of the instance.
*
*/
public Output arn() {
return this.arn;
}
/**
* Specifies whether auto resolve best voices is enabled. Defaults to `true`.
*
*/
@Export(name="autoResolveBestVoicesEnabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> autoResolveBestVoicesEnabled;
/**
* @return Specifies whether auto resolve best voices is enabled. Defaults to `true`.
*
*/
public Output> autoResolveBestVoicesEnabled() {
return Codegen.optional(this.autoResolveBestVoicesEnabled);
}
/**
* Specifies whether contact flow logs are enabled. Defaults to `false`.
*
*/
@Export(name="contactFlowLogsEnabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> contactFlowLogsEnabled;
/**
* @return Specifies whether contact flow logs are enabled. Defaults to `false`.
*
*/
public Output> contactFlowLogsEnabled() {
return Codegen.optional(this.contactFlowLogsEnabled);
}
/**
* Specifies whether contact lens is enabled. Defaults to `true`.
*
*/
@Export(name="contactLensEnabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> contactLensEnabled;
/**
* @return Specifies whether contact lens is enabled. Defaults to `true`.
*
*/
public Output> contactLensEnabled() {
return Codegen.optional(this.contactLensEnabled);
}
/**
* When the instance was created.
*
*/
@Export(name="createdTime", refs={String.class}, tree="[0]")
private Output createdTime;
/**
* @return When the instance was created.
*
*/
public Output createdTime() {
return this.createdTime;
}
/**
* The identifier for the directory if identity_management_type is `EXISTING_DIRECTORY`.
*
*/
@Export(name="directoryId", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> directoryId;
/**
* @return The identifier for the directory if identity_management_type is `EXISTING_DIRECTORY`.
*
*/
public Output> directoryId() {
return Codegen.optional(this.directoryId);
}
/**
* Specifies whether early media for outbound calls is enabled . Defaults to `true` if outbound calls is enabled.
*
*/
@Export(name="earlyMediaEnabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> earlyMediaEnabled;
/**
* @return Specifies whether early media for outbound calls is enabled . Defaults to `true` if outbound calls is enabled.
*
*/
public Output> earlyMediaEnabled() {
return Codegen.optional(this.earlyMediaEnabled);
}
/**
* Specifies the identity management type attached to the instance. Allowed Values are: `SAML`, `CONNECT_MANAGED`, `EXISTING_DIRECTORY`.
*
*/
@Export(name="identityManagementType", refs={String.class}, tree="[0]")
private Output identityManagementType;
/**
* @return Specifies the identity management type attached to the instance. Allowed Values are: `SAML`, `CONNECT_MANAGED`, `EXISTING_DIRECTORY`.
*
*/
public Output identityManagementType() {
return this.identityManagementType;
}
/**
* Specifies whether inbound calls are enabled.
*
*/
@Export(name="inboundCallsEnabled", refs={Boolean.class}, tree="[0]")
private Output inboundCallsEnabled;
/**
* @return Specifies whether inbound calls are enabled.
*
*/
public Output inboundCallsEnabled() {
return this.inboundCallsEnabled;
}
/**
* Specifies the name of the instance. Required if `directory_id` not specified.
*
*/
@Export(name="instanceAlias", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> instanceAlias;
/**
* @return Specifies the name of the instance. Required if `directory_id` not specified.
*
*/
public Output> instanceAlias() {
return Codegen.optional(this.instanceAlias);
}
/**
* Specifies whether multi-party calls/conference is enabled. Defaults to `false`.
*
*/
@Export(name="multiPartyConferenceEnabled", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> multiPartyConferenceEnabled;
/**
* @return Specifies whether multi-party calls/conference is enabled. Defaults to `false`.
*
*/
public Output> multiPartyConferenceEnabled() {
return Codegen.optional(this.multiPartyConferenceEnabled);
}
/**
* Specifies whether outbound calls are enabled.
*
*/
@Export(name="outboundCallsEnabled", refs={Boolean.class}, tree="[0]")
private Output outboundCallsEnabled;
/**
* @return Specifies whether outbound calls are enabled.
*
*/
public Output outboundCallsEnabled() {
return this.outboundCallsEnabled;
}
/**
* The service role of the instance.
*
*/
@Export(name="serviceRole", refs={String.class}, tree="[0]")
private Output serviceRole;
/**
* @return The service role of the instance.
*
*/
public Output serviceRole() {
return this.serviceRole;
}
/**
* The state of the instance.
*
*/
@Export(name="status", refs={String.class}, tree="[0]")
private Output status;
/**
* @return The state of the instance.
*
*/
public Output status() {
return this.status;
}
/**
* Tags to apply to the Instance. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
* <!-- * `use_custom_tts_voices` - (Optional) Whether use custom tts voices is enabled. Defaults to `false` -->
*
*/
@Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]")
private Output* @Nullable */ Map> tags;
/**
* @return Tags to apply to the Instance. If configured with a provider `default_tags` configuration block present, tags with matching keys will overwrite those defined at the provider-level.
* <!-- * `use_custom_tts_voices` - (Optional) Whether use custom tts voices is enabled. Defaults to `false` -->
*
*/
public Output>> tags() {
return Codegen.optional(this.tags);
}
/**
* A map of tags assigned to the resource, including those inherited from the provider `default_tags` configuration block.
*
* @deprecated
* Please use `tags` instead.
*
*/
@Deprecated /* Please use `tags` instead. */
@Export(name="tagsAll", refs={Map.class,String.class}, tree="[0,1,1]")
private Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy