Module Values.EnvironmentAccountConnectionSource

Detailed data of an Proton environment account connection resource.

Sourcetype nonrec t = {
  1. arn : EnvironmentAccountConnectionArn.t option;
    (*

    The Amazon Resource Name (ARN) of the environment account connection.

    *)
  2. codebuildRoleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of an IAM service role in the environment account. Proton uses this role to provision infrastructure resources using CodeBuild-based provisioning in the associated environment account.

    *)
  3. componentRoleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM service role that Proton uses when provisioning directly defined components in the associated environment account. It determines the scope of infrastructure that a component can provision in the account. The environment account connection must have a componentRoleArn to allow directly defined components to be associated with any environments running in the account. For more information about components, see Proton components in the Proton User Guide.

    *)
  4. environmentAccountId : AwsAccountId.t option;
    (*

    The environment account that's connected to the environment account connection.

    *)
  5. environmentName : ResourceName.t option;
    (*

    The name of the environment that's associated with the environment account connection.

    *)
  6. id : EnvironmentAccountConnectionId.t option;
    (*

    The ID of the environment account connection.

    *)
  7. lastModifiedAt : Timestamp.t option;
    (*

    The time when the environment account connection was last modified.

    *)
  8. managementAccountId : AwsAccountId.t option;
    (*

    The ID of the management account that's connected to the environment account connection.

    *)
  9. requestedAt : Timestamp.t option;
    (*

    The time when the environment account connection request was made.

    *)
  10. roleArn : Arn.t option;
    (*

    The IAM service role that's associated with the environment account connection.

    *)
  11. status : EnvironmentAccountConnectionStatus.t option;
    (*

    The status of the environment account connection.

    *)
}
Sourceval make : ?arn:??? -> ?codebuildRoleArn:??? -> ?componentRoleArn:??? -> ?environmentAccountId:??? -> ?environmentName:??? -> ?id:??? -> ?lastModifiedAt:??? -> ?managementAccountId:??? -> ?requestedAt:??? -> ?roleArn:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EnvironmentAccountConnectionArn.t | `Timestamp of Timestamp.t ]) 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