Skip to content

Create Group Profile

datazone_create_group_profile R Documentation

Creates a group profile in Amazon DataZone

Description

Creates a group profile in Amazon DataZone.

Usage

datazone_create_group_profile(domainIdentifier, groupIdentifier,
  rolePrincipalArn, clientToken)

Arguments

domainIdentifier

[required] The identifier of the Amazon DataZone domain in which the group profile is created.

groupIdentifier

The identifier of the group for which the group profile is created.

rolePrincipalArn

The ARN of the IAM role that will be associated with the group profile. This role defines the permissions that group members will assume when accessing Amazon DataZone resources.

clientToken

A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

Value

A list with the following syntax:

list(
  domainId = "string",
  id = "string",
  status = "ASSIGNED"|"NOT_ASSIGNED",
  groupName = "string",
  rolePrincipalArn = "string",
  rolePrincipalId = "string"
)

Request syntax

svc$create_group_profile(
  domainIdentifier = "string",
  groupIdentifier = "string",
  rolePrincipalArn = "string",
  clientToken = "string"
)