CreateGroupResponse

Contains the response to a successful CreateGroup request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
Group object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-creategroupresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateGroupResponse",
  "title": "CreateGroupResponse",
  "type": "object",
  "required": [
    "Group"
  ],
  "example": {
    "Group": {
      "Arn": "arn:aws:iam::123456789012:group/Admins",
      "CreateDate": "2015-03-09 20:30:24.940000+00:00",
      "GroupId": "AIDGPMS9RO4H3FEXAMPLE",
      "GroupName": "Admins",
      "Path": "/"
    }
  },
  "properties": {
    "Group": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Group"
        },
        {
          "description": "A structure containing details about the new group."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>CreateGroup</a> request. "
}