Security Profile
Provides an Amazon Connect Security Profile resource. For more information see Amazon Connect: Getting Started
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.SecurityProfile;
import com.pulumi.aws.connect.SecurityProfileArgs;
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 SecurityProfile("example", SecurityProfileArgs.builder()
.description("example description")
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.permissions(
"BasicAgentAccess",
"OutboundCallAccess")
.tags(Map.of("Name", "Example Security Profile"))
.build());
}
}
Content copied to clipboard
Import
Amazon Connect Security Profiles can be imported using the instance_id
and security_profile_id
separated by a colon (:
), e.g.,
$ pulumi import aws:connect/securityProfile:SecurityProfile example f1288a1f-6193-445a-b47e-af739b2:c1d4e5f6-1b3c-1b3c-1b3c-c1d4e5f6c1d4e5
Content copied to clipboard
Properties
Link copied to clipboard
Specifies the description of the Security Profile.
Link copied to clipboard
Specifies the identifier of the hosting Amazon Connect Instance.
Link copied to clipboard
The organization resource identifier for the security profile.
Link copied to clipboard
Specifies a list of permissions assigned to the security profile.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
The identifier for the Security Profile.