Module Values.AssociateRoleToGroupRequestSource

Associates a role with a group. Your Greengrass core will use the role to access AWS cloud services. The role's permissions should allow Greengrass core Lambda functions to perform actions against the cloud.

Sourcetype nonrec t = {
  1. groupId : string;
    (*

    The ID of the Greengrass group.

    *)
  2. roleArn : string;
    (*

    The ARN of the role you wish to associate with this group. The existence of the role is not validated.

    *)
}
Sourceval context_ : string
Sourceval make : groupId:string -> roleArn:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t