Module Values.AWSResourcesSource

The AWS resources associated with an agent space, including VPCs, log groups, S3 buckets, secrets, Lambda functions, and IAM roles.

Sourcetype nonrec t = {
  1. vpcs : VpcConfigs.t option;
    (*

    The VPC configurations associated with the agent space.

    *)
  2. logGroups : LogGroupArns.t option;
    (*

    The Amazon Resource Names (ARNs) of the CloudWatch log groups associated with the agent space.

    *)
  3. s3Buckets : S3BucketArns.t option;
    (*

    The Amazon Resource Names (ARNs) of the S3 buckets associated with the agent space.

    *)
  4. secretArns : SecretArns.t option;
    (*

    The Amazon Resource Names (ARNs) of the Secrets Manager secrets associated with the agent space.

    *)
  5. lambdaFunctionArns : LambdaFunctionArns.t option;
    (*

    The Amazon Resource Names (ARNs) of the Lambda functions associated with the agent space.

    *)
  6. iamRoles : IamRoles.t option;
    (*

    The IAM roles associated with the agent space.

    *)
}
Sourceval make : ?vpcs:??? -> ?logGroups:??? -> ?s3Buckets:??? -> ?secretArns:??? -> ?lambdaFunctionArns:??? -> ?iamRoles:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LogGroupArn.t | `Structure of (string * [> `List of [> `String of SecurityGroupArn.t ] list | `String of VpcArn.t ]) list ] list ]) 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